switch Colors
fun switchColors(checkedThumbColor: Color = if (isDynamicColor) LocalColors.current.onPrimary else COUITheme.colorScheme.onPrimary, uncheckedThumbColor: Color = if (isDynamicColor) LocalColors.current.onPrimary else COUITheme.colorScheme.onSecondary, disabledCheckedThumbColor: Color = if (isDynamicColor) LocalColors.current.surface else COUITheme.colorScheme.disabledOnPrimary, disabledUncheckedThumbColor: Color = COUITheme.colorScheme.disabledOnSecondary, checkedTrackColor: Color = COUITheme.colorScheme.primary, uncheckedTrackColor: Color = COUITheme.colorScheme.secondary, disabledCheckedTrackColor: Color = COUITheme.colorScheme.disabledPrimary, disabledUncheckedTrackColor: Color = COUITheme.colorScheme.disabledSecondary): SwitchColors
The default colors for the Switch. COUISwitch keeps the thumb white in both states.