-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcolors.js
112 lines (110 loc) · 3.68 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
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
import { combineRgb } from '@companion-module/base'
export const colorRGB = {
none: combineRgb(16, 16, 16),
// base colors
red: combineRgb(160, 0, 0),
orange: combineRgb(255, 100, 0),
yellow: combineRgb(160, 160, 0),
green: combineRgb(0, 160, 0),
cyan: combineRgb(0, 160, 160),
blue: combineRgb(0, 0, 160),
purple: combineRgb(80, 0, 80),
magenta: combineRgb(160, 0, 160),
// other 'official' colors
berry: combineRgb(94, 30, 77),
crimson: combineRgb(140, 0, 40),
forest: combineRgb(50, 85, 35),
gray: combineRgb(140, 140, 140),
'Hot Pink': combineRgb(220, 0, 120),
hotpink: combineRgb(220, 0, 120),
indigo: combineRgb(75, 0, 130),
lavender: combineRgb(200, 140, 224),
midnight: combineRgb(32, 36, 125),
olive: combineRgb(128, 128, 0),
peach: combineRgb(228, 128, 89),
plum: combineRgb(52, 0, 62),
skyblue: combineRgb(135, 206, 235),
'Sky Blue': combineRgb(135, 206, 235),
// 'other' available colors
avocado: combineRgb(86, 130, 4),
bastardamber: combineRgb(255, 200, 180),
bisque: combineRgb(255, 229, 196),
celadon: combineRgb(171, 225, 175),
cerulean: combineRgb(94, 127, 178),
chartreuse: combineRgb(127, 255, 0),
coral: combineRgb(255, 126, 79),
ecru: combineRgb(206, 178, 128),
edgecombgray: combineRgb(218, 212, 197),
fuchsia: combineRgb(223, 0, 223),
fulvous: combineRgb(228, 134, 0),
glaucous: combineRgb(136, 206, 234),
grey: combineRgb(140, 140, 140),
lilac: combineRgb(204, 135, 153),
maize: combineRgb(247, 232, 92),
mauve: combineRgb(153, 51, 102),
ochre: combineRgb(205, 118, 34),
puce: combineRgb(223, 176, 255),
rufous: combineRgb(169, 27, 7),
sage: combineRgb(189, 184, 138),
scarlet: combineRgb(253, 37, 0),
seafoamgreen: combineRgb(195, 226, 190),
taupe: combineRgb(178, 138, 108),
verdigris: combineRgb(65, 129, 108),
vermilion: combineRgb(228, 66, 52),
viridian: combineRgb(195, 226, 190),
wenge: combineRgb(100, 84, 82),
zaffre: combineRgb(0, 20, 168),
}
export const colorName = [
{ label: 'None', id: 'none' },
{ label: 'Red', id: 'red' },
{ label: 'Orange', id: 'orange' },
{ label: 'Yellow', id: 'yellow' },
{ label: 'Green', id: 'green' },
{ label: 'Cyan', id: 'cyan' },
{ label: 'Blue', id: 'blue' },
{ label: 'Purple', id: 'purple' },
{ label: 'Magenta', id: 'magenta' },
//
{ label: 'Berry', id: 'berry' },
{ label: 'Crimson', id: 'crimson' },
{ label: 'Forest', id: 'forest' },
{ label: 'Gray', id: 'gray' },
{ label: 'Hot Pink', id: 'Hot Pink' },
{ label: 'Indigo', id: 'indigo' },
{ label: 'Lavender', id: 'Lavender' },
{ label: 'Midnight', id: 'midnight' },
{ label: 'Olive', id: 'olive' },
{ label: 'Peach', id: 'peach' },
{ label: 'Plum', id: 'plum' },
{ label: 'Sky Blue', id: 'Sky Blue' },
//
{ label: 'Avocado', id: 'avocado' },
{ label: 'Bastard Amber', id: 'bastardamber' },
{ label: 'Bisque', id: 'bisque' },
{ label: 'Celadon', id: 'celadon' },
{ label: 'Cerulean', id: 'cerulean' },
{ label: 'Chartreuse', id: 'chartreuse' },
{ label: 'Coral', id: 'coral' },
{ label: 'Ecru', id: 'ecru' },
{ label: 'Edgecomb Gray', id: 'edgecombgray' },
{ label: 'Fuchsia', id: 'fuchsia' },
{ label: 'Fulvous', id: 'fulvous' },
{ label: 'Glaucous', id: 'glaucous' },
{ label: 'Grey', id: 'grey' },
{ label: 'Lilac', id: 'lilac' },
{ label: 'Maize', id: 'maize' },
{ label: 'Mauve', id: 'mauve' },
{ label: 'Ochre', id: 'ochre' },
{ label: 'Puce', id: 'puce' },
{ label: 'Rufous', id: 'rufous' },
{ label: 'Sage', id: 'sage' },
{ label: 'Scarlet', id: 'scarlet' },
{ label: 'Seafoam Green', id: 'seafoamgreen' },
{ label: 'Taupe', id: 'taupe' },
{ label: 'Verdigris', id: 'verdigris' },
{ label: 'Vermilion', id: 'vermilion' },
{ label: 'Viridian', id: 'viridian' },
{ label: 'Wenge', id: 'wenge' },
{ label: 'Zaffre', id: 'zaffre' },
]