From dbcdec7ac8729dddd3cc855a453589030ba67552 Mon Sep 17 00:00:00 2001 From: FOSSMan <137928236+0xFOSSMan@users.noreply.github.com> Date: Fri, 1 Sep 2023 22:49:18 +0200 Subject: [PATCH 1/8] Added Dracula Theme to Color.kt --- .../com/dessalines/thumbkey/ui/theme/Color.kt | 131 ++++++++++++++++++ 1 file changed, 131 insertions(+) diff --git a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt index 50cf0314..13a5fc6e 100644 --- a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt +++ b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt @@ -460,6 +460,8 @@ fun blue(): Pair { val md_theme_dark_outlineVariant = Color(0xFF3F484A) val md_theme_dark_scrim = Color(0xFF000000) + + val seed = Color(0xFF282828) val light = lightColorScheme( @@ -494,6 +496,134 @@ fun blue(): Pair { scrim = md_theme_light_scrim, ) + val dark = darkColorScheme( + primary = md_theme_dark_primary, + onPrimary = md_theme_dark_onPrimary, + primaryContainer = md_theme_dark_primaryContainer, + onPrimaryContainer = md_theme_dark_onPrimaryContainer, + secondary = md_theme_dark_secondary, + onSecondary = md_theme_dark_onSecondary, + secondaryContainer = md_theme_dark_secondaryContainer, + onSecondaryContainer = md_theme_dark_onSecondaryContainer, + tertiary = md_theme_dark_tertiary, + onTertiary = md_theme_dark_onTertiary, + tertiaryContainer = md_theme_dark_tertiaryContainer, + onTertiaryContainer = md_theme_dark_onTertiaryContainer, + error = md_theme_dark_error, + errorContainer = md_theme_dark_errorContainer, + onError = md_theme_dark_onError, + onErrorContainer = md_theme_dark_onErrorContainer, + background = md_theme_dark_background, + onBackground = md_theme_dark_onBackground, + surface = md_theme_dark_surface, + onSurface = md_theme_dark_onSurface, + surfaceVariant = md_theme_dark_surfaceVariant, + onSurfaceVariant = md_theme_dark_onSurfaceVariant, + outline = md_theme_dark_outline, + inverseOnSurface = md_theme_dark_inverseOnSurface, + inverseSurface = md_theme_dark_inverseSurface, + inversePrimary = md_theme_dark_inversePrimary, + surfaceTint = md_theme_dark_surfaceTint, + outlineVariant = md_theme_dark_outlineVariant, + scrim = md_theme_dark_scrim, + )} + fun dracula(): Pair { + val md_theme_light_primary = Color(0xFF4758A9) + val md_theme_light_onPrimary = Color(0xFFFFFFFF) + val md_theme_light_primaryContainer = Color(0xFFDDE1FF) + val md_theme_light_onPrimaryContainer = Color(0xFF001257) + val md_theme_light_secondary = Color(0xFF5A5D72) + val md_theme_light_onSecondary = Color(0xFFFFFFFF) + val md_theme_light_secondaryContainer = Color(0xFFDFE1F9) + val md_theme_light_onSecondaryContainer = Color(0xFF171B2C) + val md_theme_light_tertiary = Color(0xFF76546E) + val md_theme_light_onTertiary = Color(0xFFFFFFFF) + val md_theme_light_tertiaryContainer = Color(0xFFFFD7F2) + val md_theme_light_onTertiaryContainer = Color(0xFF2D1228) + val md_theme_light_error = Color(0xFFBA1A1A) + val md_theme_light_errorContainer = Color(0xFFFFDAD6) + val md_theme_light_onError = Color(0xFFFFFFFF) + val md_theme_light_onErrorContainer = Color(0xFF410002) + val md_theme_light_background = Color(0xFFFEFBFF) + val md_theme_light_onBackground = Color(0xFF1B1B1F) + val md_theme_light_surface = Color(0xFFFEFBFF) + val md_theme_light_onSurface = Color(0xFF1B1B1F) + val md_theme_light_surfaceVariant = Color(0xFFE3E1EC) + val md_theme_light_onSurfaceVariant = Color(0xFF45464F) + val md_theme_light_outline = Color(0xFF767680) + val md_theme_light_inverseOnSurface = Color(0xFFF3F0F4) + val md_theme_light_inverseSurface = Color(0xFF303034) + val md_theme_light_inversePrimary = Color(0xFFB9C3FF) + val md_theme_light_shadow = Color(0xFF000000) + val md_theme_light_surfaceTint = Color(0xFF4758A9) + val md_theme_light_outlineVariant = Color(0xFFC6C5D0) + val md_theme_light_scrim = Color(0xFF000000) + + val md_theme_dark_primary = Color(0xFFB9C3FF) + val md_theme_dark_onPrimary = Color(0xFF132778) + val md_theme_dark_primaryContainer = Color(0xFF2E4090) + val md_theme_dark_onPrimaryContainer = Color(0xFFDDE1FF) + val md_theme_dark_secondary = Color(0xFFC3C5DD) + val md_theme_dark_onSecondary = Color(0xFF2C2F42) + val md_theme_dark_secondaryContainer = Color(0xFF434659) + val md_theme_dark_onSecondaryContainer = Color(0xFFDFE1F9) + val md_theme_dark_tertiary = Color(0xFFE5BAD8) + val md_theme_dark_onTertiary = Color(0xFF44263E) + val md_theme_dark_tertiaryContainer = Color(0xFF5C3C55) + val md_theme_dark_onTertiaryContainer = Color(0xFFFFD7F2) + val md_theme_dark_error = Color(0xFFFFB4AB) + val md_theme_dark_errorContainer = Color(0xFF93000A) + val md_theme_dark_onError = Color(0xFF690005) + val md_theme_dark_onErrorContainer = Color(0xFFFFDAD6) + val md_theme_dark_background = Color(0xFF1B1B1F) + val md_theme_dark_onBackground = Color(0xFFE4E1E6) + val md_theme_dark_surface = Color(0xFF1B1B1F) + val md_theme_dark_onSurface = Color(0xFFE4E1E6) + val md_theme_dark_surfaceVariant = Color(0xFF45464F) + val md_theme_dark_onSurfaceVariant = Color(0xFFC6C5D0) + val md_theme_dark_outline = Color(0xFF90909A) + val md_theme_dark_inverseOnSurface = Color(0xFF1B1B1F) + val md_theme_dark_inverseSurface = Color(0xFFE4E1E6) + val md_theme_dark_inversePrimary = Color(0xFF4758A9) + val md_theme_dark_shadow = Color(0xFF000000) + val md_theme_dark_surfaceTint = Color(0xFFB9C3FF) + val md_theme_dark_outlineVariant = Color(0xFF45464F) + val md_theme_dark_scrim = Color(0xFF000000) + + val seed = Color(0xFF44475A) + + val light = lightColorScheme( + primary = md_theme_light_primary, + onPrimary = md_theme_light_onPrimary, + primaryContainer = md_theme_light_primaryContainer, + onPrimaryContainer = md_theme_light_onPrimaryContainer, + secondary = md_theme_light_secondary, + onSecondary = md_theme_light_onSecondary, + secondaryContainer = md_theme_light_secondaryContainer, + onSecondaryContainer = md_theme_light_onSecondaryContainer, + tertiary = md_theme_light_tertiary, + onTertiary = md_theme_light_onTertiary, + tertiaryContainer = md_theme_light_tertiaryContainer, + onTertiaryContainer = md_theme_light_onTertiaryContainer, + error = md_theme_light_error, + errorContainer = md_theme_light_errorContainer, + onError = md_theme_light_onError, + onErrorContainer = md_theme_light_onErrorContainer, + background = md_theme_light_background, + onBackground = md_theme_light_onBackground, + surface = md_theme_light_surface, + onSurface = md_theme_light_onSurface, + surfaceVariant = md_theme_light_surfaceVariant, + onSurfaceVariant = md_theme_light_onSurfaceVariant, + outline = md_theme_light_outline, + inverseOnSurface = md_theme_light_inverseOnSurface, + inverseSurface = md_theme_light_inverseSurface, + inversePrimary = md_theme_light_inversePrimary, + surfaceTint = md_theme_light_surfaceTint, + outlineVariant = md_theme_light_outlineVariant, + scrim = md_theme_light_scrim, + ) + val dark = darkColorScheme( primary = md_theme_dark_primary, onPrimary = md_theme_dark_onPrimary, @@ -525,5 +655,6 @@ fun blue(): Pair { outlineVariant = md_theme_dark_outlineVariant, scrim = md_theme_dark_scrim, ) + } return Pair(light, dark) } From 5e8a0cbed17a5deababea2ad41652fa2291e91f7 Mon Sep 17 00:00:00 2001 From: FOSSMan <137928236+0xFOSSMan@users.noreply.github.com> Date: Fri, 1 Sep 2023 22:50:10 +0200 Subject: [PATCH 2/8] Added Dracula theme to Theme.kt --- app/src/main/java/com/dessalines/thumbkey/ui/theme/Theme.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Theme.kt b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Theme.kt index 7b6aa69e..7282871e 100644 --- a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Theme.kt +++ b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Theme.kt @@ -35,6 +35,7 @@ fun ThumbkeyTheme( ThemeColor.Pink -> pink() ThemeColor.Srcery -> srcery() ThemeColor.Blue -> blue() + ThemeColor.Dracula -> dracula() } val systemTheme = if (!isSystemInDarkTheme()) { From 924b6d915d0fb844be652bc8d4c9b353465f0c52 Mon Sep 17 00:00:00 2001 From: FOSSMan <137928236+0xFOSSMan@users.noreply.github.com> Date: Sat, 2 Sep 2023 18:01:47 +0200 Subject: [PATCH 3/8] fixed typo hope this fixes it --- app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt index 13a5fc6e..d8096b45 100644 --- a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt +++ b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt @@ -654,7 +654,6 @@ fun blue(): Pair { surfaceTint = md_theme_dark_surfaceTint, outlineVariant = md_theme_dark_outlineVariant, scrim = md_theme_dark_scrim, - ) - } + )} return Pair(light, dark) } From 4ce3fdfe76235cd7c6fbf002c6ed19277761677f Mon Sep 17 00:00:00 2001 From: FOSSMan <137928236+0xFOSSMan@users.noreply.github.com> Date: Sat, 2 Sep 2023 18:09:24 +0200 Subject: [PATCH 4/8] next try i really should have learned a bit of kotlin before doing this --- app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt index d8096b45..b2dcd7f4 100644 --- a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt +++ b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt @@ -653,7 +653,7 @@ fun blue(): Pair { inversePrimary = md_theme_dark_inversePrimary, surfaceTint = md_theme_dark_surfaceTint, outlineVariant = md_theme_dark_outlineVariant, - scrim = md_theme_dark_scrim, + scrim = md_theme_dark_scrim )} return Pair(light, dark) } From bebbcc2e409618dfdfa127464f9359941786d1f4 Mon Sep 17 00:00:00 2001 From: 0xFOSSMan Date: Sat, 2 Sep 2023 18:17:08 +0200 Subject: [PATCH 5/8] fixed formatting in Color.kt --- .../java/com/dessalines/thumbkey/ui/theme/Color.kt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt index b2dcd7f4..476516a8 100644 --- a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt +++ b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt @@ -526,7 +526,9 @@ fun blue(): Pair { surfaceTint = md_theme_dark_surfaceTint, outlineVariant = md_theme_dark_outlineVariant, scrim = md_theme_dark_scrim, - )} + ) + return Pair(light, dark) +} fun dracula(): Pair { val md_theme_light_primary = Color(0xFF4758A9) val md_theme_light_onPrimary = Color(0xFFFFFFFF) @@ -624,7 +626,7 @@ fun blue(): Pair { scrim = md_theme_light_scrim, ) - val dark = darkColorScheme( + val dark = darkColorScheme( primary = md_theme_dark_primary, onPrimary = md_theme_dark_onPrimary, primaryContainer = md_theme_dark_primaryContainer, @@ -653,7 +655,7 @@ fun blue(): Pair { inversePrimary = md_theme_dark_inversePrimary, surfaceTint = md_theme_dark_surfaceTint, outlineVariant = md_theme_dark_outlineVariant, - scrim = md_theme_dark_scrim - )} + scrim = md_theme_dark_scrim, + ) return Pair(light, dark) } From 1015951337405d713559aa57abacfef5e34de200 Mon Sep 17 00:00:00 2001 From: 0xFOSSMan Date: Sat, 2 Sep 2023 18:28:06 +0200 Subject: [PATCH 6/8] finally fixed the errors --- .../com/dessalines/thumbkey/ui/theme/Color.kt | 132 +++++++++--------- 1 file changed, 65 insertions(+), 67 deletions(-) diff --git a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt index 476516a8..a45dceca 100644 --- a/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt +++ b/app/src/main/java/com/dessalines/thumbkey/ui/theme/Color.kt @@ -460,8 +460,6 @@ fun blue(): Pair { val md_theme_dark_outlineVariant = Color(0xFF3F484A) val md_theme_dark_scrim = Color(0xFF000000) - - val seed = Color(0xFF282828) val light = lightColorScheme( @@ -529,72 +527,72 @@ fun blue(): Pair { ) return Pair(light, dark) } - fun dracula(): Pair { - val md_theme_light_primary = Color(0xFF4758A9) - val md_theme_light_onPrimary = Color(0xFFFFFFFF) - val md_theme_light_primaryContainer = Color(0xFFDDE1FF) - val md_theme_light_onPrimaryContainer = Color(0xFF001257) - val md_theme_light_secondary = Color(0xFF5A5D72) - val md_theme_light_onSecondary = Color(0xFFFFFFFF) - val md_theme_light_secondaryContainer = Color(0xFFDFE1F9) - val md_theme_light_onSecondaryContainer = Color(0xFF171B2C) - val md_theme_light_tertiary = Color(0xFF76546E) - val md_theme_light_onTertiary = Color(0xFFFFFFFF) - val md_theme_light_tertiaryContainer = Color(0xFFFFD7F2) - val md_theme_light_onTertiaryContainer = Color(0xFF2D1228) - val md_theme_light_error = Color(0xFFBA1A1A) - val md_theme_light_errorContainer = Color(0xFFFFDAD6) - val md_theme_light_onError = Color(0xFFFFFFFF) - val md_theme_light_onErrorContainer = Color(0xFF410002) - val md_theme_light_background = Color(0xFFFEFBFF) - val md_theme_light_onBackground = Color(0xFF1B1B1F) - val md_theme_light_surface = Color(0xFFFEFBFF) - val md_theme_light_onSurface = Color(0xFF1B1B1F) - val md_theme_light_surfaceVariant = Color(0xFFE3E1EC) - val md_theme_light_onSurfaceVariant = Color(0xFF45464F) - val md_theme_light_outline = Color(0xFF767680) - val md_theme_light_inverseOnSurface = Color(0xFFF3F0F4) - val md_theme_light_inverseSurface = Color(0xFF303034) - val md_theme_light_inversePrimary = Color(0xFFB9C3FF) - val md_theme_light_shadow = Color(0xFF000000) - val md_theme_light_surfaceTint = Color(0xFF4758A9) - val md_theme_light_outlineVariant = Color(0xFFC6C5D0) - val md_theme_light_scrim = Color(0xFF000000) - - val md_theme_dark_primary = Color(0xFFB9C3FF) - val md_theme_dark_onPrimary = Color(0xFF132778) - val md_theme_dark_primaryContainer = Color(0xFF2E4090) - val md_theme_dark_onPrimaryContainer = Color(0xFFDDE1FF) - val md_theme_dark_secondary = Color(0xFFC3C5DD) - val md_theme_dark_onSecondary = Color(0xFF2C2F42) - val md_theme_dark_secondaryContainer = Color(0xFF434659) - val md_theme_dark_onSecondaryContainer = Color(0xFFDFE1F9) - val md_theme_dark_tertiary = Color(0xFFE5BAD8) - val md_theme_dark_onTertiary = Color(0xFF44263E) - val md_theme_dark_tertiaryContainer = Color(0xFF5C3C55) - val md_theme_dark_onTertiaryContainer = Color(0xFFFFD7F2) - val md_theme_dark_error = Color(0xFFFFB4AB) - val md_theme_dark_errorContainer = Color(0xFF93000A) - val md_theme_dark_onError = Color(0xFF690005) - val md_theme_dark_onErrorContainer = Color(0xFFFFDAD6) - val md_theme_dark_background = Color(0xFF1B1B1F) - val md_theme_dark_onBackground = Color(0xFFE4E1E6) - val md_theme_dark_surface = Color(0xFF1B1B1F) - val md_theme_dark_onSurface = Color(0xFFE4E1E6) - val md_theme_dark_surfaceVariant = Color(0xFF45464F) - val md_theme_dark_onSurfaceVariant = Color(0xFFC6C5D0) - val md_theme_dark_outline = Color(0xFF90909A) - val md_theme_dark_inverseOnSurface = Color(0xFF1B1B1F) - val md_theme_dark_inverseSurface = Color(0xFFE4E1E6) - val md_theme_dark_inversePrimary = Color(0xFF4758A9) - val md_theme_dark_shadow = Color(0xFF000000) - val md_theme_dark_surfaceTint = Color(0xFFB9C3FF) - val md_theme_dark_outlineVariant = Color(0xFF45464F) - val md_theme_dark_scrim = Color(0xFF000000) +fun dracula(): Pair { + val md_theme_light_primary = Color(0xFF4758A9) + val md_theme_light_onPrimary = Color(0xFFFFFFFF) + val md_theme_light_primaryContainer = Color(0xFFDDE1FF) + val md_theme_light_onPrimaryContainer = Color(0xFF001257) + val md_theme_light_secondary = Color(0xFF5A5D72) + val md_theme_light_onSecondary = Color(0xFFFFFFFF) + val md_theme_light_secondaryContainer = Color(0xFFDFE1F9) + val md_theme_light_onSecondaryContainer = Color(0xFF171B2C) + val md_theme_light_tertiary = Color(0xFF76546E) + val md_theme_light_onTertiary = Color(0xFFFFFFFF) + val md_theme_light_tertiaryContainer = Color(0xFFFFD7F2) + val md_theme_light_onTertiaryContainer = Color(0xFF2D1228) + val md_theme_light_error = Color(0xFFBA1A1A) + val md_theme_light_errorContainer = Color(0xFFFFDAD6) + val md_theme_light_onError = Color(0xFFFFFFFF) + val md_theme_light_onErrorContainer = Color(0xFF410002) + val md_theme_light_background = Color(0xFFFEFBFF) + val md_theme_light_onBackground = Color(0xFF1B1B1F) + val md_theme_light_surface = Color(0xFFFEFBFF) + val md_theme_light_onSurface = Color(0xFF1B1B1F) + val md_theme_light_surfaceVariant = Color(0xFFE3E1EC) + val md_theme_light_onSurfaceVariant = Color(0xFF45464F) + val md_theme_light_outline = Color(0xFF767680) + val md_theme_light_inverseOnSurface = Color(0xFFF3F0F4) + val md_theme_light_inverseSurface = Color(0xFF303034) + val md_theme_light_inversePrimary = Color(0xFFB9C3FF) + val md_theme_light_shadow = Color(0xFF000000) + val md_theme_light_surfaceTint = Color(0xFF4758A9) + val md_theme_light_outlineVariant = Color(0xFFC6C5D0) + val md_theme_light_scrim = Color(0xFF000000) - val seed = Color(0xFF44475A) + val md_theme_dark_primary = Color(0xFFB9C3FF) + val md_theme_dark_onPrimary = Color(0xFF132778) + val md_theme_dark_primaryContainer = Color(0xFF2E4090) + val md_theme_dark_onPrimaryContainer = Color(0xFFDDE1FF) + val md_theme_dark_secondary = Color(0xFFC3C5DD) + val md_theme_dark_onSecondary = Color(0xFF2C2F42) + val md_theme_dark_secondaryContainer = Color(0xFF434659) + val md_theme_dark_onSecondaryContainer = Color(0xFFDFE1F9) + val md_theme_dark_tertiary = Color(0xFFE5BAD8) + val md_theme_dark_onTertiary = Color(0xFF44263E) + val md_theme_dark_tertiaryContainer = Color(0xFF5C3C55) + val md_theme_dark_onTertiaryContainer = Color(0xFFFFD7F2) + val md_theme_dark_error = Color(0xFFFFB4AB) + val md_theme_dark_errorContainer = Color(0xFF93000A) + val md_theme_dark_onError = Color(0xFF690005) + val md_theme_dark_onErrorContainer = Color(0xFFFFDAD6) + val md_theme_dark_background = Color(0xFF1B1B1F) + val md_theme_dark_onBackground = Color(0xFFE4E1E6) + val md_theme_dark_surface = Color(0xFF1B1B1F) + val md_theme_dark_onSurface = Color(0xFFE4E1E6) + val md_theme_dark_surfaceVariant = Color(0xFF45464F) + val md_theme_dark_onSurfaceVariant = Color(0xFFC6C5D0) + val md_theme_dark_outline = Color(0xFF90909A) + val md_theme_dark_inverseOnSurface = Color(0xFF1B1B1F) + val md_theme_dark_inverseSurface = Color(0xFFE4E1E6) + val md_theme_dark_inversePrimary = Color(0xFF4758A9) + val md_theme_dark_shadow = Color(0xFF000000) + val md_theme_dark_surfaceTint = Color(0xFFB9C3FF) + val md_theme_dark_outlineVariant = Color(0xFF45464F) + val md_theme_dark_scrim = Color(0xFF000000) + + val seed = Color(0xFF44475A) - val light = lightColorScheme( + val light = lightColorScheme( primary = md_theme_light_primary, onPrimary = md_theme_light_onPrimary, primaryContainer = md_theme_light_primaryContainer, @@ -626,7 +624,7 @@ fun blue(): Pair { scrim = md_theme_light_scrim, ) - val dark = darkColorScheme( + val dark = darkColorScheme( primary = md_theme_dark_primary, onPrimary = md_theme_dark_onPrimary, primaryContainer = md_theme_dark_primaryContainer, From ac3a7cd02ed33a20a5448733a93249c40c8c8fa0 Mon Sep 17 00:00:00 2001 From: 0xFOSSMan Date: Tue, 5 Sep 2023 15:39:04 +0200 Subject: [PATCH 7/8] Added string for dracula theme in strings.xml --- app/src/main/res/values/strings.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 385ab47a..7159f160 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -9,6 +9,7 @@ Pink Srcery Blue + Dracula Center Right Left From 3815cd2849eb5461ba8e423c305174de7edd719d Mon Sep 17 00:00:00 2001 From: 0xFOSSMan Date: Tue, 5 Sep 2023 15:49:35 +0200 Subject: [PATCH 8/8] fixed 'unresolved reference: Dracula' in Types.kt --- app/src/main/java/com/dessalines/thumbkey/utils/Types.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/java/com/dessalines/thumbkey/utils/Types.kt b/app/src/main/java/com/dessalines/thumbkey/utils/Types.kt index 99c29c22..588ea9d3 100644 --- a/app/src/main/java/com/dessalines/thumbkey/utils/Types.kt +++ b/app/src/main/java/com/dessalines/thumbkey/utils/Types.kt @@ -83,6 +83,7 @@ enum class ThemeColor(private val stringId: Int) { Pink(R.string.pink), Srcery(R.string.srcery), Blue(R.string.blue), + Dracula(R.string.dracula), ; @Composable