-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy path_colors.scss
59 lines (52 loc) · 2.29 KB
/
_colors.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
$accent: #F18260 !default;
$white: #fff !default;
$silver: #F4F4F4 !default;
$lightgrey: #ececec !default;
$grey: #ccc !default;
$midgrey: #777 !default;
$darkgrey: #444 !default;
$black: #222 !default;
$trueblack: #000 !default;
//====================================================
// Text Colors
//====================================================
.color-accent { color: $accent; }
.color-white { color: $white; }
.color-silver { color: $silver; }
.color-lightgrey { color: $lightgrey; }
.color-grey { color: $grey; }
.color-midgrey { color: $midgrey; }
.color-darkgrey { color: $darkgrey; }
.color-black { color: $black; }
.color-trueblack { color: $trueblack; }
.color-inherit { color: inherit; }
.color-transparent { color: transparent; }
//====================================================
// Background Colors
//====================================================
.bg-accent { background-color: $accent; }
.bg-white { background-color: $white; }
.bg-silver { background-color: $silver; }
.bg-lightgrey { background-color: $lightgrey; }
.bg-grey { background-color: $grey; }
.bg-midgrey { background-color: $midgrey; }
.bg-darkgrey { background-color: $darkgrey; }
.bg-black { background-color: $black; }
.bg-trueblack { background-color: $trueblack; }
.bg-transparent { background-color: transparent; }
//====================================================
// Border Colors / _borders.scss
//====================================================
// TODO: Figure out best way to eliminate !important
// !important needed to override color property in shorthand
.border-accent { border-color: $accent !important; }
.border-white { border-color: $white !important; }
.border-silver { border-color: $silver !important; }
.border-lightgrey { border-color: $lightgrey !important; }
.border-grey { border-color: $grey !important; }
.border-midgrey { border-color: $midgrey !important; }
.border-darkgrey { border-color: $darkgrey !important; }
.border-black { border-color: $black !important; }
.border-trueblack { border-color: $trueblack !important; }
.border-current { border-color: currentColor !important; }
.border-transparent { border-color: transparent !important; }