Skip to content

Commit

Permalink
fixed inversed colors of surface for light theme
Browse files Browse the repository at this point in the history
  • Loading branch information
brais authored and Profpatsch committed Nov 20, 2024
1 parent 13585ca commit 2eb85bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/main/java/org/schabi/newpipe/ui/theme/Color.kt
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ val md_theme_light_onError = Color(0xFFFFFFFF)
val md_theme_light_onErrorContainer = Color(0xFF410002)
val md_theme_light_background = Color(0xFFEEEEEE)
val md_theme_light_onBackground = Color(0xFF1B1B1B)
val md_theme_light_surface = Color(0xFFE53835)
val md_theme_light_onSurface = Color(0xFFFFFFFF)
val md_theme_light_surface = Color(0xFFFFFFFF)
val md_theme_light_onSurface = Color(0xFFE53835)
val md_theme_light_surfaceVariant = Color(0xFFF5DDDB)
val md_theme_light_onSurfaceVariant = Color(0xFF534341)
val md_theme_light_outline = Color(0xFF857371)
Expand Down

0 comments on commit 2eb85bd

Please sign in to comment.