-
Notifications
You must be signed in to change notification settings - Fork 9
/
colors.styl
50 lines (50 loc) · 901 Bytes
/
colors.styl
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
//Greens
$turqoise = #1abc9c;
$greenSea = #16a085;
$emerald = #2ecc71;
$nephritis = #27ae60;
$green = #4caf50;
$lightGreen = #8bc34a;
$lime = #cddc39;
//Blues
$river = #3498db;
$belize = #2980b9;
$asphalt = #34495e;
$midnightBlue = #2c3e50;
$blue = #2196f3;
$lightBlue = #03a9f4;
$cyan = #00bcd4;
$teal = #009688;
//Reds
$alizarin = #e74c3c;
$pomegranate = #c0392b;
$red = #f44336;
//Oranges
$carrot = #e67e22;
$pumpkin = #d35400;
$dullOrange = #f39c12;
$orange = #ff9800;
$bloodOrange = #ff5722;
$amber = #ffc107;
//Yellows
$sunflower = #f1c40f;
$yellow = #ffeb3b;
//Purples + Pinks
$amethyst = #9b59b6;
$plum = #8e44ad;
$purple = #9c27b0;
$deepPurple = #673ab7;
$pink = #e91e63;
$indigo = #3f51b5;
//Browns
$brown = #795548;
//Greys
$grey = #9e9e9e;
$gunMetal = #607d8b;
$asbestos = #7f8c8d;
$concrete = #95a5a6;
$silver = #bdc3c7;
//Whites
$clouds = #ecf0f1;
$paper = #efefef;
$offWhite = #fcfcfc;