Skip to content

Commit b287013

Browse files
author
sds100
committed
#49 feat: lighten onboarding background colors
1 parent 0566d38 commit b287013

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

app/src/main/java/com/mapcode/onboarding/OnboardingScreen.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

app/src/main/java/com/mapcode/theme/Color.kt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ import androidx.compose.material.MaterialTheme
2020
import androidx.compose.runtime.Composable
2121
import androidx.compose.ui.graphics.Color
2222

23+
val LightBlue100 = Color(0xFFB3E5FC)
2324
val LightBlue200 = Color(0xFF81D4FA)
2425
val LightBlue500 = Color(0xFF03A9F4)
2526
val LightBlue700 = Color(0xFF0288D1)
2627
val LightBlue900 = Color(0xFF01579B)
28+
val Cyan100 = Color(0xFFB2EBF2)
2729
val Cyan200 = Color(0xFF80DEEA)
2830
val Cyan500 = Color(0xFF00BCD4)
2931
val Cyan900 = Color(0xFF006064)

0 commit comments

Comments
 (0)