Skip to content

Instantly share code, notes, and snippets.

@egordorichev
Last active October 23, 2020 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save egordorichev/786aaf0588e600310f4604a177ae4281 to your computer and use it in GitHub Desktop.
Save egordorichev/786aaf0588e600310f4604a177ae4281 to your computer and use it in GitHub Desktop.
Pico8 palette
static SDL_Color palette[] = {
{ 0, 0, 0, 255 },
{ 29, 43, 83, 255 },
{ 126, 37, 83, 255 },
{ 0, 135, 81, 255 },
{ 171, 82, 54, 255 },
{ 95, 87, 79, 255 },
{ 194, 195, 199, 255 },
{ 255, 241, 232, 255 },
{ 255, 0, 77, 255 },
{ 255, 163, 0, 255 },
{ 255, 236, 39, 255 },
{ 0, 228, 54, 255 },
{ 41, 173, 255, 255 },
{ 131, 118, 156, 255 },
{ 255, 119, 168, 255 },
{ 255, 204, 170, 255 }
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment