Metadata-Version: 2.4
Name: cocapn-colora
Version: 0.2.1
Summary: 🎨 Cocapn theme engine — brand colors, palette generation, lighthouse gradients
Author: Cocapn
License: MIT
Project-URL: Homepage, https://cocapn.github.io
Project-URL: Repository, https://github.com/cocapn/cocapn-colora
Keywords: cocapn,colors,theme,brand,palette
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# 🎨 Cocapn Colora

> Theme engine — brand colors, palette generation, lighthouse gradients

Cocapn's official color system. Brand palettes, lighthouse beacon gradients, fleet agent colors, and deterministic theme generation from any string.

## Install

```bash
pip install cocapn-colora
```

## Quick Start

### Generate a Theme

```python
from cocapn_colora import generate_theme

theme = generate_theme("#0ea5e9", name="lighthouse")
print(theme.primary)    # #0ea5e9
print(theme.accent)     # complementary color
print(theme.background) # dark variant
```

### Brand Colors

```python
from cocapn_colora import fleet_colors, lighthouse_gradient, COCAPN_PALETTE

for agent, color in fleet_colors().items():
    print(f"{agent}: {color}")

gradient = lighthouse_gradient(steps=10)
print(gradient)
```

### Deterministic Palettes

```python
from cocapn_colora.palette import palette_from_string

colors = palette_from_string("my-agent-name")
# {"primary": "#...", "secondary": "#...", ...}
```

## Part of [Cocapn](https://github.com/cocapn) · Agent Infrastructure
