blob: e5c0d0dbdafe144303bfba58931a6252744b628e (
plain)
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
|
@function grey(){
@return material-color('blue-grey', '400');
}
@function greyLight(){
@return material-color('blue-grey', '200');
}
@function greyLigther(){
@return material-color('blue-grey', '100');
}
@function greyDark(){
@return material-color('blue-grey', '600');
}
@function greyDarker(){
@return material-color('blue-grey', '800');
}
@function black(){
@return material-color('blue-grey', '900');
}
@function white(){
@return "#FFFFFF";
}
@function primaryColor(){
@return material-color('indigo', '900');
}
|