Skip to content

Commit

Permalink
Add Light blue and light red to uiColor
Browse files Browse the repository at this point in the history
  • Loading branch information
realSquidCoder committed Feb 1, 2025
1 parent cb0c39f commit 4ce7628
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions SpriteColors.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -322,6 +322,12 @@ ALLEGRO_COLOR uiColor(int32_t index)
case 3:
//lime
return ssConfig.config.colors.getDfColor(dfColors::lgreen, ssConfig.config.useDfColors);
case 4:
//light blue
return ssConfig.config.colors.getDfColor(dfColors::lblue, ssConfig.config.useDfColors);
case 5:
//light red
return ssConfig.config.colors.getDfColor(dfColors::lred, ssConfig.config.useDfColors);
default:
//white
return ssConfig.config.colors.getDfColor(dfColors::white, ssConfig.config.useDfColors);
Expand Down

0 comments on commit 4ce7628

Please sign in to comment.