-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpalettes.ts
More file actions
26 lines (17 loc) · 924 Bytes
/
palettes.ts
File metadata and controls
26 lines (17 loc) · 924 Bytes
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
export const palettes: Record<string, string[] | null> = {
normal: null,
nes: [
'#7C7C7C', '#0000FC', '#0000BC', '#4428BC',
'#940084', '#A80020', '#A81000', '#881400',
'#503000', '#007800', '#006800', '#005800',
'#004058', '#000000', '#BCBCBC', '#FFFFFF',
],
gameboy: ['#0F380F', '#306230', '#8BAC0F', '#9BBC0F'],
grayscale: ['#000000', '#444444', '#888888', '#CCCCCC', '#FFFFFF'],
cga: ['#000000', '#55FFFF', '#FF55FF', '#FFFFFF'],
amiga: ['#000000', '#444400', '#008888', '#880088', '#888888', '#FFFFFF'],
commodore64: ['#000000', '#FFFFFF', '#880000', '#AAFFEE', '#CC44CC', '#00CC55', '#0000AA', '#EEEE77'],
sepia: ['#3E1F0D', '#7B3F1D', '#C57A3F', '#E6C29E', '#F1E3D3'],
solarized: ['#002b36', '#073642', '#586e75', '#657b83', '#839496', '#93a1a1', '#eee8d5', '#fdf6e3'],
pastel: ['#ffd1dc', '#ffb7ce', '#ffdae0', '#f6e1dc', '#fff5e1', '#d1f7ff', '#c2f0c2', '#ffe4e1'],
};