forked from jnnck/chopstick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_settings.scss
93 lines (71 loc) · 1.88 KB
/
_settings.scss
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
//
// Chopstick settings
//
//Debug
$debug-mode: true;
// Typography
$alpha-font-family : sans-serif;
$alpha-font-size : 16; // pixel-value
$alpha-font-weight : 400;
$alpha-line-height : 1.5; // em-value
$alpha-baseline-grid: 7; // pixel-value
$alpha-leading : 1; // multiplier
$beta-font-family : sans-serif;
$beta-font-weight : 700;
// Grid
$grid-gutter : 20;
$grid-column : 60;
$grid-columns : 12;
// Breakpoints calculated in em's, always based on 16px base-value
$bp1: 320/16*1em;
$bp2: 480/16*1em;
$bp3: 680/16*1em;
$bp4: 960/16*1em;
$bp5: 1140/16*1em;
// the last breakpoint is calculated in shared/_grid.scss
// $bp5: #{1200 / $alpha-font-size}em;
// Modular scale settings
$ratio : 1.414;
$importantnumber : 44;
$leading : 1;
$base-size : $alpha-font-size/16*1em;
// manual modular scale font sizes
// based on http://modularscale.com/scale/?px1=16&px2=18&ra1=1.333&ra2=0
$ms-2 : 12;
$ms-1 : 14;
$ms1 : 18;
$ms2 : 21;
$ms3 : 23;
$ms4 : 28;
$ms5 : 31;
$ms6 : 37;
$ms7 : 42;
$ms8 : 50;
$ms10 : 56;
$ms11 : 67;
$ms12 : 75;
$ms13 : 89;
$ms14 : 100;
// UI
$radius : 5px;
$border : 1px;
$depth : 0%; // Range: 0-100%
$contrast : 91%; // Range: 0-100%
$shadow : 21%; // Range: 0-100%
$highlight : 0%; // Range: 0-100%
// Colors
$alpha-text-color : #444;
$beta-text-color : #777;
$alpha-ui-color : #0A69E7; // Primary elements
$beta-ui-color : #CCC; // Secondary elements
$gamma-ui-color : #DDD; // Used for borders
$delta-ui-color : #FFF; // Used for backgrounds
$error-color : red;
$success-color : green;
$notice-color : yellow;
// Links
$alpha-link-color : $alpha-ui-color;
$alpha-link-colorhover : darken($alpha-link-color, 10);
$alpha-link-colorfocus : darken($alpha-link-color, 10);
$alpha-link-coloractive : lighten($alpha-link-color, 10);
$alpha-link-colorvisited : darken($alpha-link-color, 5);