+ AppName fixes and compile bump + Bump dark theme and added highcontrast + various fixes Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>pull/9862/head
parent
7781779770
commit
c972e3dc31
@ -1,14 +1,23 @@ |
||||
// Revert lighten/darken |
||||
@function nc-darken($color, $value) { |
||||
@return lighten($color, $value); |
||||
} |
||||
|
||||
@function nc-lighten($color, $value) { |
||||
@return darken($color, $value); |
||||
} |
||||
|
||||
// SCSS variables |
||||
$color-main-text: #d8d8d8; |
||||
$color-main-background: #181818; |
||||
|
||||
$color-background-dark: lighten($color-main-background, 4%); |
||||
$color-background-darker: lighten($color-main-background, 8%); |
||||
|
||||
$color-text-maxcontrast: darken($color-main-text, 30%); |
||||
$color-text-light: darken($color-main-text, 10%); |
||||
$color-text-lighter: darken($color-main-text, 20%); |
||||
|
||||
$color-loading-light: #777; |
||||
$color-loading-dark: #ccc; |
||||
|
||||
$color-box-shadow: rgba(darken($color-main-background, 70%), .5); |
||||
|
||||
$color-border: lighten($color-main-background, 7%); |
||||
$color-border-dark: lighten($color-main-background, 14%); |
||||
|
||||
#app-navigation > ul > li > a:first-child img, |
||||
#app-navigation > ul > li > ul > li > a:first-child img { |
||||
filter: invert(100%); |
||||
} |
||||
@ -0,0 +1,22 @@ |
||||
// SCSS variables |
||||
$color-main-text: #000; |
||||
$color-main-background: #fff; |
||||
|
||||
$color-background-dark: darken($color-main-background, 30%); |
||||
$color-background-darker: darken($color-main-background, 30%); |
||||
|
||||
$color-text-maxcontrast: $color-main-text; |
||||
$color-text-light: $color-main-text; |
||||
$color-text-lighter: $color-main-text; |
||||
|
||||
$color-loading-light: #ddd; |
||||
$color-loading-dark: #000; |
||||
|
||||
$color-box-shadow: $color-main-text; |
||||
|
||||
$color-border: darken($color-main-background, 50%); |
||||
$color-border-dark: darken($color-main-background, 50%); |
||||
|
||||
* { |
||||
opacity: 1 !important; |
||||
} |
||||
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 65 KiB |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue