-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolors.lua
54 lines (54 loc) · 1.8 KB
/
colors.lua
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
-- based on:
-- https://github.com/material-extensions/vscode-material-icon-theme/blob/5a653d98f2a1bb7ee7aae28a78c60ef21c911fd0/material-colors.yml
return {
['red-300'] = '#E57373',
['red-400'] = '#EF5350',
['red-500'] = '#F44336',
['red-A200'] = '#FF5252',
['orange-500'] = '#FF9800',
['deep-orange-400'] = '#FF7043',
['brown-400'] = '#8D6E63',
['purple-400'] = '#AB47BC',
['deep-purple-400'] = '#7e57c2',
['deep-purple-A200'] = '#7C4DFF',
['indigo-400'] = '#5C6BC0',
['blue-400'] = '#42A5F5',
['blue-500'] = '#2196F3',
['blue-600'] = '#1E88E5',
-- color from header background: https://microsoft.github.io/language-server-protocol/
['blue-A800'] = '#2753e3',
['light-blue-600'] = '#039BE5',
['light-blue-700'] = '#0288D1',
['light-blue-800'] = '#0277BD',
['light-blue-A390'] = '#01B8FF',
['cyan-500'] = '#00BCD4',
['cyan-600'] = '#00ACC1',
['cyan-700'] = '#0097A7',
['teal-400'] = '#26A69A',
['teal-500'] = '#009688',
['teal-A700'] = '#00BFA5',
['green-500'] = '#4CAF50',
['green-600'] = '#43A047',
['green-A800'] = '#00A600',
['light-green-400'] = '#9CCC65',
['light-green-500'] = '#8BC34A',
['light-green-600'] = '#7CB342',
['lime-600'] = '#C0CA33',
['lime-700'] = '#AFB42B',
['yellow-700'] = '#FBC02D',
['yellow-800'] = '#F9A825',
-- color from header background: https://pnpm.io
['yellow-850'] = '#F69220',
['amber-400'] = '#FFCA28',
['amber-500'] = '#FFC107',
-- color from: https://github.com/material-extensions/vscode-material-icon-theme/blob/5a653d98f2a1bb7ee7aae28a78c60ef21c911fd0/icons/vite.svg
['amber-A700'] = '#FFAB00',
white = '#FFFFFF',
['gray-690'] = '#777777',
['gray-850'] = '#3A3A3A',
['gray-890'] = '#202020',
['gray-950'] = '#101010',
['blue-gray-500'] = '#607D8B',
['blue-gray-600'] = '#546E7A',
black = '#030303',
}