phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
33 lines (31 loc) • 674 B
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
/**
* A 16 color palette inspired by the Commodore 64.
*
* @name Phaser.Create.Palettes.C64
* @since 3.0.0
*
* @type {Palette}
*/
module.exports = {
0: '#000',
1: '#fff',
2: '#8b4131',
3: '#7bbdc5',
4: '#8b41ac',
5: '#6aac41',
6: '#3931a4',
7: '#d5de73',
8: '#945a20',
9: '#5a4100',
A: '#bd736a',
B: '#525252',
C: '#838383',
D: '#acee8b',
E: '#7b73de',
F: '#acacac'
};