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) • 668 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 palette inspired by the Commodore 64.
*
* @name Phaser.Create.Palettes.C64
* @since 3.0.0
*
* @type {Phaser.Types.Create.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'
};