summaryrefslogtreecommitdiff
path: root/assets/css/main.scss
diff options
context:
space:
mode:
authorjeffreytse <jeffreytse.mail@gmail.com>2020-07-12 16:23:23 +0800
committerjeffreytse <jeffreytse.mail@gmail.com>2020-07-12 16:23:23 +0800
commit413f0997d9ad36a8be97387456f47c740e071e95 (patch)
tree171de04174dfb8a1dec0ae6c7620f65f703b103b /assets/css/main.scss
parent8ca77da4d4488d841077c61f6c0be87344eeaddc (diff)
feat: change theme styles
Diffstat (limited to 'assets/css/main.scss')
-rw-r--r--assets/css/main.scss12
1 files changed, 4 insertions, 8 deletions
diff --git a/assets/css/main.scss b/assets/css/main.scss
index 112a9ef..afe4e59 100644
--- a/assets/css/main.scss
+++ b/assets/css/main.scss
@@ -4,22 +4,18 @@
// Default theme colors
$theme-colors: (
+ coolblack: #090a0b,
spacegrey: #353535,
- inkpurple: #543581,
- aquablue: #00aaa0,
- azureblue: #2863b1,
- gracered: #a12a50,
- aloegreen: #3d9e56,
- rustbrown: #795548,
+ snowwhite: #ffffff,
);
$theme-name: "{{ site.theme_color }}";
-$theme-color: map-get($theme-colors, "spacegrey");
+$theme-color: map-get($theme-colors, "snowwhite");
@if map-has-key($theme-colors, $theme-name) {
$theme-color: map-get($theme-colors, $theme-name);
} @else if str-index($theme-name, "#") == 1 {
- $theme-color: {{ site.theme_color | default: '#353535' }};
+ $theme-color: {{ site.theme_color | default: '#ffffff' }};
}
@import "yat";