forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJMP.js
More file actions
41 lines (41 loc) · 1.12 KB
/
Copy pathJMP.js
File metadata and controls
41 lines (41 loc) · 1.12 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
31
32
33
34
35
36
37
38
39
40
41
/**
* @constant
* @name Phaser.Create.Palettes.JMP
* @description A 16 color JMP palette by [Arne](http://androidarts.com/palette/16pal.htm)
* @type {object}
* @since 3.0.0
* @property {string} 0 - Color value 1.
* @property {string} 1 - Color value 2.
* @property {string} 2 - Color value 3.
* @property {string} 3 - Color value 4.
* @property {string} 4 - Color value 5.
* @property {string} 5 - Color value 6.
* @property {string} 6 - Color value 7.
* @property {string} 7 - Color value 8.
* @property {string} 8 - Color value 9.
* @property {string} 9 - Color value 10.
* @property {string} A - Color value 11.
* @property {string} B - Color value 12.
* @property {string} C - Color value 13.
* @property {string} D - Color value 14.
* @property {string} E - Color value 15.
* @property {string} F - Color value 16.
*/
module.exports = {
0: '#000',
1: '#191028',
2: '#46af45',
3: '#a1d685',
4: '#453e78',
5: '#7664fe',
6: '#833129',
7: '#9ec2e8',
8: '#dc534b',
9: '#e18d79',
A: '#d6b97b',
B: '#e9d8a1',
C: '#216c4b',
D: '#d365c8',
E: '#afaab9',
F: '#f5f4eb'
};