---
title: Color Converter
description: Convert colors between hex, RGB, and HSL.
---

# Color Converter

Convert colors between hex, RGB, and HSL representations.

## Commands

```bash
devv color <value>
```

## Examples

```bash
# Hex to all formats
devv color "#ff6b35"
# HEX: #ff6b35
# RGB: rgb(255, 107, 53)
# HSL: hsl(16, 100%, 60%)

# Short hex
devv color "#f00"

# RGB input
devv color "rgb(100, 200, 50)"
```

## Output

All conversions return HEX, RGB, and HSL simultaneously.
