-
Notifications
You must be signed in to change notification settings - Fork 29
/
colors.ts
70 lines (61 loc) · 1.26 KB
/
colors.ts
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
const colors = require('styles/colors.scss');
export const primary = '#1a73e8';
export const blue = {
40: colors.blue07,
50: colors.blue01,
100: colors.blue02,
200: colors.blue03,
300: colors.blue04,
400: colors.blue05,
500: colors.blue06,
};
export const grey = {
50: colors.grey01,
100: colors.grey02,
200: colors.grey03,
300: colors.grey04,
400: colors.grey05,
500: colors.grey06,
600: colors.grey07,
610: colors.grey071,
700: colors.grey08,
800: colors.grey09,
900: colors.grey10,
1000: colors.grey11,
};
export const green = {
50: colors.green01,
100: colors.green02,
200: colors.green03,
300: colors.green04,
400: colors.green05,
500: colors.green06,
};
export const red = {
50: colors.red01,
100: colors.red02,
200: colors.red03,
};
export const bluegrey = {
50: colors.bluegrey01,
100: colors.bluegrey02,
200: colors.bluegrey03,
300: colors.bluegrey04,
400: colors.bluegrey05,
500: colors.bluegrey06,
};
export const orange = {
50: colors.orange01,
100: colors.orange02,
200: colors.orange03,
300: colors.orange04,
400: colors.orange05,
};
export const yellow = {
50: colors.yellow01,
100: colors.yellow02,
200: colors.yellow02lighter,
};
export const white = {
50: colors.white01,
};