-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpalettes.js
More file actions
30 lines (29 loc) · 1.65 KB
/
palettes.js
File metadata and controls
30 lines (29 loc) · 1.65 KB
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
/** @typedef {{ name: string, colors: [string, string, string] }} ColorPalette */
/**
* Predefined 3-colour palettes, shared by the Studio and Batch tools.
*
* Each palette has exactly three colours. Both tools map them onto the six
* cube faces by repeating the trio (right/left/top, then bottom/front/back),
* so a palette looks identical in either tool.
*
* This is the single source of truth — edit palettes here only.
*
* @type {ColorPalette[]}
*/
export const COLOR_PALETTES = [
{ name: 'orange-yellow-pink', colors: ['#FFCC00', '#F39FFF', '#FF5E00'] },
{ name: 'orange-lightblue-green', colors: ['#C6D1E1', '#86AF25', '#FF5E00'] },
{ name: 'orange-pink-purple', colors: ['#F39FFF', '#9D9CFF', '#FF5E00'] },
{ name: 'orange-purple-yellow', colors: ['#9D9CFF', '#FFCC00', '#FF5E00'] },
{ name: 'orange-lightblue-blue', colors: ['#C6D1E1', '#5074EF', '#FF5E00'] },
{ name: 'orange-lightblue-pink', colors: ['#C6D1E1', '#F39FFF', '#FF5E00'] },
{ name: 'orange-mediumorange-green', colors: ['#6E1527', '#86AF25', '#FF5E00'] },
{ name: 'orange-mediumorange-purple', colors: ['#6E1527', '#9D9CFF', '#FF5E00'] },
{ name: 'orange-mediumorange-yellow', colors: ['#6E1527', '#FFCC00', '#FF5E00'] },
{ name: 'orange-tan-blue', colors: ['#998B7A', '#5074EF', '#FF5E00'] },
{ name: 'orange-purple-pink', colors: ['#9D9CFF', '#F39FFF', '#FF5E00'] },
{ name: 'orange-blue-green', colors: ['#5074EF', '#86AF25', '#FF5E00'] },
{ name: 'orange-green-purple', colors: ['#86AF25', '#9D9CFF', '#FF5E00'] },
{ name: 'orange-lightblue-yellow', colors: ['#C6D1E1', '#FFCC00', '#FF5E00'] },
{ name: 'orange-yellow-blue', colors: ['#FFCC00', '#5074EF', '#FF5E00'] },
];