phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
33 lines (31 loc) • 689 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 Japanese computers like the MSX.
*
* @name Phaser.Create.Palettes.MSX
* @since 3.0.0
*
* @type {Palette}
*/
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: '#fff'
};