Skip to content

Commit 619536d

Browse files
authored
Update Models.kt
1 parent f0ed07c commit 619536d

1 file changed

Lines changed: 11 additions & 2 deletions

File tree

  • source-code/app/src/main/java/com/hackeros/app/data/model

source-code/app/src/main/java/com/hackeros/app/data/model/Models.kt

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ data class GalleryImage(
3131
)
3232

3333
enum class AppScreen {
34-
RELEASES, WALLPAPERS, GALLERY, DOCS, TEAM, SETTINGS
34+
RELEASES, WALLPAPERS, GALLERY, DOCS, GAMES_STORE, TEAM, SETTINGS
3535
}
3636

3737
enum class ThemeId(val themeName: String) {
@@ -44,7 +44,16 @@ enum class ThemeId(val themeName: String) {
4444
SUNSET("Solar Flare"),
4545
MATRIX("The Construct"),
4646
CRIMSON("Red Alert"),
47-
ROYAL("Luxury Gold")
47+
ROYAL("Luxury Gold"),
48+
// New in v0.6.
49+
VIOLET("Ultraviolet"),
50+
TEAL("Cool Mint"),
51+
ROSE("Blackout Rose"),
52+
STEEL("Steel Blue"),
53+
// A user-defined theme built from their own chosen colors (see CustomThemeDialog). Its
54+
// actual colors live in PreferencesRepository, not in the static THEMES map, since they're
55+
// per-user data rather than a fixed built-in palette.
56+
CUSTOM("Custom")
4857
}
4958

5059
enum class Language(val code: String, val displayName: String, val flag: String) {

0 commit comments

Comments
 (0)