Skip to content

Commit

Permalink
Removed alpha to make colors more vibrant. (#175)
Browse files Browse the repository at this point in the history
Slightly increased font size.
  • Loading branch information
MiranDMC committed Aug 1, 2024
1 parent 0ac620f commit 57306e1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cleo_plugins/DebugUtils/SA.DebugUtils.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ LegacyDebugOpcodes=0
Level=2
MessageTime=3000
MessagesMax=45
FontSize=40
FontSize=45
8 changes: 4 additions & 4 deletions cleo_plugins/DebugUtils/ScreenLog.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ class ScreenLog
DWORD timeFadeout; // miliseconds

const CRGBA fontColor[4] = { // colors for eLogLevel
CRGBA(0xDD, 0xDD, 0xDD, 0xF0), // None
CRGBA(0xFF, 0x30, 0x30, 0xF0), // Error
CRGBA(0xFF, 0xEE, 0x30, 0xF0), // User
CRGBA(0xDD, 0xDD, 0xDD, 0xF0), // Default
CRGBA(0xDD, 0xDD, 0xDD, 0xFF), // None
CRGBA(0xFF, 0x30, 0x30, 0xFF), // Error
CRGBA(0xFF, 0xEE, 0x30, 0xFF), // User
CRGBA(0xDD, 0xDD, 0xDD, 0xFF), // Default
};

struct Entry
Expand Down

0 comments on commit 57306e1

Please sign in to comment.