diff --git a/core/css/css-variables.scss b/core/css/css-variables.scss index 058e018b41..825345aae2 100644 --- a/core/css/css-variables.scss +++ b/core/css/css-variables.scss @@ -5,6 +5,7 @@ :root { --color-main-text: $color-main-text; --color-main-background: $color-main-background; + --color-main-background-translucent: $color-main-background-translucent; --color-background-dark: $color-background-dark; --color-background-darker: $color-background-darker; diff --git a/core/css/styles.scss b/core/css/styles.scss index dc217fb8f2..612fd779fc 100644 --- a/core/css/styles.scss +++ b/core/css/styles.scss @@ -167,7 +167,7 @@ body { height: 44px; padding: 0; margin: 0; - background-color: var(--color-main-background); + background-color: var(--color-main-background-translucent); z-index: 60; -webkit-user-select: none; -moz-user-select: none; diff --git a/core/css/variables.scss b/core/css/variables.scss index 8617c6e27d..55eac440db 100644 --- a/core/css/variables.scss +++ b/core/css/variables.scss @@ -33,6 +33,7 @@ // DEPRECATED, please use CSS4 vars $color-main-text: #000 !default; $color-main-background: #fff !default; +$color-main-background-translucent: hsla(0, 100%, 100%, .97) !default; // used for different active/disabled states $color-background-dark: nc-darken($color-main-background, 7%) !default;