1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 23:36:00 +02:00

Added new color.

Added a new 'COLOR_TEXT_SELECTED' color and a 'mTextSelected' theme setting to change it.
This commit is contained in:
MineBill 2025-01-28 13:45:16 +02:00
parent 0744772e23
commit f0d5acb528
No known key found for this signature in database
3 changed files with 5 additions and 0 deletions

View file

@ -80,6 +80,7 @@ namespace Beefy.theme.dark
mHorzJumpSize = GS!(40);
mFont = DarkTheme.sDarkTheme?.mSmallFont;
mTextColors[0] = DarkTheme.COLOR_TEXT;
mHiliteColor = DarkTheme.COLOR_TEXT_SELECTED;
}
protected override EditWidgetContent.Data CreateEditData()

View file

@ -198,6 +198,7 @@ namespace Beefy.theme.dark
public static uint32 COLOR_TEXT = 0xFFFFFFFF;
public static uint32 COLOR_TEXT_DISABLED = 0xFFA8A8A8;
public static uint32 COLOR_TEXT_SELECTED = 0xFF2f5c88;
public static uint32 COLOR_WINDOW = 0xFF595962;
public static uint32 COLOR_BKG = 0xFF26262A;
public static uint32 COLOR_SELECTED_OUTLINE = 0xFFCFAE11;