2022-01-10 03:58:46 +00:00
|
|
|
<h3 align="center">
|
2022-06-20 17:57:35 +00:00
|
|
|
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/logos/exports/1544x1544_circle.png" width="100" alt="Logo"/><br/>
|
2023-12-28 10:43:11 +00:00
|
|
|
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/misc/transparent.png" height="30" width="0px"/> Catppuccin Palettes
|
2022-06-20 17:57:35 +00:00
|
|
|
<img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/misc/transparent.png" height="30" width="0px"/>
|
2022-01-10 03:58:46 +00:00
|
|
|
</h3>
|
|
|
|
|
2021-11-07 04:16:09 +00:00
|
|
|
<p align="center">
|
2022-06-20 22:31:05 +00:00
|
|
|
<a href="https://github.com/catppuccin/palette/stargazers"><img src="https://img.shields.io/github/stars/catppuccin/palette?colorA=363a4f&colorB=b7bdf8&style=for-the-badge"></a>
|
2022-06-20 17:57:35 +00:00
|
|
|
<a href="https://github.com/catppuccin/palette/issues"><img src="https://img.shields.io/github/issues/catppuccin/palette?colorA=363a4f&colorB=f5a97f&style=for-the-badge"></a>
|
|
|
|
<a href="https://github.com/catppuccin/palette/contributors"><img src="https://img.shields.io/github/contributors/catppuccin/palette?colorA=363a4f&colorB=a6da95&style=for-the-badge"></a>
|
2021-11-07 04:16:09 +00:00
|
|
|
</p>
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
### Node
|
2022-05-16 00:26:37 +00:00
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
Get the [NPM package](https://www.npmjs.org/package/@catppuccin/palette):
|
2022-05-16 00:26:37 +00:00
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
```console
|
|
|
|
npm install @catppuccin/palette
|
2022-06-11 03:27:38 +00:00
|
|
|
```
|
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
```ts
|
|
|
|
import { flavors, flavorEntries } from "@catppuccin/palette";
|
|
|
|
import chalk from "chalk";
|
|
|
|
|
|
|
|
// an object containing all catppuccin flavors
|
|
|
|
console.log(flavors);
|
|
|
|
|
|
|
|
// typed helper when iterating flavors
|
|
|
|
flavorEntries.map(([_, flavor]) => {
|
|
|
|
console.log(`${flavor.name} is a ${flavor.dark ? "dark" : "light"} theme.`);
|
|
|
|
console.log(`It has ${flavor.colorEntries.length} colors:`);
|
|
|
|
|
|
|
|
// same for the colors
|
|
|
|
flavor.colorEntries.map(([colorName, { hex, rgb, accent }]) => {
|
|
|
|
console.log(
|
|
|
|
chalk.bgRgb(rgb.r, rgb.b, rgb.g)(` ${hex} `),
|
|
|
|
colorName,
|
|
|
|
accent
|
|
|
|
);
|
|
|
|
});
|
|
|
|
console.log("\n");
|
|
|
|
});
|
2022-05-16 00:26:37 +00:00
|
|
|
```
|
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
### Deno
|
2022-08-09 11:18:34 +00:00
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
The library gets published to [`deno.land/x/catppuccin`](https://deno.land/x/catppuccin).
|
2022-08-09 11:18:34 +00:00
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
```ts
|
|
|
|
import { flavors, flavorEntries } from "https://deno.land/x/catppuccin/mod.ts";
|
|
|
|
import { bgRgb24 } from "https://deno.land/std/fmt/colors.ts";
|
2022-08-09 11:18:34 +00:00
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
// an object containing all catppuccin flavors
|
|
|
|
console.log(flavors);
|
2021-12-12 00:05:05 +00:00
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
// typed helper when iterating flavors
|
|
|
|
flavorEntries.map(([_, flavor]) => {
|
|
|
|
console.log(`${flavor.name} is a ${flavor.dark ? "dark" : "light"} theme.`);
|
|
|
|
console.log(`It has ${flavor.colorEntries.length} colors:`);
|
2021-11-07 04:16:09 +00:00
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
// same for the colors
|
|
|
|
flavor.colorEntries.map(([colorName, { hex, rgb, accent }]) => {
|
|
|
|
console.log(bgRgb24(` ${hex} `, { ...rgb }), colorName, accent);
|
|
|
|
});
|
|
|
|
console.log("\n");
|
|
|
|
});
|
2022-08-05 11:20:08 +00:00
|
|
|
```
|
|
|
|
|
2023-12-28 10:43:11 +00:00
|
|
|
## Other available formats
|
|
|
|
|
|
|
|
- Web development
|
|
|
|
- [CSS](docs/css.md)
|
|
|
|
- [Sass](docs/sass.md)
|
|
|
|
- Ports of this library
|
2024-03-23 15:03:51 +00:00
|
|
|
- [Flutter](https://github.com/catppuccin/flutter)
|
2024-06-02 20:57:53 +00:00
|
|
|
- [Gleam](https://github.com/catppuccin/gleam)
|
2023-12-28 10:43:11 +00:00
|
|
|
- [Go](https://github.com/catppuccin/go)
|
|
|
|
- [Java](https://github.com/catppuccin/java)
|
|
|
|
- [Lua](https://github.com/catppuccin/lua)
|
|
|
|
- [Nim](https://github.com/catppuccin/nim)
|
|
|
|
- [Python](https://github.com/catppuccin/python)
|
|
|
|
- [Rust](https://github.com/catppuccin/rust)
|
|
|
|
- [Tailwind CSS](https://github.com/catppuccin/tailwindcss)
|
|
|
|
- [V](https://github.com/catppuccin/v)
|
|
|
|
|
|
|
|
## Graphics editors
|
|
|
|
|
|
|
|
Please use the respective files in [the latest GitHub Release](https://github.com/catppuccin/palette/releases/latest):
|
|
|
|
|
|
|
|
| Programs | Directory |
|
|
|
|
| -------------------------------- | ------------ |
|
|
|
|
| Adobe Suite, Affinity Suite, Sip | `ase/` |
|
|
|
|
| Aseprite, Gimp, Inkscape, Krita | `gimp/` |
|
|
|
|
| Procreate | `procreate/` |
|
2022-02-02 03:19:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2022-06-20 17:57:35 +00:00
|
|
|
<p align="center"><img src="https://raw.githubusercontent.com/catppuccin/catppuccin/main/assets/footers/gray0_ctp_on_line.svg?sanitize=true" /></p>
|
2022-05-16 00:39:57 +00:00
|
|
|
<p align="center">Copyright © 2021-present <a href="https://github.com/catppuccin" target="_blank">Catppuccin Org</a>
|
2022-06-20 18:20:31 +00:00
|
|
|
<p align="center"><a href="https://github.com/catppuccin/catppuccin/blob/main/LICENSE"><img src="https://img.shields.io/static/v1.svg?style=for-the-badge&label=License&message=MIT&logoColor=d9e0ee&colorA=363a4f&colorB=b7bdf8"/></a></p>
|