Update theme color (#31)

This commit is contained in:
timklge 2025-03-04 23:52:58 +01:00 committed by GitHub
parent 6e187c4e75
commit 04c6b341df
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,13 +1,22 @@
package de.timklge.karooreminder.theme
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.lightColorScheme
import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color
@Composable
fun AppTheme(
content: @Composable () -> Unit,
) {
val scheme = lightColorScheme(
primary = Color(0xFF214559),
secondary = Color(0xFF636363),
tertiary = Color(0xFFFEF69A),
)
MaterialTheme(
content = content,
colorScheme = scheme
)
}
}