phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers from the team at Phaser Studio Inc.
33 lines (31 loc) • 671 B
JavaScript
/**
* @author Richard Davey <rich@phaser.io>
* @copyright 2013-2025 Phaser Studio Inc.
* @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'
};