diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2020-05-07 11:46:25 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2020-05-26 21:42:11 +0200 |
commit | 9aff5355e63e800bcb59f97bd45bd552fe2eba55 (patch) | |
tree | d78fe39a477251d5f2e5d5af3933904c0d8f5007 /core/css/variables.scss | |
parent | 9bb07d3fbd5824034ff66b76dee5c47b15b3ff57 (diff) | |
download | nextcloud-server-9aff5355e63e800bcb59f97bd45bd552fe2eba55.tar.gz nextcloud-server-9aff5355e63e800bcb59f97bd45bd552fe2eba55.zip |
Simplify text variables from 4 to 2, map -lighter to -maxcontrast
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/css/variables.scss')
-rw-r--r-- | core/css/variables.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/css/variables.scss b/core/css/variables.scss index 43d8535ba03..fc3c9d2d51e 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -61,8 +61,8 @@ $color-yellow: #FC0; // min. color contrast for normal text on white background according to WCAG AA // (Works as well: color: #000; opacity: 0.57;) $color-text-maxcontrast: nc-lighten($color-main-text, 33%) !default; -$color-text-light: nc-lighten($color-main-text, 15%) !default; -$color-text-lighter: nc-lighten($color-main-text, 30%) !default; +$color-text-light: $color-main-text !default; +$color-text-lighter: $color-text-maxcontrast !default; $image-logo: url('../img/logo/logo.svg?v=1') !default; $image-login-background: url('../img/background.png?v=2') !default; |