Skip to content

Commit

Permalink
Add missing secondVariant
Browse files Browse the repository at this point in the history
  • Loading branch information
cl3m committed Mar 30, 2022
1 parent f746bac commit 4bf0751
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ actual fun darkColors(
onBackground: Color,
onSurface: Color,
onError: Color
): Colors = _darkColors(primary = primary, primaryVariant = primaryVariant, secondary = secondary, background = background,
): Colors = _darkColors(primary = primary, primaryVariant = primaryVariant, secondary = secondary, secondaryVariant = secondaryVariant, background = background,
surface = surface, error = error, onPrimary = onPrimary, onSecondary = onSecondary, onBackground = onBackground,
onSurface = onSurface, onError = onError)

Expand All @@ -38,4 +38,4 @@ actual fun lightColors(
onError: Color
): Colors = _lightColors(primary = primary, primaryVariant = primaryVariant, secondary = secondary, secondaryVariant = secondaryVariant, background = background,
surface = surface, error = error, onPrimary = onPrimary, onSecondary = onSecondary, onBackground = onBackground,
onSurface = onSurface, onError = onError)
onSurface = onSurface, onError = onError)

0 comments on commit 4bf0751

Please sign in to comment.