diff options
author | Christopher Ng <chrng8@gmail.com> | 2022-12-06 01:13:30 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2022-12-06 01:13:55 +0000 |
commit | 1c753c2b154297c01ff28bed93f8fa2c0b38dd8f (patch) | |
tree | 9059113aeefc6ec59356e3e8fe37391e6c79e829 /apps/theming/lib/Service | |
parent | 24ffe328452e0e247017894ea9d49944470fd2bc (diff) | |
download | nextcloud-server-1c753c2b154297c01ff28bed93f8fa2c0b38dd8f.tar.gz nextcloud-server-1c753c2b154297c01ff28bed93f8fa2c0b38dd8f.zip |
Lighten default color slightly for increased contrast
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/theming/lib/Service')
-rw-r--r-- | apps/theming/lib/Service/BackgroundService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/lib/Service/BackgroundService.php b/apps/theming/lib/Service/BackgroundService.php index a12d72109da..4879ad1cbad 100644 --- a/apps/theming/lib/Service/BackgroundService.php +++ b/apps/theming/lib/Service/BackgroundService.php @@ -46,7 +46,7 @@ class BackgroundService { // true when the background is bright and need dark icons public const THEMING_MODE_DARK = 'dark'; public const DEFAULT_COLOR = '#0082c9'; - public const DEFAULT_ACCESSIBLE_COLOR = '#00639a'; + public const DEFAULT_ACCESSIBLE_COLOR = '#006aa3'; public const BACKGROUND_SHIPPED = 'shipped'; public const BACKGROUND_CUSTOM = 'custom'; |