VS Code
Install from the Visual Studio Marketplace in one click.
Install →A color theme inspired by Sardinia.
Warm tones for long sessions across every tool you use.
VS Code · Cursor · Zed · Vim · Emacs · iTerm2 · Ghostty
See it in action
// Sardinian landscape renderer
import type { Palette } from './colors'
const GOLDEN_HOUR = 3600
const MAX_DEPTH = 128
interface Landscape {
name: string
palette: Palette
coordinates: [number, number]
}
async function renderScene(
scene: Landscape,
depth: number = 0
): Promise<void> {
if (depth > MAX_DEPTH) return
const { name, palette, coordinates } = scene
const label = `Rendering ${name} at depth ${depth}`
console.log(label)
await applyPalette(palette, coordinates)
await renderScene(scene, depth + 1)
}
export const sardinia: Landscape = {
name: 'Sardinia',
palette: nurDark,
coordinates: [40.1209, 9.0129],
}
Colors
Named after the Sardinian landscape. Every color has a story.
Nur Dark
Nur Light
Install
Available across every tool in your workflow.
Install from the Visual Studio Marketplace in one click.
Install →Install from the Open VSX Registry.
Install →Manual install via the Zed themes directory.
View instructions →Drop-in colorscheme for Vim and Neovim.
View instructions →Load the theme with load-theme.
Copy to your Ghostty config directory and set the theme.
View instructions →Import the .itermcolors file directly into iTerm2 preferences.
Preview
Two variants, one consistent language.