Theme CDN
Design system themes for web, mobile, and CLI applications. Consistent styling across all your projects with zero configuration.
Theme Showcase
Click a theme to preview how it looks in a real application
Available Themes
cyberpunk-clean
Web / Desktop
Readable dark UI with controlled neon accents for modern product surfaces.
minimal-accent
Web / Mobile
Clean mobile-first theme with subtle accent for touch interfaces.
terminal-classic
CLI / Terminal
Classic terminal aesthetic with amber phosphor display colors.
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