Skip to content

Commit

Permalink
Typo in quaternary
Browse files Browse the repository at this point in the history
  • Loading branch information
aditi-bhatia committed Feb 28, 2024
1 parent 7e851b6 commit 1912333
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fun DesignSystemColorsScreen(
ColorOption("Primary", MaterialTheme.colorScheme.primaryContainer),
ColorOption("Secondary", MaterialTheme.colorScheme.secondaryContainer),
ColorOption("Tertiary", MaterialTheme.colorScheme.tertiaryContainer),
ColorOption("Quartenary", MaterialTheme.colorScheme.quartenaryContainer),
ColorOption("Quaternary", MaterialTheme.colorScheme.quaternaryContainer),
ColorOption("Brand", MaterialTheme.colorScheme.brandContainer),
ColorOption("WP", MaterialTheme.colorScheme.wpContainer),
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private val paletteDarkScheme = darkColorScheme(
)

private val extraPaletteLight = ExtraColors(
quartenaryContainer = DesignSystemAppColor.Gray30,
quaternaryContainer = DesignSystemAppColor.Gray30,
brand = DesignSystemAppColor.Green,
brandContainer = DesignSystemAppColor.Green,
warning = DesignSystemAppColor.Orange,
Expand All @@ -73,7 +73,7 @@ private val extraPaletteLight = ExtraColors(
)

private val extraPaletteDark = ExtraColors(
quartenaryContainer = DesignSystemAppColor.Gray60,
quaternaryContainer = DesignSystemAppColor.Gray60,
brand = DesignSystemAppColor.Green10,
brandContainer = DesignSystemAppColor.Green20,
warning = DesignSystemAppColor.Orange10,
Expand All @@ -82,18 +82,18 @@ private val extraPaletteDark = ExtraColors(
)

data class ExtraColors(
val quartenaryContainer: Color,
val quaternaryContainer: Color,
val brand: Color,
val brandContainer: Color,
val warning: Color,
val wp: Color,
val wpContainer: Color,
)
@Suppress("UnusedReceiverParameter")
val ColorScheme.quartenaryContainer
val ColorScheme.quaternaryContainer
@Composable
@ReadOnlyComposable
get() = localColors.current.quartenaryContainer
get() = localColors.current.quaternaryContainer

@Suppress("UnusedReceiverParameter")
val ColorScheme.brand
Expand Down

0 comments on commit 1912333

Please sign in to comment.