1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
| ///
| /// Spectral by HTML5 UP
| /// html5up.net | @n33co
| /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
| ///
|
| // Misc.
| $misc: (
| max-spotlights: 10,
| max-features: 10,
| z-index-base: 10000
| );
|
| // Duration.
| $duration: (
| transitions: 0.2s,
| menu: 0.5s,
| fadein: 3s
| );
|
| // Size.
| $size: (
| element-height: 2.75em,
| element-margin: 2em,
| letter-spacing: 0.075em,
| letter-spacing-alt: 0.225em
| );
|
| // Font.
| $font: (
| family: ('Open Sans', Helvetica, sans-serif),
| family-fixed: ('Courier New', monospace),
| weight: 400,
| weight-bold: 600,
| weight-extrabold: 800
| );
|
| // Palette.
| $palette: (
| bg: #2e3842,
| fg: #fff,
| fg-bold: #fff,
| fg-light: rgba(255,255,255,0.5),
| border: #fff,
| border-bg: rgba(144,144,144,0.25),
| border2: #fff,
| border2-bg: rgba(144,144,144,0.5),
|
| accent1: (
| bg: #21b2a6,
| fg-bold: #ffffff,
| fg: mix(#21b2a6, #ffffff, 25%),
| fg-light: mix(#21b2a6, #ffffff, 40%),
| border: rgba(0,0,0,0.125),
| border-bg: rgba(255,255,255,0.075),
| border2: rgba(0,0,0,0.25),
| border2-bg: rgba(255,255,255,0.2)
| ),
|
| accent2: (
| bg: #00ffcc,
| fg-bold: #ffffff,
| fg: mix(#00ffcc, #ffffff, 25%),
| fg-light: mix(#00ffcc, #ffffff, 40%),
| border: rgba(0,0,0,0.125),
| border-bg: rgba(255,255,255,0.075),
| border2: rgba(0,0,0,0.25),
| border2-bg: rgba(255,255,255,0.2)
| ),
|
| accent3: (
| bg: #00f0ff,
| fg-bold: #ffffff,
| fg: mix(#00f0ff, #ffffff, 25%),
| fg-light: mix(#00f0ff, #ffffff, 40%),
| border: rgba(0,0,0,0.125),
| border-bg: rgba(255,255,255,0.075),
| border2: rgba(0,0,0,0.25),
| border2-bg: rgba(255,255,255,0.2)
| ),
|
| accent4: (
| bg: #76ddff,
| fg-bold: #ffffff,
| fg: mix(#76ddff, #ffffff, 25%),
| fg-light: mix(#76ddff, #ffffff, 40%),
| border: rgba(0,0,0,0.125),
| border-bg: rgba(255,255,255,0.075),
| border2: rgba(0,0,0,0.25),
| border2-bg: rgba(255,255,255,0.2)
| ),
|
| accent5: (
| bg: #505393,
| fg-bold: #ffffff,
| fg: mix(#505393, #ffffff, 25%),
| fg-light: mix(#505393, #ffffff, 40%),
| border: rgba(0,0,0,0.125),
| border-bg: rgba(255,255,255,0.075),
| border2: rgba(0,0,0,0.25),
| border2-bg: rgba(255,255,255,0.2)
| ),
|
| accent6: (
| bg: #ed4933,
| fg-bold: #ffffff,
| fg: mix(#ed4933, #ffffff, 25%),
| fg-light: mix(#ed4933, #ffffff, 40%),
| border: rgba(0,0,0,0.125),
| border-bg: rgba(255,255,255,0.075),
| border2: rgba(0,0,0,0.25),
| border2-bg: rgba(255,255,255,0.2)
| ),
|
| accent7: (
| bg: #ffffff,
| fg-bold: #2E3842,
| fg: #4E4852,
| fg-light: #8E8892,
| border: #dfdfdf,
| border-bg: rgba(0,0,0,0.0375),
| border2: #bfbfbf,
| border2-bg: rgba(0,0,0,0.1)
| )
| );
|
|