color theme · v0.1.0

Tokyo Mono
for Windows 11.

Tokyo Night's accent palette on Fluent 2 grey backgrounds — tuned for long sessions, not neon maximalism. Ships for VS Code, Windows Terminal, Starship, and 70+ apps via Tinted Theming.

theme.ts TypeScript
// Tokyo Mono — designed for long sessions
import type { Variant } from './palette';

const DEFAULT_VARIANT: Variant = 'night';
const HEX_PATTERN = /#[0-9a-f]{6}/gi;

interface ResolvedPalette {
  background: string;
  foreground: string;
  accent: string;
}

function resolvePalette(
  variant: Variant = DEFAULT_VARIANT,
): ResolvedPalette {
  const isNight = variant === 'night';
  return {
    background: isNight ? '#292929' : '#ffffff',
    foreground: isNight ? '#ffffff' : '#242424',
    accent:     isNight ? '#7aa2f7' : '#2e7de9',
  };
}

const isHex = (s: string) => HEX_PATTERN.test(s);
UTF-8 tokyo-mono night TypeScript

01

Windows 11 Native

Backgrounds match Fluent 2 grey scale exactly — your editor disappears into the OS instead of fighting it.

02

AI Documentation

Ships with structured palette data — semantic roles, WCAG ratios, and usage guidance baked in. Ask an agent to use your theme colors and it actually gets them right.

03

Cascadia Code NF

Designed for Cascadia Code NF — ligatures, powerline glyphs, and dev icons all look right out of the box. get it →