We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5cc7945 + e69d038 commit 1b87107Copy full SHA for 1b87107
ui/src/androidMain/kotlin/kiwi/orbit/compose/ui/foundation/TextSelectionColors.kt
@@ -6,9 +6,9 @@ import androidx.compose.runtime.remember
6
7
@Composable
8
internal fun rememberTextSelectionColors(colors: Colors): TextSelectionColors =
9
- remember(colors.info.normal, colors.info.subtleAlt) {
+ remember(colors.info.normal) {
10
TextSelectionColors(
11
handleColor = colors.info.normal,
12
- backgroundColor = colors.info.subtleAlt,
+ backgroundColor = colors.info.normal.copy(alpha = 0.2f),
13
)
14
}
0 commit comments