Theme CDN

Design system themes for web, mobile, and CLI applications. Consistent styling across all your projects with zero configuration.

Usage

Get started with Kira themes in your project

HTML
<!-- CSS Import -->
<link rel="stylesheet" href="https://kira.cold.at/web/desktop/cyberpunk-clean/theme.css">
CSS @import
@import url('https://kira.cold.at/web/mobile/minimal-accent/theme.css');
TypeScript
import { theme, cssVars } from 'https://kira.cold.at/web/desktop/cyberpunk-clean/theme.ts';

console.log(theme.colors.primary); // "#00E7FF"
Rust (build-time)
// 1. Download theme.rs to your project
mod theme;

// 2. Use at compile time
use theme::colors::PRIMARY;
println!("Primary: {}", PRIMARY);
Shell
# Source theme environment
source <(curl -s https://kira.cold.at/cli/terminal-classic/theme.sh)

echo $TERM_PRIMARY # 8BE9FD
JSON API
curl https://kira.cold.at/index.json

// Returns all available themes
// with metadata and file URLs