diff options
Diffstat (limited to 'data/themes/monokai.scss')
-rw-r--r-- | data/themes/monokai.scss | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/data/themes/monokai.scss b/data/themes/monokai.scss index b477f2d..4a47794 100644 --- a/data/themes/monokai.scss +++ b/data/themes/monokai.scss @@ -1,3 +1,5 @@ +$generate_default: true !default; + @mixin theme { --background: #272822; --text_color: #f8f8f2; @@ -43,4 +45,10 @@ --size_text_color: #f8f8f2; --error_color: #d02929; --footer_color: #56c9df; +}; + +@if $generate_default { + body { + @include theme; + } } |