File tree 2 files changed +82
-2
lines changed
2 files changed +82
-2
lines changed Original file line number Diff line number Diff line change 19
19
.bg-white {
20
20
background-color : # ffffff ; }
21
21
22
+ .bg-black {
23
+ background-color : # 000000 ; }
24
+
25
+ .bg-gray {
26
+ background-color : # 333 ; }
27
+
22
28
.bg-gray-light {
23
29
background-color : # efefef ; }
24
30
25
31
.bg-gray-dark {
26
32
background-color : # 222 ; }
27
33
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
+
28
52
.text-white {
29
53
color : # ffffff ; }
30
54
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
+
31
67
.border {
32
68
border : 1px solid # 222 ; }
33
69
Original file line number Diff line number Diff line change 27
27
background-color : $color-white ;
28
28
}
29
29
30
+ .bg-black {
31
+ background-color : $color-black ;
32
+ }
33
+
34
+ .bg-gray {
35
+ background-color : $color-gray ;
36
+ }
37
+
30
38
.bg-gray-light {
31
39
background-color : $color-gray-light ;
32
40
}
36
44
}
37
45
38
46
// 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
+
39
71
.text-white {
40
72
color : $color-white ;
41
73
}
42
74
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 ;
45
89
}
You can’t perform that action at this time.
0 commit comments