diff options
author | A Farzat <a@farzat.xyz> | 2024-11-21 17:15:56 +0900 |
---|---|---|
committer | A Farzat <a@farzat.xyz> | 2024-11-21 17:15:56 +0900 |
commit | 17478f87e5aa333f40ab70447bb11554a0c64ad6 (patch) | |
tree | dc62a758e38601d792df45c70ec5e7b46f5bcb9e /sass/_variables.scss | |
parent | 3688821b4640fbd75ca130bea2f8e80eeeba8259 (diff) | |
download | farzat.xyz-17478f87e5aa333f40ab70447bb11554a0c64ad6.tar.gz farzat.xyz-17478f87e5aa333f40ab70447bb11554a0c64ad6.zip |
Made an initial attempt
Diffstat (limited to 'sass/_variables.scss')
-rw-r--r-- | sass/_variables.scss | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sass/_variables.scss b/sass/_variables.scss new file mode 100644 index 0000000..7812349 --- /dev/null +++ b/sass/_variables.scss @@ -0,0 +1,27 @@ +@use "sass:math"; +$px: math.div(1rem, 16); +// Colours +$color-primary-light: hsl(120 50% 90%); +$color-secondary-light: darken($color-primary-light, 80%); +$color-tertiary-light: hsl(hue($color-primary-light)+60 80% 20%); +$color-accent-light: hsl(hue($color-primary-light)-60 80% 20%); +$color-primary-dark: darken($color-primary-light, 80%); +$color-secondary-dark: lighten($color-secondary-light, 80%); +$color-tertiary-dark: lighten($color-tertiary-light, 60%); +$color-accent-dark: lighten($color-accent-light, 60%); +$themes: ( + light: ( + text: #000000, + background: #e9eaed, + primary: #2fb65a, + secondary: #c5c9d3, + accent: #bbb11b, + ), + dark: ( + text: #FFFFFF, + background: #131417, + primary: #47CF73, + secondary: #2C303A, + accent: #E4D944, + ), +); |