Its almost working

This commit is contained in:
LucasGGamerM
2022-12-22 18:58:20 -03:00
parent 2169afa8e7
commit f0e7fc5e3b
2 changed files with 4 additions and 2 deletions

View File

@@ -98,7 +98,8 @@ public class GlobalUserPreferences{
BLUE, BLUE,
BROWN, BROWN,
RED, RED,
YELLOW YELLOW,
NORD
} }
public enum ThemePreference{ public enum ThemePreference{

View File

@@ -25,7 +25,8 @@ public class ColorPalette {
ColorPreference.BLUE, new ColorPalette(R.style.ColorPalette_Blue), ColorPreference.BLUE, new ColorPalette(R.style.ColorPalette_Blue),
ColorPreference.BROWN, new ColorPalette(R.style.ColorPalette_Brown), ColorPreference.BROWN, new ColorPalette(R.style.ColorPalette_Brown),
ColorPreference.RED, new ColorPalette(R.style.ColorPalette_Red), ColorPreference.RED, new ColorPalette(R.style.ColorPalette_Red),
ColorPreference.YELLOW, new ColorPalette(R.style.ColorPalette_Yellow) ColorPreference.YELLOW, new ColorPalette(R.style.ColorPalette_Yellow);
ColorPreference.NORD, new ColorPalette(R.style.ColorPalette_Nord)
); );
private @StyleRes int base; private @StyleRes int base;