Created
November 5, 2020 07:43
-
-
Save egordorichev/0182694b271f1ff744c1db0802930868 to your computer and use it in GitHub Desktop.
Full pico8 palette (32 colors)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }, | |
{ 41, 24, 2 }, | |
{ 17, 29, 53 }, | |
{ 66, 33, 54 }, | |
{ 18, 83, 89 }, | |
{ 116, 47, 41 }, | |
{ 73, 51, 59 }, | |
{ 162, 136, 121 }, | |
{ 243, 239, 125 }, | |
{ 190, 18, 80 }, | |
{ 255, 108, 36 }, | |
{ 168, 231, 46 }, | |
{ 0, 181, 67 }, | |
{ 6, 90, 181 }, | |
{ 117, 70, 101 }, | |
{ 255, 110, 89 }, | |
{ 255, 157, 129 } | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment