diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-05-19 19:14:19 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-06-06 11:29:43 +0200 |
commit | f57cf4706e04ff7bacc2fa0964a57d466641d415 (patch) | |
tree | 5be7ba53dfd5eb9f8dabeaa118420e11369c00c2 /core/src/icons.js | |
parent | d80277c340eb737537a582112130f96e9361d7dd (diff) | |
download | nextcloud-server-f57cf4706e04ff7bacc2fa0964a57d466641d415.tar.gz nextcloud-server-f57cf4706e04ff7bacc2fa0964a57d466641d415.zip |
fix: Adjust color of `icon-starred-yellow` to fulfill A11Y contrast requirements
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'core/src/icons.js')
-rw-r--r-- | core/src/icons.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/src/icons.js b/core/src/icons.js index d1b38f41a7d..0a62597f64f 100644 --- a/core/src/icons.js +++ b/core/src/icons.js @@ -7,7 +7,8 @@ import sass from 'sass' const colors = { dark: '000', white: 'fff', - yellow: 'FC0', + // gold but for backwards compatibility called yellow + yellow: 'a08b00', red: 'e9322d', orange: 'eca700', green: '46ba61', |