diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-05-04 12:51:02 +0200 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-05-04 14:41:19 +0200 |
commit | 4c71d8f8a418c1b2a2a1679b1f0fb2b8e221f651 (patch) | |
tree | c8b4eb5f8ccbe456ad1aad6e5afa85e2be1f919b /apps/theming/lib | |
parent | b603a3eac7962dde4e34abc54980cdff02f02b53 (diff) | |
download | nextcloud-server-4c71d8f8a418c1b2a2a1679b1f0fb2b8e221f651.tar.gz nextcloud-server-4c71d8f8a418c1b2a2a1679b1f0fb2b8e221f651.zip |
fix(theming): replace elementColor dark value with better contrast `#8c8c8c`
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r-- | apps/theming/lib/Util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Util.php b/apps/theming/lib/Util.php index e856802cb05..f5321dada67 100644 --- a/apps/theming/lib/Util.php +++ b/apps/theming/lib/Util.php @@ -91,7 +91,7 @@ class Util { if (!$brightBackground && $luminance < 0.2) { // If the color is too dark in dark mode, we fall back to a brighter gray - return '#555555'; + return '#8c8c8c'; } return $color; |