Metadata-Version: 2.4
Name: als-computing-colors
Version: 1.0.1
Summary: ALS system design color palette for Python projects
Author: Hung Le
License-Expression: MIT
Project-URL: Homepage, https://github.com/Hungoliann/ALS-system-design-colors
Project-URL: Repository, https://github.com/Hungoliann/ALS-system-design-colors
Project-URL: Issues, https://github.com/Hungoliann/ALS-system-design-colors/issues
Keywords: colors,palette,als,design,matplotlib,plotly
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# ALS System Design Colors

ALS system design color palette — available as a Tailwind CSS preset (npm) and a Python library (PyPI).

## npm — Tailwind CSS preset

### Installation

```bash
npm install @als-computing/colors
```

### Usage

```js
// tailwind.config.js
const alsColors = require('@als-computing/colors')

module.exports = {
  presets: [alsColors],
}
```

---

## PyPI — Python library

### Installation

```bash
pip install als-computing-colors
```

### Usage

```python
from als_computing_colors import colors, primary, secondary, neutral, main

# Full palette dict
print(colors["primary"]["500"])   # '#166488'

# Convenience aliases
print(primary["300"])             # '#27A3DD'
print(secondary["600"])           # '#549EBB'
```

---

## Color Palette

| Scale | primary | secondary | neutral | main |
|-------|---------|-----------|---------|------|
| 300 | `#27A3DD` | `#C1DCE6` | `#F7F7F8` | `#123345` |
| 400 | `#1D84B4` | `#9CC7D8` | `#DCDDE0` | `#0F455E` |
| 500 | `#166488` | `#78B2C9` | `#C1C4C8` | `#0082AF` |
| 600 | `#0F455E` | `#549EBB` | `#A6AAB0` | `#549EBB` |
| 700 | `#082430` | `#3E829D` | `#8B9098` | `#86AABA` |
| 800 | `#010304` | `#306478` | `#71767F` | `#A6AAB0` |
| 900 | `#000000` | `#214654` | `#595D64` | `#B9B9B9` |

## License

MIT
