Add a few color themes

This commit is contained in:
Damontecres 2025-10-09 19:51:55 -04:00
parent bb517e0857
commit 165fd80c0e
No known key found for this signature in database
13 changed files with 866 additions and 195 deletions

View file

@ -29,10 +29,18 @@ enum ThemeSongVolume {
HIGHEST = 5;
}
enum AppThemeColors {
PURPLE = 0;
BLUE = 1;
GREEN = 2;
ORANGE = 3;
}
message InterfacePreferences {
ThemeSongVolume play_theme_songs = 1;
bool remember_selected_tab = 2;
map<string, int32> remembered_tabs = 3;
AppThemeColors app_theme_colors = 4;
}
message AppPreferences {