forked from angular/angular.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_options.scss
94 lines (77 loc) · 1.44 KB
/
_options.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
87
88
89
90
91
92
93
94
/*
* Typography
*
* Only the fonts listed below should be used throughout the site.
*/
$brand-font: 'Roboto', "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
$mono-font: Monaco, "Lucida Console", monospace;
/*
* Metrics
*
* Metrics based on material design 8pt unit
*/
$unit: 8px;
$phone-breakpoint: 480px;
$tablet-breakpoint: 800px;
/*
* Layer Stacking
*
* The approved range that can be used for layering (z-indexes)
*/
$layer-1: 1;
$layer-2: 2;
$layer-3: 3;
$layer-4: 4;
$layer-5: 5;
$layer-6: 6;
$layer-7: 7;
$layer-8: 8;
$layer-9: 9;
$layer-10: 10;
/*
* Colors
*
* Colors are ordered from light to dark (top to bottom).
* Do not use hex codes directly in other Sass files. The
* following colors are the only approved colors for this site.
*/
// GREEN COLORS
$cactus: #8BC34A;
// YELLOW
$sunshine: #FFF59D;
$olive: #647f11;
// ORANGE
$sand: #FFF8E1;
$citrus: #FF8F00;
// RED COLORS
$peach: #ffebee;
$squid: #EF3872;
$cardinal: #E23237;
$ruby: #B52E31;
$pink: #D43669;
// BLUE COLORS
$light: #E3F2FD;
$sky: #0085D3;
$regal: #0273D4;
$blueberry: #0262C2;
$ocean: #0143A3;
//PURPLE
$grape: #9575CD;
// DARK GRAY COLORS
$coal: #000000;
$steel: #253238;
$silver: #36474F;
$platinum: #445A64;
$metal: #536E7A;
$tin: #8FA4AE;
$darkgrey: #5C707A;
$bismark: #7a8b94;
$grey: #B0BEC5;
// LIGHT GRAY COLORS
$cloud: #AFBEC5;
$fog: #CFD8DC;
$mist: #ECEFF1;
$snow: #FFFFFF;
$heather: #546E7A;
$lightgrey: #F5F6F7;
$storm: #E0E0E0;