diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2024-01-17 15:26:56 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2024-01-17 18:30:23 +0100 |
commit | 74c63997a3aa87d59b976bd63eda8f9fc222bcb2 (patch) | |
tree | 32401b392e879fe963e355d9b41a43d72c44d319 /apps/theming/css | |
parent | 81d49265c68aad15541d2bbd149e2d15edc96eb6 (diff) | |
download | nextcloud-server-74c63997a3aa87d59b976bd63eda8f9fc222bcb2.tar.gz nextcloud-server-74c63997a3aa87d59b976bd63eda8f9fc222bcb2.zip |
fix(theming): Make sure `color-border-maxcontrast` fulfills 3:1 contrast
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'apps/theming/css')
-rw-r--r-- | apps/theming/css/default.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/css/default.css b/apps/theming/css/default.css index 157e28982c0..7434710555b 100644 --- a/apps/theming/css/default.css +++ b/apps/theming/css/default.css @@ -43,7 +43,7 @@ --color-box-shadow: rgba(var(--color-box-shadow-rgb), 0.5); --color-border: #ededed; --color-border-dark: #dbdbdb; - --color-border-maxcontrast: #949494; + --color-border-maxcontrast: #7d7d7d; --font-face: system-ui, -apple-system, 'Segoe UI', Roboto, Oxygen-Sans, Cantarell, Ubuntu, 'Helvetica Neue', 'Noto Sans', 'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; --default-font-size: 15px; --animation-quick: 100ms; |