-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_color-brd.css
More file actions
32 lines (29 loc) · 957 Bytes
/
_color-brd.css
File metadata and controls
32 lines (29 loc) · 957 Bytes
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
/*
=================================================================================================
# 5 Border Colors
-------------------------------------------------------------------------------------------------
*/
@each $color in red, pink, purple, deep-purple, indigo, blue, light-blue, cyan, teal, green, light-green, lime, yellow, amber, orange, deep-orange{
@for $i from 1 to 5 {
@mixin color-border $(color)-lighten-$(i);
}
@mixin color-border $color;
@for $j from 1 to 4 {
@mixin color-border $(color)-darken-$(j);
}
@for $k from 1 to 4 {
@mixin color-border $(color)-accent-$(k);
}
}
@each $color in brown, grey, blue-grey{
@for $i from 1 to 5 {
@mixin color-border $(color)-lighten-$(i);
}
@mixin color-border $color;
@for $j from 1 to 4 {
@mixin color-border $(color)-darken-$(j);
}
}
@each $color in black, white{
@mixin color-border $color;
}