-
Notifications
You must be signed in to change notification settings - Fork 3k
/
Copy pathcolors.js
78 lines (70 loc) · 1.88 KB
/
colors.js
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
/**
* DO NOT import colors.js into files. Use ../themes/default.js instead.
*/
export default {
dark: '#0b1b34',
black: '#000000',
blue: '#0185ff',
blueHover: '#B0D9FF',
floralwhite: '#fffaf0',
orange: '#FF7101',
pink: '#F68DFE',
green: '#03D47C',
greenHover: '#00C271',
greenPressed: '#35DD96',
greenDisabled: '80E9BD',
red: '#F25730',
redHover: '#DE4822',
redPressed: '#F57959',
redDisabled: '#F8AA97',
yellow: '#FED607',
transparent: 'transparent',
// Dark Mode Theme Colors
greenAppBackground: '#061B09',
greenHighlightBackground: '#07271F',
greenBorders: '#1A3D32',
greenBordersLighter: '#2B5548',
greenIcons: '#8B9C8F',
greenSupportingText: '#AFBBB0',
white: '#E7ECE9',
blueLink: '#5AB0FF',
blueLinkHover: '#B0D9FF',
greenDefaultButton: '#184E3D',
greenDefaultButtonHover: '#2C6755',
greenDefaultButtonPressed: '#467164',
greenDefaultButtonDisabled: '#8BA69E',
midnight: '#002140',
// Brand Colors from Figma
blue200: '#8DC8FF',
blue400: '#0185FF',
blue700: '#003C73',
blue800: '#002140',
green200: '#8EECC4',
green400: '#03D47C',
green700: '#085239',
green800: '#002E22',
yellow200: '#FFED8F',
yellow400: '#FED607',
yellow700: '#722B03',
yellow800: '#401102',
tangerine200: '#FFC68C',
tangerine400: '#FF7101',
tangerine700: '#780505',
tangerine800: '#400000',
pink200: '#FBCCFF',
pink400: '#F68DFE',
pink700: '#712A76',
pink800: '#49225B',
ice200: '#CCF7FF',
ice400: '#50EEF6',
ice700: '#28736D',
ice800: '#134038',
// DEPRECATED COLORS. Do not reference these colors. Will be deleted in color switch PR.
gray1: '#FAFAFA',
gray2: '#ECECEC',
gray3: '#C6C9CA',
gray4: '#7D8B8F',
oldRed: '#fc3826',
oldRedHover: '#e13826',
oldRedDisabled: '#fea29a',
};