Skip to content
Snippets Groups Projects
Commit 4eec5990 authored by Sebastian's avatar Sebastian
Browse files

Use lighter colors for profile image outlines

parent 92f6a8ec
No related branches found
No related tags found
1 merge request!24Implement identicons and display as profile images
Pipeline #7763 passed
...@@ -9,7 +9,7 @@ import androidx.compose.runtime.Composable ...@@ -9,7 +9,7 @@ import androidx.compose.runtime.Composable
import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.Color
val Colors.divider: Color get() = if (isLight) Gray300 else Gray800 val Colors.divider: Color get() = if (isLight) Gray300 else Gray800
val Colors.outline: Color get() = if (isLight) Color.Black else Color.White val Colors.outline: Color get() = if (isLight) Gray900 else Gray200
val Colors.surfaceVariant: Color get() = if (isLight) Gray100 else Gray950 val Colors.surfaceVariant: Color get() = if (isLight) Gray100 else Gray950
val Colors.sidebarSurface: Color get() = if (isLight) Gray200 else Gray900 val Colors.sidebarSurface: Color get() = if (isLight) Gray200 else Gray900
val Colors.selectedCard: Color get() = if (isLight) Gray400 else Gray700 val Colors.selectedCard: Color get() = if (isLight) Gray400 else Gray700
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment