Skip to content

Commit

Permalink
Use red instead of brown
Browse files Browse the repository at this point in the history
  • Loading branch information
JesseTG committed Oct 9, 2023
1 parent 7070989 commit 9642d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libretro/error.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ constexpr int TITLE_FONT_HEIGHT = 20; // in pixels
constexpr int BODY_FONT_HEIGHT = 18; // in pixels
constexpr int MARGIN = 8; // in pixels
constexpr pntr_color BACKGROUND_COLOR_TOP = {.b = 0xBC, .g = 0xB7, .r = 0xFA, .a = 0xFF}; // light pink
constexpr pntr_color TEXT_COLOR_TOP = {.b = 13, .g = 43, .r = 66, .a = 0xFF}; // dark pink
constexpr pntr_color TEXT_COLOR_TOP = {.b = 0x19, .g = 0x0F, .r = 0xD7, .a = 0xFF}; // dark red
constexpr pntr_color BACKGROUND_COLOR_BOTTOM = {.b = 0x36, .g = 0x7D, .r = 0x63, .a = 0xFF}; // dark green
constexpr pntr_color TEXT_COLOR_BOTTOM = {.b = 0x98, .g = 0xE5, .r = 0xE7, .a = 0xFF}; // light green

Expand Down

0 comments on commit 9642d04

Please sign in to comment.