Toggles
Toggles

Color Swatch

Selectable colored swatches where the active color gains a surrounding ring.

Installation

caveui components are copy-paste Jetpack Compose built entirely on Material 3 — there's no caveui dependency to add. Make sure Material 3 is on your classpath (it ships with the Compose BOM), then copy the Usage snippet below into your project.

kotlin
// build.gradle.kts (module)
dependencies {
    implementation(platform("androidx.compose:compose-bom:2025.06.00"))
    implementation("androidx.compose.material3:material3")
}

Usage

kotlin
@Composable
fun ColorSwatchGroup() {
  val swatches = listOf(
    Color(0xFFEF4444),
    Color(0xFF22C55E),
    Color(0xFF3B82F6),
  )
  var selected by remember { mutableStateOf(0) }
  Row(horizontalArrangement = Arrangement.spacedBy(12.dp)) {
    swatches.forEachIndexed { index, swatch ->
      val active = index == selected
      Box(
        modifier = Modifier
          .size(28.dp)
          .clip(CircleShape)
          .background(swatch)
          .border(
            width = if (active) 3.dp else 0.dp,
            color = MaterialTheme.colorScheme.onSurface,
            shape = CircleShape,
          )
          .clickable { selected = index },
      )
    }
  }
}