-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.scss
86 lines (82 loc) · 1.8 KB
/
index.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
$colors: ();
@function defineColor($name, $color, $text: false) {
$colors: map-merge($colors, ($name: $color)) !global;
@if $text {
$colors: map-merge($colors, (#{$name}-contrast: $text)) !global;
}
@return $color;
}
@mixin addColor($name, $color, $text: false) {
$list: '', '--hover:hover', '--focus:focus';
@each $type in $list {
.#{$name}#{$type} {
@if $text {
color: $text;
}
background-color: defineColor($name, $color, $text);
}
@if $text {
.#{$name}-contrast#{$type} {
color: $text;
}
}
.#{$name}-text#{$type} {
color: $color;
}
.#{$name}-bg#{$type} {
background-color: $color;
}
.#{$name}-ba#{$type} {
border-color: $color;
}
.#{$name}-bt#{$type} {
border-top-color: $color;
}
.#{$name}-br#{$type} {
border-right-color: $color;
}
.#{$name}-bb#{$type} {
border-bottom-color: $color;
}
.#{$name}-bl#{$type} {
border-left-color: $color;
}
.#{$name}-o#{$type} {
outline-color: $color;
}
.#{$name}-f#{$type} {
fill: $color;
}
.#{$name}-s#{$type} {
stroke: $color;
}
}
}
@mixin addTextColor($name, $color, $text: false) {
$list: '', '--hover:hover', '--focus:focus';
@each $type in $list {
.#{$name}-text#{$type} {
color: $color;
}
}
}
@mixin addBorderColor($name, $color, $text: false) {
$list: '', '--hover:hover', '--focus:focus';
@each $type in $list {
.#{$name}-ba#{$type} {
border-color: $color;
}
.#{$name}-bt#{$type} {
border-top-color: $color;
}
.#{$name}-br#{$type} {
border-right-color: $color;
}
.#{$name}-bb#{$type} {
border-bottom-color: $color;
}
.#{$name}-bl#{$type} {
border-left-color: $color;
}
}
}