Skip to content

Commit 827c023

Browse files
committed
chore: update color theme
1 parent 96bc361 commit 827c023

File tree

1 file changed

+5
-7
lines changed
  • app/src/main/java/to/bitkit/ui/theme

1 file changed

+5
-7
lines changed

app/src/main/java/to/bitkit/ui/theme/Theme.kt

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,16 @@ import androidx.compose.runtime.Stable
1111
import androidx.compose.ui.Modifier
1212
import androidx.compose.ui.graphics.Color
1313

14-
val Gray100 = Color(0xFFF4F4F4)
15-
val Gray900 = Color(0xFF212121)
16-
1714
private object ColorPalette {
1815
@Stable
1916
val Light = lightColorScheme(
2017
primary = Colors.White,
2118
secondary = Colors.White64,
2219
background = Colors.Black,
2320
surface = Color.White,
24-
surfaceVariant = Gray100,
25-
outline = Gray100,
26-
outlineVariant = Gray100, // divider default
21+
surfaceVariant = Colors.Gray1,
22+
outline = Colors.Gray1,
23+
outlineVariant = Colors.Gray1, // divider default
2724
// Other default colors to override
2825
/*
2926
onPrimary = Color.White,
@@ -41,8 +38,9 @@ private object ColorPalette {
4138
surface = Colors.Black, // Color(0xFF101010),
4239
onBackground = Colors.White,
4340
onSurface = Colors.White, // Colors.Gray6,
44-
surfaceVariant = Gray900,
41+
surfaceVariant = Colors.Gray6,
4542
surfaceContainer = Colors.White16,
43+
surfaceContainerHighest = Colors.White16, // card default
4644
onPrimary = Colors.Black,
4745
onSecondary = Colors.White,
4846
outlineVariant = Colors.White10, // divider default

0 commit comments

Comments
 (0)