Skip to content

Commit

Permalink
Refactor colors
Browse files Browse the repository at this point in the history
  • Loading branch information
adityaarora1 committed Jul 3, 2024
1 parent 5e25fb4 commit 40cbb46
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ import androidx.compose.ui.graphics.Color
val ZeWhite = Color(0xFFFFFFFF)
val ZeGrey = Color(0xFF7E7E7E)
val ZeBlack = Color(0xFF000000)
val ZeTeal = Color(0xFF6200EE)
val ZePurple = Color(0xFF03DAC6)
val ZeCarmine = Color(0xFFB00020)
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ private val DarkColorScheme = darkColorScheme(
)

private val LightColorScheme = lightColorScheme(
primary = Color(0xFF6200EE),
secondary = Color(0xFF03DAC6),
onPrimary = Color.White,
onSecondary = Color.Black,
error = Color(0xFFB00020),
onError = Color.White,
background = Color.White,
onBackground = Color.Black,
primary = ZeTeal,
secondary = ZePurple,
onPrimary = ZeWhite,
onSecondary = ZeBlack,
error = ZeCarmine,
onError = ZeWhite,
background = ZeWhite,
onBackground = ZeBlack,
)

@Composable
Expand Down

0 comments on commit 40cbb46

Please sign in to comment.