Skip to content

Commit 68a6701

Browse files
committed
More color! Plus new package.json
1 parent ab396dc commit 68a6701

File tree

2 files changed

+82
-2
lines changed

2 files changed

+82
-2
lines changed

css/css-utilities.css

+36
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,51 @@
1919
.bg-white {
2020
background-color: #ffffff; }
2121

22+
.bg-black {
23+
background-color: #000000; }
24+
25+
.bg-gray {
26+
background-color: #333; }
27+
2228
.bg-gray-light {
2329
background-color: #efefef; }
2430

2531
.bg-gray-dark {
2632
background-color: #222; }
2733

34+
.text-primary {
35+
color: blue; }
36+
37+
.text-secondary {
38+
color: red; }
39+
40+
.text-tertiary {
41+
color: purple; }
42+
43+
.text-success {
44+
color: #e1ffe1; }
45+
46+
.text-warning {
47+
color: orange; }
48+
49+
.text-danger {
50+
color: red; }
51+
2852
.text-white {
2953
color: #ffffff; }
3054

55+
.text-black {
56+
color: #000000; }
57+
58+
.text-gray {
59+
color: #333; }
60+
61+
.text-gray-light {
62+
color: #efefef; }
63+
64+
.text-gray-dark {
65+
color: #222; }
66+
3167
.border {
3268
border: 1px solid #222; }
3369

scss/_color.scss

+46-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,14 @@
2727
background-color: $color-white;
2828
}
2929

30+
.bg-black {
31+
background-color: $color-black;
32+
}
33+
34+
.bg-gray {
35+
background-color: $color-gray;
36+
}
37+
3038
.bg-gray-light {
3139
background-color: $color-gray-light;
3240
}
@@ -36,10 +44,46 @@
3644
}
3745

3846
// text color
47+
.text-primary {
48+
color: $color-primary;
49+
}
50+
51+
.text-secondary {
52+
color: $color-secondary;
53+
}
54+
55+
.text-tertiary {
56+
color: $color-tertiary;
57+
}
58+
59+
.text-success {
60+
color: $color-success;
61+
}
62+
63+
.text-warning {
64+
color: $color-warning;
65+
}
66+
67+
.text-danger {
68+
color: $color-danger;
69+
}
70+
3971
.text-white {
4072
color: $color-white;
4173
}
4274

43-
.text-primary {
44-
background-color: $color-primary;
75+
.text-black {
76+
color: $color-black;
77+
}
78+
79+
.text-gray {
80+
color: $color-gray;
81+
}
82+
83+
.text-gray-light {
84+
color: $color-gray-light;
85+
}
86+
87+
.text-gray-dark {
88+
color: $color-gray-dark;
4589
}

0 commit comments

Comments
 (0)