-
-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix background colors in App Bars #230 #236
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ val md_theme_light_primary = Color(0xFF934B00) | |
val md_theme_light_onPrimary = Color(0xFFFFFFFF) | ||
val md_theme_light_primaryContainer = Color(0xFFFFDCC5) | ||
val md_theme_light_onPrimaryContainer = Color(0xFF301400) | ||
val md_theme_light_secondary = Color(0xFF755945) | ||
val md_theme_light_secondary = Color(0xFF755945)// | ||
val md_theme_light_onSecondary = Color(0xFFFFFFFF) | ||
val md_theme_light_secondaryContainer = Color(0xFFFFDCC5) | ||
val md_theme_light_onSecondaryContainer = Color(0xFF2A1708) | ||
|
@@ -23,7 +23,7 @@ val md_theme_light_onBackground = Color(0xFF201A17) | |
val md_theme_light_surface = Color(0xFFFFFBFF) | ||
val md_theme_light_onSurface = Color(0xFF201A17) | ||
val md_theme_light_surfaceVariant = Color(0xFFF3DFD2) | ||
val md_theme_light_onSurfaceVariant = Color(0xFF52443B) | ||
val md_theme_light_onSurfaceVariant = Color(0xFF52443B)// | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Has this been included in the commit by mistake? |
||
val md_theme_light_outline = Color(0xFF84746A) | ||
val md_theme_light_inverseOnSurface = Color(0xFFFBEEE8) | ||
val md_theme_light_inverseSurface = Color(0xFF362F2B) | ||
|
@@ -38,7 +38,7 @@ val md_theme_dark_onPrimary = Color(0xFF4F2500) | |
val md_theme_dark_primaryContainer = Color(0xFF703800) | ||
val md_theme_dark_onPrimaryContainer = Color(0xFFFFDCC5) | ||
val md_theme_dark_secondary = Color(0xFFE4BFA7) | ||
val md_theme_dark_onSecondary = Color(0xFF422B1A) | ||
val md_theme_dark_onSecondary = Color(0xFF422B1A)// | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Has this been included in the commit by mistake? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ohh yeah sorry it was by mistake |
||
val md_theme_dark_secondaryContainer = Color(0xFF5B412F) | ||
val md_theme_dark_onSecondaryContainer = Color(0xFFFFDCC5) | ||
val md_theme_dark_tertiary = Color(0xFFC7CA95) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -63,7 +63,7 @@ private val DarkColors = darkColorScheme( | |
surfaceVariant = md_theme_dark_surfaceVariant, | ||
onSurfaceVariant = md_theme_dark_onSurfaceVariant, | ||
outline = md_theme_dark_outline, | ||
inverseOnSurface = md_theme_dark_inverseOnSurface, | ||
inverseOnSurface = md_theme_light_inverseSurface, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please don't modify this file. Also, this is incorrect: why assigning a light-themed color to a dark-themed variable? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ohh my bad I was changing the color to see the matching bottom bar color. |
||
inverseSurface = md_theme_dark_inverseSurface, | ||
inversePrimary = md_theme_dark_inversePrimary, | ||
surfaceTint = md_theme_dark_surfaceTint, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Has this been included in the commit by mistake?