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 | |
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')
-rw-r--r-- | apps/theming/css/default.css | 20 | ||||
-rw-r--r-- | apps/theming/lib/Service/BackgroundService.php | 2 |
2 files changed, 11 insertions, 11 deletions
diff --git a/apps/theming/css/default.css b/apps/theming/css/default.css index 158c10419af..3b732f1af3e 100644 --- a/apps/theming/css/default.css +++ b/apps/theming/css/default.css @@ -56,21 +56,21 @@ --background-invert-if-bright: invert(100%); --background-image-invert-if-bright: no; --primary-invert-if-bright: no; - --color-primary: #00639a; + --color-primary: #006aa3; --color-primary-default: #0082c9; --color-primary-text: #ffffff; - --color-primary-hover: #3282ae; - --color-primary-light: #e5eff4; - --color-primary-light-text: #00273d; - --color-primary-light-hover: #dbe4e9; + --color-primary-hover: #3287b5; + --color-primary-light: #e5f0f5; + --color-primary-light-text: #002a41; + --color-primary-light-hover: #dbe5ea; --color-primary-text-dark: #ededed; - --color-primary-element: #00639a; + --color-primary-element: #006aa3; --color-primary-element-default-hover: #329bd3; --color-primary-element-text: #ffffff; - --color-primary-element-hover: #3282ae; - --color-primary-element-light: #e5eff4; - --color-primary-element-light-text: #00273d; - --color-primary-element-light-hover: #dbe4e9; + --color-primary-element-hover: #3287b5; + --color-primary-element-light: #e5f0f5; + --color-primary-element-light-text: #002a41; + --color-primary-element-light-hover: #dbe5ea; --color-primary-element-text-dark: #ededed; --gradient-primary-background: linear-gradient(40deg, var(--color-primary) 0%, var(--color-primary-hover) 100%); --image-background-default: url('/apps/theming/img/background/kamil-porembinski-clouds.jpg'); 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'; |