forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCGA.js
More file actions
32 lines (31 loc) · 671 Bytes
/
Copy pathCGA.js
File metadata and controls
32 lines (31 loc) · 671 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
27
28
29
30
31
32
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2020 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* A 16 color CGA inspired palette by [Arne](http://androidarts.com/palette/16pal.htm)
*
* @name Phaser.Create.Palettes.CGA
* @since 3.0.0
*
* @type {Phaser.Types.Create.Palette}
*/
module.exports = {
0: '#000',
1: '#2234d1',
2: '#0c7e45',
3: '#44aacc',
4: '#8a3622',
5: '#5c2e78',
6: '#aa5c3d',
7: '#b5b5b5',
8: '#5e606e',
9: '#4c81fb',
A: '#6cd947',
B: '#7be2f9',
C: '#eb8a60',
D: '#e23d69',
E: '#ffd93f',
F: '#fff'
};