diff options
Diffstat (limited to 'sass')
-rw-r--r-- | sass/_everforest.scss | 22 | ||||
-rw-r--r-- | sass/style.scss | 10 |
2 files changed, 32 insertions, 0 deletions
diff --git a/sass/_everforest.scss b/sass/_everforest.scss new file mode 100644 index 0000000..fffc389 --- /dev/null +++ b/sass/_everforest.scss @@ -0,0 +1,22 @@ +$fg: #D3C6AA; +$bg0: #2D353B; +$bg1: #343F44; +$bg2: #3D484D; +$bg3: #475258; +$bg4: #4F585E; +$bg5: #56635F; + +$bg_dim: #232A2E; +$bg_red: #543A48; +$bg_visual: #514045; +$bg_yellow: #4D4C43; +$bg_green: #425047; +$bg_blue: #3A515D; + +$red: #E76E80; +$orange: #E69875; +$yellow: #DBBC7F; +$green: #A7C080; +$blue: #7FBBB3; +$aqua: #83C092; +$purple: #D699B6; diff --git a/sass/style.scss b/sass/style.scss new file mode 100644 index 0000000..65b7bae --- /dev/null +++ b/sass/style.scss @@ -0,0 +1,10 @@ +@use "everforest"; + +body { + color: everforest.$fg; + background-color: everforest.$bg0; +} + +a { + color: everforest.$blue; +} |