-
Notifications
You must be signed in to change notification settings - Fork 3
/
colors.rs
182 lines (164 loc) · 8.12 KB
/
colors.rs
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
// Reset and text styles
pub const RESET: &str = "\x1b[0m";
pub const BOLD: &str = "\x1b[1m";
// Tailwind CSS Colors: Gray
pub const GRAY50: &str = "\x1b[38;2;249;250;251m";
pub const GRAY100: &str = "\x1b[38;2;243;244;246m";
pub const GRAY200: &str = "\x1b[38;2;229;231;235m";
pub const GRAY300: &str = "\x1b[38;2;209;213;219m";
pub const GRAY400: &str = "\x1b[38;2;156;163;175m";
pub const GRAY500: &str = "\x1b[38;2;107;114;128m";
pub const GRAY600: &str = "\x1b[38;2;75;85;99m";
pub const GRAY700: &str = "\x1b[38;2;55;65;81m";
pub const GRAY800: &str = "\x1b[38;2;31;41;55m";
pub const GRAY900: &str = "\x1b[38;2;17;24;39m";
// Tailwind CSS Colors: Red
pub const RED50: &str = "\x1b[38;2;254;242;242m";
pub const RED100: &str = "\x1b[38;2;254;226;226m";
pub const RED200: &str = "\x1b[38;2;254;202;202m";
pub const RED300: &str = "\x1b[38;2;252;165;165m";
pub const RED400: &str = "\x1b[38;2;248;113;113m";
pub const RED500: &str = "\x1b[38;2;239;68;68m";
pub const RED600: &str = "\x1b[38;2;220;38;38m";
pub const RED700: &str = "\x1b[38;2;185;28;28m";
pub const RED800: &str = "\x1b[38;2;153;27;27m";
pub const RED900: &str = "\x1b[38;2;127;29;29m";
// Tailwind CSS Colors: Yellow
pub const YELLOW50: &str = "\x1b[38;2;255;251;235m";
pub const YELLOW100: &str = "\x1b[38;2;254;243;199m";
pub const YELLOW200: &str = "\x1b[38;2;253;230;138m";
pub const YELLOW300: &str = "\x1b[38;2;252;211;77m";
pub const YELLOW400: &str = "\x1b[38;2;251;191;36m";
pub const YELLOW500: &str = "\x1b[38;2;245;158;11m";
pub const YELLOW600: &str = "\x1b[38;2;217;119;6m";
pub const YELLOW700: &str = "\x1b[38;2;180;83;9m";
pub const YELLOW800: &str = "\x1b[38;2;146;64;14m";
pub const YELLOW900: &str = "\x1b[38;2;120;53;15m";
// Tailwind CSS Colors: Green
pub const GREEN50: &str = "\x1b[38;2;240;253;244m";
pub const GREEN100: &str = "\x1b[38;2;220;252;231m";
pub const GREEN200: &str = "\x1b[38;2;187;247;208m";
pub const GREEN300: &str = "\x1b[38;2;134;239;172m";
pub const GREEN400: &str = "\x1b[38;2;74;222;128m";
pub const GREEN500: &str = "\x1b[38;2;34;197;94m";
pub const GREEN600: &str = "\x1b[38;2;22;163;74m";
pub const GREEN700: &str = "\x1b[38;2;21;128;61m";
pub const GREEN800: &str = "\x1b[38;2;22;101;52m";
pub const GREEN900: &str = "\x1b[38;2;20;83;45m";
// Tailwind CSS Colors: Blue
pub const BLUE50: &str = "\x1b[38;2;239;246;255m";
pub const BLUE100: &str = "\x1b[38;2;219;234;254m";
pub const BLUE200: &str = "\x1b[38;2;191;219;254m";
pub const BLUE300: &str = "\x1b[38;2;147;197;253m";
pub const BLUE400: &str = "\x1b[38;2;96;165;250m";
pub const BLUE500: &str = "\x1b[38;2;59;130;246m";
pub const BLUE600: &str = "\x1b[38;2;37;99;235m";
pub const BLUE700: &str = "\x1b[38;2;29;78;216m";
pub const BLUE800: &str = "\x1b[38;2;30;64;175m";
pub const BLUE900: &str = "\x1b[38;2;30;58;138m";
// Tailwind CSS Colors: Indigo
pub const INDIGO50: &str = "\x1b[38;2;238;242;255m";
pub const INDIGO100: &str = "\x1b[38;2;224;231;255m";
pub const INDIGO200: &str = "\x1b[38;2;199;210;254m";
pub const INDIGO300: &str = "\x1b[38;2;165;180;252m";
pub const INDIGO400: &str = "\x1b[38;2;129;140;248m";
pub const INDIGO500: &str = "\x1b[38;2;99;102;241m";
pub const INDIGO600: &str = "\x1b[38;2;79;70;229m";
pub const INDIGO700: &str = "\x1b[38;2;67;56;202m";
pub const INDIGO800: &str = "\x1b[38;2;55;48;163m";
pub const INDIGO900: &str = "\x1b[38;2;49;46;129m";
// Tailwind CSS Colors: Purple
pub const PURPLE50: &str = "\x1b[38;2;250;245;255m";
pub const PURPLE100: &str = "\x1b[38;2;243;232;255m";
pub const PURPLE200: &str = "\x1b[38;2;233;213;255m";
pub const PURPLE300: &str = "\x1b[38;2;216;180;254m";
pub const PURPLE400: &str = "\x1b[38;2;192;132;252m";
pub const PURPLE500: &str = "\x1b[38;2;168;85;247m";
pub const PURPLE600: &str = "\x1b[38;2;147;51;234m";
pub const PURPLE700: &str = "\x1b[38;2;126;34;206m";
pub const PURPLE800: &str = "\x1b[38;2;107;33;168m";
pub const PURPLE900: &str = "\x1b[38;2;88;28;135m";
// Tailwind CSS Colors: Cyan
pub const CYAN50: &str = "\x1b[38;2;236;254;255m";
pub const CYAN100: &str = "\x1b[38;2;207;250;254m";
pub const CYAN200: &str = "\x1b[38;2;165;243;252m";
pub const CYAN300: &str = "\x1b[38;2;103;232;249m";
pub const CYAN400: &str = "\x1b[38;2;34;211;238m";
pub const CYAN500: &str = "\x1b[38;2;6;182;212m";
pub const CYAN600: &str = "\x1b[38;2;8;145;178m";
pub const CYAN700: &str = "\x1b[38;2;14;116;144m";
pub const CYAN800: &str = "\x1b[38;2;21;94;117m";
pub const CYAN900: &str = "\x1b[38;2;22;78;99m";
// Tailwind CSS Colors: Teal
pub const TEAL50: &str = "\x1b[38;2;240;253;250m";
pub const TEAL100: &str = "\x1b[38;2;204;251;241m";
pub const TEAL200: &str = "\x1b[38;2;153;246;228m";
pub const TEAL300: &str = "\x1b[38;2;94;234;212m";
pub const TEAL400: &str = "\x1b[38;2;45;212;191m";
pub const TEAL500: &str = "\x1b[38;2;20;184;166m";
pub const TEAL600: &str = "\x1b[38;2;13;148;136m";
pub const TEAL700: &str = "\x1b[38;2;15;118;110m";
pub const TEAL800: &str = "\x1b[38;2;17;94;89m";
pub const TEAL900: &str = "\x1b[38;2;19;78;74m";
// Tailwind CSS Colors: Emerald
pub const EMERALD50: &str = "\x1b[38;2;236;253;245m";
pub const EMERALD100: &str = "\x1b[38;2;209;250;229m";
pub const EMERALD200: &str = "\x1b[38;2;167;243;208m";
pub const EMERALD300: &str = "\x1b[38;2;110;231;183m";
pub const EMERALD400: &str = "\x1b[38;2;52;211;153m";
pub const EMERALD500: &str = "\x1b[38;2;16;185;129m";
pub const EMERALD600: &str = "\x1b[38;2;5;150;105m";
pub const EMERALD700: &str = "\x1b[38;2;4;120;87m";
pub const EMERALD800: &str = "\x1b[38;2;6;95;70m";
pub const EMERALD900: &str = "\x1b[38;2;6;78;59m";
// Tailwind CSS Colors: Lime
pub const LIME50: &str = "\x1b[38;2;247;254;231m";
pub const LIME100: &str = "\x1b[38;2;236;252;203m";
pub const LIME200: &str = "\x1b[38;2;217;249;157m";
pub const LIME300: &str = "\x1b[38;2;190;242;100m";
pub const LIME400: &str = "\x1b[38;2;163;230;53m";
pub const LIME500: &str = "\x1b[38;2;132;204;22m";
pub const LIME600: &str = "\x1b[38;2;101;163;13m";
pub const LIME700: &str = "\x1b[38;2;77;124;15m";
pub const LIME800: &str = "\x1b[38;2;63;98;18m";
pub const LIME900: &str = "\x1b[38;2;54;83;20m";
// Tailwind CSS Colors: Amber
pub const AMBER50: &str = "\x1b[38;2;255;251;235m";
pub const AMBER100: &str = "\x1b[38;2;254;243;199m";
pub const AMBER200: &str = "\x1b[38;2;253;230;138m";
pub const AMBER300: &str = "\x1b[38;2;252;211;77m";
pub const AMBER400: &str = "\x1b[38;2;251;191;36m";
pub const AMBER500: &str = "\x1b[38;2;245;158;11m";
pub const AMBER600: &str = "\x1b[38;2;217;119;6m";
pub const AMBER700: &str = "\x1b[38;2;180;83;9m";
pub const AMBER800: &str = "\x1b[38;2;146;64;14m";
pub const AMBER900: &str = "\x1b[38;2;120;53;15m";
// Tailwind CSS Colors: Fuchsia
pub const FUCHSIA50: &str = "\x1b[38;2;253;244;255m";
pub const FUCHSIA100: &str = "\x1b[38;2;250;232;255m";
pub const FUCHSIA200: &str = "\x1b[38;2;245;208;254m";
pub const FUCHSIA300: &str = "\x1b[38;2;240;171;252m";
pub const FUCHSIA400: &str = "\x1b[38;2;232;121;249m";
pub const FUCHSIA500: &str = "\x1b[38;2;217;70;239m";
// Tailwind CSS Colors: Emerald
pub const EMERALD50: &str = "\x1b[38;2;236;253;245m";
pub const EMERALD100: &str = "\x1b[38;2;209;250;229m";
pub const EMERALD200: &str = "\x1b[38;2;167;243;208m";
pub const EMERALD300: &str = "\x1b[38;2;110;231;183m";
pub const EMERALD400: &str = "\x1b[38;2;52;211;153m";
pub const EMERALD500: &str = "\x1b[38;2;16;185;129m";
pub const EMERALD600: &str = "\x1b[38;2;5;150;105m";
pub const EMERALD700: &str = "\x1b[38;2;4;120;87m";
pub const EMERALD800: &str = "\x1b[38;2;6;95;70m";
pub const EMERALD900: &str = "\x1b[38;2;6;78;59m";
// Tailwind CSS Colors: Teal
pub const TEAL50: &str = "\x1b[38;2;240;253;250m";
pub const TEAL100: &str = "\x1b[38;2;204;251;241m";
pub const TEAL200: &str = "\x1b[38;2;153;246;228m";
pub const TEAL300: &str = "\x1b[38;2;94;234;212m";
pub const TEAL400: &str = "\x1b[38;2;45;212;191m";
pub const TEAL500: &str = "\x1b[38;2;20;184;166m";
pub const TEAL600: &str = "\x1b[38;2;13;148;136m";
pub const TEAL700: &str = "\x1b[38;2;15;118;110m";
pub const TEAL800: &str = "\x1b[38;2;17;94;89m";
pub const TEAL900: &str = "\x1b[38;2;19;78;74m";