splitted up stylesheet and added lots of scaffolding to it. Style needs working.
[theme-danix.xyz.git] / assets / sass / libs / _vars.scss
1 // Misc.
2 $misc: (
3 z-index-base: 10000
4 );
5
6 // Duration.
7 $duration: (
8 menu: 0.35s,
9 transition: 0.2s,
10 banner: 2.5s
11 );
12
13 // Size.
14 $size: (
15 border-radius: 4px,
16 element-height: 2.75em,
17 element-margin: 2em,
18 inner: 65em
19 );
20
21 // Font.
22 $font: (
23 family: ('Montserrat', Helvetica, sans-serif),
24 family-fixed: ('Red Hat Mono', monospace),
25 weight: 300,
26 weight-bold: 600,
27 letter-spacing: 0.025em,
28 letter-spacing-alt: 0.25em
29 );
30
31 // Palette.
32 $palette: (
33 bg: #D8D9CF,
34 bg-alt: #F0EEED,
35 fg: #393E46,
36 fg-bold: #222831,
37 fg-light: rgba(216,217,207,0.2),
38 border: rgba(57,62,70,0.1),
39 border-bg: rgba(34,40,49,0.035),
40 highlight: #FD7014,
41 accent1: #FF8B13,
42 accent2: #CF4DCE,
43 accent3: #F273E6,
44 accent4: #e7b788,
45 accent5: #8ea9e8,
46 accent6: #609EA2
47 );