diff options
author | Christopher Ng <chrng8@gmail.com> | 2022-09-29 01:38:23 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2022-10-05 06:19:08 +0000 |
commit | 7044191eb69bb1e2aa4c3edaf03ce73c77971793 (patch) | |
tree | 6d9d6bb8ed5e17ba8ded049fd521024d4d900b01 /apps/theming/src | |
parent | e962d3fba4430f3a13cda70db9009784fc24112a (diff) | |
download | nextcloud-server-7044191eb69bb1e2aa4c3edaf03ce73c77971793.tar.gz nextcloud-server-7044191eb69bb1e2aa4c3edaf03ce73c77971793.zip |
Use brand color for background only and keep accessible color as color primary
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/theming/src')
-rw-r--r-- | apps/theming/src/components/BackgroundSettings.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/theming/src/components/BackgroundSettings.vue b/apps/theming/src/components/BackgroundSettings.vue index 359723bcf49..39210569689 100644 --- a/apps/theming/src/components/BackgroundSettings.vue +++ b/apps/theming/src/components/BackgroundSettings.vue @@ -171,7 +171,7 @@ export default { } &.color { - background-color: var(--color-primary); + background-color: var(--color-main-background-not-plain, var(--color-primary)); color: var(--color-primary-text); } |