File tree Expand file tree Collapse file tree
app/src/main/java/com/mapcode Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -268,12 +268,12 @@ private fun pageColors(page: Int): PageColors {
268268 return when (page) {
269269 0 -> PageColors (
270270 foreground = LightBlue900 ,
271- background = LightBlue200 ,
271+ background = LightBlue100 ,
272272 backgroundDark = LightBlue500
273273 )
274274 else -> PageColors (
275275 foreground = Cyan900 ,
276- background = Cyan200 ,
276+ background = Cyan100 ,
277277 backgroundDark = Cyan500
278278 )
279279 }
Original file line number Diff line number Diff line change @@ -20,10 +20,12 @@ import androidx.compose.material.MaterialTheme
2020import androidx.compose.runtime.Composable
2121import androidx.compose.ui.graphics.Color
2222
23+ val LightBlue100 = Color (0xFFB3E5FC )
2324val LightBlue200 = Color (0xFF81D4FA )
2425val LightBlue500 = Color (0xFF03A9F4 )
2526val LightBlue700 = Color (0xFF0288D1 )
2627val LightBlue900 = Color (0xFF01579B )
28+ val Cyan100 = Color (0xFFB2EBF2 )
2729val Cyan200 = Color (0xFF80DEEA )
2830val Cyan500 = Color (0xFF00BCD4 )
2931val Cyan900 = Color (0xFF006064 )
You can’t perform that action at this time.
0 commit comments