ikuinen99 commited on
Commit
8603bda
1 Parent(s): e4bd7f9
Files changed (2) hide show
  1. constants/__init__.py +0 -0
  2. constants/constant.py +46 -0
constants/__init__.py ADDED
File without changes
constants/constant.py ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ DARKER_COLOR_MAP = {
2
+ "red": (220, 38, 38),
3
+ "pink": (236, 64, 122),
4
+ "orange": (234, 88, 12),
5
+ "yellow": (234, 179, 8),
6
+ "blue": (37, 99, 235),
7
+ "teal": (38, 166, 154),
8
+ "indigo": (92, 107, 192),
9
+ "green": (22, 163, 74),
10
+ "purple": (171, 71, 188),
11
+ "deep_purple": (126, 87, 194),
12
+ "brown": (141, 110, 99),
13
+ "grey": (189, 189, 189)
14
+ }
15
+
16
+ LIGHTER_COLOR_MAP = {
17
+ "red": (254, 226, 226),
18
+ "pink": (248, 187, 208),
19
+ "orange": (255, 237, 213),
20
+ "yellow": (254, 249, 195),
21
+ "blue": (219, 234, 254),
22
+ "teal": (128, 203, 196),
23
+ "indigo": (159, 168, 218),
24
+ "green": (220, 252, 231),
25
+ "purple": (206, 147, 216),
26
+ "deep_purple": (179, 157, 219),
27
+ "brown": (188, 170, 164),
28
+ "grey": (238, 238, 238)
29
+ }
30
+
31
+ LIGHTER_COLOR_MAP_HEX = {
32
+ "red": "#fee2e2",
33
+ "pink": "#f8bbd0",
34
+ "orange": "#ffedd5",
35
+ "yellow": "#fef9c3",
36
+ "blue": "#dbeafe",
37
+ "teal": "#80cbc4",
38
+ "indigo": "#9fa8da",
39
+ "green": "#dcfce7",
40
+ "purple": "#ce93d8",
41
+ "deep_purple": "#b39ddb",
42
+ "brown": "#bcaaa4",
43
+ "grey": "#eeeeee"
44
+ }
45
+
46
+ COLORS = list(DARKER_COLOR_MAP.keys())