🎨 KMP Kolor Picker
A customizable color picker component for Compose Multiplatform with hue slider, alpha slider and 2D color selection.

Supported platforms
| Platform | Support |
|---|
| Android | ✅ |
| iOS | ✅ |
| Desktop |
Installation

repositories {
mavenCentral()
}
dependencies {
implementation("com.kborowy:kolor-picker:<latest-version>")
}
Usage
var selectedColor by remember { mutableStateOf(Color(red = 120, green = 194, blue = 87)) }
KolorPicker(
initialColor = selectedColor,
onColorSelected = { selectedColor = it },
pickerConfig = PickerConfig.Default,
alphaTrackConfig = TrackConfig.Default,
hueTrackConfig = TrackConfig.Default,
modifier = Modifier.width(250.dp).height(200.dp),
)
See API page for full specification.
License
Copyright 2025 Krzysztof Borowy
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance the License.
You may obtain a copy of the License at
http:
Unless applicable law agreed to writing, software
distributed under the License distributed an BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express implied.
See the License the specific language governing permissions
limitations under the License.