theme.json - Universal-Team/pkmn-chest GitHub Wiki

In a theme.json you have the colors that are used for text and some solid color draws

  • The colors are strings, not numbers, this is so they can be in hex, though decimal number strings will parse correctly too
  • The colors are in ABGR15, you can convert from HTML style colors on this site

Example:

{
	"CLEAR": "0",
	"WHITE": "0xFBDE",
	"LIGHT_GRAY": "0xE739",
	"GRAY": "0xCA52",
	"DARKISH_GRAY": "0xBDEF",
	"DARK_GRAY": "0x98C6",
	"DARKER_GRAY": "0x94A5",
	"DARKERER_GRAY": "0x8842",
	"BLACK": "0x8000",
	"RED": "0x801E",
	"DARK_RED": "0x800F",
	"BLUE": "0xF800",
	"DARK_BLUE": "0xBC00",

	"WHITE_TEXT_1": "0x0000",
	"WHITE_TEXT_2": "0xFBDE",
	"WHITE_TEXT_3": "0xBDEF",
	"WHITE_TEXT_4": "0x0000",
	"GRAY_TEXT_1": "0x0000",
	"GRAY_TEXT_2": "0x8C63",
	"GRAY_TEXT_3": "0xCA52",
	"GRAY_TEXT_4": "0x0000",
	"RED_TEXT_1": "0x0000",
	"RED_TEXT_2": "0x801E",
	"RED_TEXT_3": "0x800F",
	"RED_TEXT_4": "0x0000",
	"BLUE_TEXT_1": "0x0000",
	"BLUE_TEXT_2": "0xF800",
	"BLUE_TEXT_3": "0xBC00",
	"BLUE_TEXT_4": "0x0000"
}