X theme collection for Terax, the open-source terminal AI dev workspace built on Tauri 2, Rust, and React.
Linux / macOS
curl -fsSL https://raw.githubusercontent.com/xscriptor/terax/main/install-terax-themes.sh | bashWindows (PowerShell)
irm https://raw.githubusercontent.com/xscriptor/terax/main/install-terax-themes.ps1 | iexAfter installation, restart Terax. Themes appear under Settings > Appearance > Theme.
Copy all .terax-theme files from the themes/ directory to your Terax themes folder:
| Platform | Themes Directory |
|---|---|
| Linux | ~/.config/com.terax.app/themes/ |
| macOS | ~/Library/Application Support/com.terax.app/themes/ |
| Windows | %APPDATA%\com.terax.app\themes\ |
Linux:
cp themes/*.terax-theme ~/.config/com.terax.app/themes/macOS:
cp themes/*.terax-theme ~/Library/Application\ Support/com.terax.app/themes/Windows (PowerShell):
Copy-Item themes\*.terax-theme $env:APPDATA\com.terax.app\themes\| Theme | Background | Description |
|---|---|---|
| X | #0a0a0a |
Near-black with vibrant neon accents. High contrast for late-night coding. |
| Lahabana | #363537 |
Warm charcoal base with electric lime and magenta. Caribbean nights. |
| Miami | #000000 |
Pure black with synthwave neon -- cyan, magenta, and hot pink. Retro-futuristic. |
| Paris | #10081a |
Deep violet-black with cyan and lavender. Parisian nights. |
| Tokio | #363537 |
Dark graphite with warm orange accents and electric blue. Tokyo nightscape. |
| Oslo | #3f4451 |
Slate-blue dark surfaces with muted teal and lavender. Nordic twilight. |
| Praha | #1A1A1A |
Dark and dramatic with pink, cyan, and purple. Bohemian night. |
| Bogota | #140606 |
Deep crimson-black with hot pink and electric cyan. Warm and intense. |
| Theme | Background | Description |
|---|---|---|
| Madrid | #fafafa |
Warm ivory with crimson and teal. Mediterranean sunlight. |
| Helsinki | #f8fafe |
Cool frosted-white with teal, deep purple, and warm amber. Nordic mornings. |
| Berlin | #000000 |
Greyscale monochrome. Brutalist, minimal, distraction-free. |
| London | #ffffff |
Clean white with grey gradients. Minimal and bright. |
| Theme | Type | Background |
|---|---|---|
| X | dark | #0a0a0a |
| Lahabana | dark | #363537 |
| Miami | dark | #000000 |
| Paris | dark | #10081a |
| Tokio | dark | #363537 |
| Oslo | dark | #3f4451 |
| Praha | dark | #1A1A1A |
| Bogota | dark | #140606 |
| Madrid | light | #fafafa |
| Helsinki | light | #f8fafe |
| Berlin | dark | #000000 |
| London | light | #ffffff |
For the complete color reference including every UI token and ANSI terminal palette, see colors.md.
Individual theme files are available in the themes/ directory.
Each .terax-theme file is a JSON document with the following structure:
id-- unique kebab-case identifier (a-z, 0-9, hyphens)name-- display name shown in the theme pickerauthor-- theme author (optional)description-- short description (optional)editorTheme-- CodeMirror editor theme mapping for dark/light mode (optional)variants-- at least one ofdarkorlight, each containing:colors-- 25 UI color tokens (background, foreground, card, popover, primary, secondary, muted, accent, destructive, border, input, ring, and sidebar variants)terminal-- ANSI 16-color palette plus background, foreground, cursor, and selection colors
Valid editor theme values: atomone, aura, copilot, github-dark, github-light, gruvbox-dark, nord, tokyo-night, xcode-dark, xcode-light.
Full schema reference is documented in colors.md.
Apache-2.0 -- Copyright (c) xscriptor