Last active
October 23, 2020 13:13
-
-
Save egordorichev/786aaf0588e600310f4604a177ae4281 to your computer and use it in GitHub Desktop.
Pico8 palette
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 } | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment