diff options
author | Your Name <you@example.com> | 2017-12-23 20:10:15 +0100 |
---|---|---|
committer | Your Name <you@example.com> | 2017-12-23 20:10:33 +0100 |
commit | 95c3bad65fb93e5de5d36889e186b55e3f7c6446 (patch) | |
tree | 9a293fea117b902292989d7a962889274c405e47 /assets/scss/variables.scss | |
parent | d0cf5f9e4a5df1c4fb77425c51160d0f81a1bddc (diff) | |
download | lesoiseaux.io-95c3bad65fb93e5de5d36889e186b55e3f7c6446.tar.gz |
Add assets (they are mounted at each site as /assets/
Diffstat (limited to 'assets/scss/variables.scss')
-rw-r--r-- | assets/scss/variables.scss | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/assets/scss/variables.scss b/assets/scss/variables.scss new file mode 100644 index 0000000..1cc22c5 --- /dev/null +++ b/assets/scss/variables.scss @@ -0,0 +1,24 @@ +/** + * SCSS Variables + **/ + +// Colors + +$bg-dark: rgba(109, 78, 128, 1); +$fg-header-h1: rgba(220, 201, 133, 1); + +$bg-fair: rgba(173, 151, 56, 0.68); +$fg-color: #f3f0e4; + +$bg-gfx-off: rgba(191, 138, 112, 0.7); +$bg-gfx-on: rgba(191, 138, 112, 0.9); +$bg-txt-off: rgba(166, 191, 112, 0.7); +$bg-txt-on: rgba(166, 191, 112, 0.9); +$bg-vdo-off: rgba(112, 166, 191, 0.5); +$bg-vdo-on: rgba(112, 166, 191, 0.9); + +// Fonts + +$font-h: 'Cormorant Garamond', serif; +$font-t: Abel, 'Open Sans', sans-serif; + |