aboutsummaryrefslogtreecommitdiff
path: root/assets/sass/libs/_vars.scss
blob: 4ef40fbdae91bb9d2339ab6d15926048f4c44dd7 (plain)
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
// Misc.
	$misc: (
		z-index-base:		10000,
		header-side:		'right'
	);

// Duration.
	$duration: (
		header:				0.5s,
		transition:			0.2s
	);

// Size.
	$size: (
		border-radius:		5px,
		border-width:		2px,
		element-height:		2.75em,
		element-margin:		2.25em
	);

// Font.
	$font: (
		family:				('Lato', sans-serif),
		family-fixed:		('Source Code Pro', monospace),
		weight:				400,
		weight-bold:		700
	);

// Palette.
	$palette: (
		bg:					#fff,
		fg:					#888,
		fg-bold:			#777,
		fg-light:			#aaa,
		border:				#f4f4f4,
		border-bg:			#fafafa,
		border2:			#e4e4e4,
		border2-bg:			#f4f4f4,
		border3:			#e0e0e0,
		border3-bg:			#eaeaea,

		accent1: (
			bg:				#4acaa8,
			fg-bold:		#ffffff,
			fg:				mix(#4acaa8, #ffffff, 25%),
			fg-light:		mix(#4acaa8, #ffffff, 40%)
		),

		accent2: (
			bg:				#989898,
			fg-bold:		#ffffff,
			fg:				mix(#989898, #ffffff, 25%),
			fg-light:		mix(#989898, #ffffff, 40%)
		),

		header: (
			bg:				#4acaa8,
			fg-bold:		#ffffff,
			fg:				mix(#4acaa8, #ffffff, 25%),
			fg-light:		mix(#4acaa8, #ffffff, 40%),
			border:			mix(#4acaa8, #ffffff, 90%)
		)
	);