This repository has been archived by the owner on Apr 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
_config.scss
72 lines (60 loc) · 1.41 KB
/
_config.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
// Border
$border-width: 2px;
$border-radius: 4px;
$border-pill: 32px;
// Breakpoints
$breakpoints: (
xs: 32em,
sm: 40em,
md: 52em,
lg: 64em
);
// Loop Counts
$margin-count: 8; //Generates margin classes 0.5rem increments
$padding-count: 8; //Generates padding classes in 0.5rem increments
$layout-count: 25; //Generates height/width classes in 0.5rem increments
// Type Scale
$h1: 2rem; // 32px
$h2: 1.5rem; // 24px
$h3: 1.25rem; // 20px
$h4: 1rem; // 16px
$h5: 0.875rem; // 14px
$h6: 0.75rem; // 12px
$line-height-1: 1;
$line-height-2: 1.25;
$line-height-3: 1.5;
$line-height-4: 2;
// UI Color Definitions
$white: #FFF;
$black: #000;
$phantom-gray: #56718C;
$wraith-gray: #BCD3DE;
$ghost-gray: #E1ECF2;
$shade-gray: #B7C3CE;
// UI Palette
$ui-palette: (
primary: $black,
secondary: $phantom-gray,
tertiary: $wraith-gray,
placeholder: $ghost-gray,
);
// Brand Color Definitions
$brand: #006FFF;
$brand-high: #1B7EFF;
$brand-low: #0069F2;
$success: #26D58F;
$success-high: #28E398;
$success-low: #24C987;
$attention: #EBCD2E;
$attention-high: #F7D830;
$attention-low: #DEC22B;
$danger: #E91C53;
$danger-high: #F51D57;
$danger-low: #DB1A4E;
// Brand Palette
$brand-palette: (
brand:($brand, $brand-high, $brand-low),
success:($success, $success-high, $success-low),
attention:($attention, $attention-high, $attention-low),
danger:($danger, $danger-high, $danger-low),
);