In atum the color for a warning is yellow and the color for danger is red which is pretty standard. However when we get to the alerts the danger is still red but the warning is an ugly brown mud color. I'm assuming that wherever the calculation is done to set the color there is a mistake but this is beyond my css.
Labels |
Added:
?
|
Changing the values as you suggest didnt change the text color as you show and i still get a text color of mud
Having said that I doubt the yellow on yellow has enough contrast and the mud color seems to work ok and have sufficient contrast.
Please try to create a PR and check the colors with the contrast checker https://webaim.org/resources/contrastchecker/
If you can work it out so that the text is mud and the rest is yellow that would be great
Status | New | ⇒ | Closed |
Closed_Date | 0000-00-00 00:00:00 | ⇒ | 2021-05-27 16:47:56 |
Closed_By | ⇒ | brianteeman |
joomla-cms/administrator/templates/atum/scss/_variables.scss
Lines 194 to 196 in 565bb92
darken($warning, 24%);
is responsible for this Muddish yellow color.If we set
$state-warning-text: $warning;
and$state-warning-border: $warning;
,$warning:
is yellow then it would look like this. If this is desired, I'll send the PR right away.