mirror of https://gitlab.com/tildes/tildes.git
Deimos
6 years ago
5 changed files with 79 additions and 73 deletions
-
8tildes/scss/styles.scss
-
15tildes/scss/themes/_black.scss
-
15tildes/scss/themes/_dark.scss
-
14tildes/scss/themes/_light.scss
-
100tildes/scss/themes/_theme_base.scss
@ -0,0 +1,15 @@ |
|||
$theme-black: ( |
|||
'foreground-primary': #ccc, |
|||
'foreground-secondary': #888, |
|||
'foreground-highlight': #ddd, |
|||
'foreground-middle': #aaa, |
|||
'foreground-extreme': #fff, |
|||
'background-primary': #000, |
|||
'background-secondary': #222, |
|||
'background-input': #000, |
|||
'border-primary': #444, |
|||
); |
|||
|
|||
body.theme-black { |
|||
@include use-theme($theme-black); |
|||
} |
@ -0,0 +1,15 @@ |
|||
$theme-dark: ( |
|||
'foreground-primary': $fg-light, |
|||
'foreground-secondary': $fg-darkest, |
|||
'foreground-highlight': $fg-lightest, |
|||
'foreground-middle': #6e8186, |
|||
'foreground-extreme': #fff, |
|||
'background-primary': $bg-darkest, |
|||
'background-secondary': $bg-dark, |
|||
'background-input': #001f27, |
|||
'border-primary': #33555e, |
|||
); |
|||
|
|||
body.theme-dark { |
|||
@include use-theme($theme-dark); |
|||
} |
@ -0,0 +1,14 @@ |
|||
$theme-light: ( |
|||
'foreground-primary': $fg-dark, |
|||
'foreground-secondary': $fg-lightest, |
|||
'foreground-highlight': $fg-darkest, |
|||
'foreground-middle': #7c8e92, |
|||
'background-primary': $bg-lightest, |
|||
'background-secondary': $bg-light, |
|||
'background-input': #fefbf1, |
|||
'border-primary': #cbc5b6, |
|||
); |
|||
|
|||
body.theme-light { |
|||
@include use-theme($theme-light); |
|||
} |
Write
Preview
Loading…
Cancel
Save
Reference in new issue