diff options
Diffstat (limited to 'data/themes/archlinux.scss')
-rw-r--r-- | data/themes/archlinux.scss | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/themes/archlinux.scss b/data/themes/archlinux.scss index f0504ed..f95b8bb 100644 --- a/data/themes/archlinux.scss +++ b/data/themes/archlinux.scss @@ -1,3 +1,5 @@ +$generate_default: true !default; + @mixin theme { --background: #383c4a; --text_color: #fefefe; @@ -43,4 +45,10 @@ --size_text_color: #fefefe; --error_color: #e44b4b; --footer_color: #8eabcc; +}; + +@if $generate_default { + body { + @include theme; + } } |