diff --git a/platform/jewel/int-ui/int-ui-standalone/src/main/kotlin/org/jetbrains/jewel/intui/standalone/styling/IntUiSimpleListItemStyling.kt b/platform/jewel/int-ui/int-ui-standalone/src/main/kotlin/org/jetbrains/jewel/intui/standalone/styling/IntUiSimpleListItemStyling.kt index 09f95aff7b87d..cdfe15133861d 100644 --- a/platform/jewel/int-ui/int-ui-standalone/src/main/kotlin/org/jetbrains/jewel/intui/standalone/styling/IntUiSimpleListItemStyling.kt +++ b/platform/jewel/int-ui/int-ui-standalone/src/main/kotlin/org/jetbrains/jewel/intui/standalone/styling/IntUiSimpleListItemStyling.kt @@ -7,6 +7,7 @@ import androidx.compose.ui.graphics.Color import androidx.compose.ui.unit.Dp import androidx.compose.ui.unit.dp import org.jetbrains.jewel.foundation.theme.JewelTheme +import org.jetbrains.jewel.intui.core.theme.IntUiDarkTheme import org.jetbrains.jewel.intui.core.theme.IntUiLightTheme import org.jetbrains.jewel.ui.component.styling.SimpleListItemColors import org.jetbrains.jewel.ui.component.styling.SimpleListItemMetrics @@ -63,8 +64,8 @@ public fun SimpleListItemColors.Companion.light( public fun SimpleListItemColors.Companion.dark( background: Color = Color.Unspecified, backgroundActive: Color = background, - backgroundSelected: Color = IntUiLightTheme.colors.gray(2), - backgroundSelectedActive: Color = IntUiLightTheme.colors.blue(2), + backgroundSelected: Color = IntUiDarkTheme.colors.gray(2), + backgroundSelectedActive: Color = IntUiDarkTheme.colors.blue(2), content: Color = Color.Unspecified, contentActive: Color = Color.Unspecified, contentSelected: Color = Color.Unspecified,