Advertisement
Kitomas

_gfx_tables.h as of 2023-11-16

Nov 17th, 2023 (edited)
791
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 1.38 KB | None | 0 0
  1. #ifdef _UTILS_GFX_CPP
  2.  
  3.  
  4. SDL_Color _gfx_palette_default[32] = {
  5.   //text
  6.   {  36,  36,  36,  255 }, //clr_black
  7.   { 109, 109, 109,  255 }, //clr_dgray
  8.   { 182, 182, 182,  255 }, //clr_lgray
  9.   { 255, 255, 255,  255 }, //clr_white
  10.   { 217,  87,  87,  255 }, //clr_red
  11.   { 153, 229,  80,  255 }, //clr_green
  12.   {  39, 138, 248,  255 }, //clr_blue
  13.   {  79, 242, 255,  255 }, //clr_cyan
  14.   { 242,  16, 248,  255 }, //clr_magenta
  15.   { 251, 242,  54,  255 }, //clr_yellow
  16.   { 165,  99,  33,  255 }, //clr_brown
  17.   {  94, 133,  58,  255 }, //clr_moss
  18.   {  99, 155, 255,  255 }, //clr_lblue
  19.   {  74, 189, 143,  255 }, //clr_teal
  20.   { 143,  61, 218,  255 }, //clr_purple
  21.   { 255, 145,  79,  255 }, //clr_orange
  22.   //background
  23.   {   0,   0,   0,  255 }, //clr_black
  24.   {  73,  73,  73,  255 }, //clr_dgray
  25.   { 146, 146, 146,  255 }, //clr_lgray
  26.   { 219, 219, 219,  255 }, //clr_white
  27.   { 172,  50,  50,  255 }, //clr_red
  28.   { 106, 190,  48,  255 }, //clr_green
  29.   {  55,  75, 253,  255 }, //clr_blue
  30.   {   0, 204, 221,  255 }, //clr_cyan
  31.   { 204,   0, 204,  255 }, //clr_magenta
  32.   { 244, 202,  54,  255 }, //clr_yellow
  33.   { 120,  72,  24,  255 }, //clr_brown
  34.   {  75, 105,  47,  255 }, //clr_moss
  35.   {  91, 110, 225,  255 }, //clr_lblue
  36.   {  55, 148, 110,  255 }, //clr_teal
  37.   { 125,  38, 205,  255 }, //clr_purple
  38.   { 255, 116,  32,  255 }, //clr_orange
  39. };
  40.  
  41.  
  42. #endif /* _UTILS_GFX_CPP */
  43.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement