﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
33667	Django admin stylesheet ignores --header-branding-color variable.	Mike DeSimone	Hrushikesh Vaidya	"In `contrib/admin/static/admin/css/base.css`, a header branding color variable is defined at line 20:

{{{
  --header-branding-color: var(--accent);
}}}

but it is not used anywhere else. I expected it to be used in the branding h1 tags starting at line 920:

{{{
#branding h1 {
    padding: 0;
    margin: 0 20px 0 0;
    font-weight: 300;
    font-size: 24px;
    color: var(--accent);
}

#branding h1, #branding h1 a:link, #branding h1 a:visited {
    color: var(--accent);
}
}}}

but as can be seen, `var(--accent)` is used instead. Also the second block redundantly calls out `#branding h1`. Any idea what it should have been? `#branding h1 a`?

`--header-branding-color` appears nowhere else in Django. This bug is found in 3.2, 4.0, and the main branch.
"	Cleanup/optimization	closed	contrib.admin	3.2	Normal	fixed	css,stylesheet,admin		Accepted	1	0	0	0	1	0
