source: trunk/client/temi/spectral/assets/sass/libs/_vars.scss@ 241

Last change on this file since 241 was 241, checked in by luc, 9 years ago

Aggiunta del widget Privacy e CookieLaw per l'informativa sui cookie - Aggiunto Tema Realistic - Aggiunto Tema Spectral

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