Skip to content

Commit

Permalink
Attempt 2 on solving issue LemmyNet#661
Browse files Browse the repository at this point in the history
Changed the code to an integer
  • Loading branch information
Schoolkid1 committed Aug 11, 2023
1 parent 1f6109a commit 411ede9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/jerboa/ui/theme/Color.kt
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ fun blue(): Pair<JerboaColorScheme, JerboaColorScheme> {
val md_theme_dark_inverseOnSurface = Color(0xFF1A1C20)
val md_theme_dark_inverseSurface = Color(0xFFE0E4EB)
val md_theme_dark_inversePrimary = Color(0xFF3161A6)
val toolbar.setBackgroundColor(0xFF000000)
val toolbar.setBackgroundColor(0xFF000000.toInt())
// val md_theme_dark_shadow = Color(0xFF000000)
val md_theme_dark_surfaceTint = Color(0xFFB0D0FF)
val md_theme_dark_outlineVariant = Color(0xFF434851)
Expand Down

0 comments on commit 411ede9

Please sign in to comment.