๐ก Simple Light Theme
July 4, 2026 ยท View on GitHub
Inspired by
- IDEA like light Theme syntax
- GitLab's syntax
- VSCode light theme
Goal
Don't expect any fancy colors.
More colors equal more distraction; we don't want to waste cognitive capacity on that. The goal of this theme is to have the minimum meaningful colors.
Install
VS Code
Available on the VS Code Marketplace and Open VSX Registry.
code --install-extension xseman.simple-light
Search for Simple light in the Extensions view (Ctrl+Shift+X), or set it
in your settings.json:
{
"workbench.colorTheme": "Simple light"
}
VSCodium / Open VSX
Search for Simple light in the Extensions view, or install via the CLI:
codium --install-extension xseman.simple-light
Zed
Available on the Zed extension marketplace.
Search for Simple Light in Zed's extension marketplace (zed: extensions),
or set it in your ~/.config/zed/settings.json:
{
"theme": "Simple Light"
}
Structure
This is a monorepo publishing the theme to multiple editor marketplaces from a single source.
simple-light/
โโโ zed/ # Zed extension artifact
โ โโโ themes/
โ โ โโโ simple-light.json # theme definition (Zed format)
โ โโโ extension.toml # extension manifest
โโโ extensions.toml # Points Zed at the nested zed/ extension
โ
โโโ vscode/ # VS Code / Open VSX extension artifact
โ โโโ themes/
โ โ โโโ light.json # theme definition (VS Code format)
โ โโโ package.json # extension manifest
โ
โโโ docs/ # Preview screenshots and sample code
โโโ version.txt # Single source of truth for the version
The color definitions live in each IDE's own format (zed/themes/ for Zed,
vscode/themes/ for VS Code). Versioning is coordinated by
release-please, which bumps version.txt,
vscode/package.json, and zed/extension.toml together on every release.
Related
- vscode-ideal-theme โ IDEA like light Theme
- gitlab-theme โ GitLab's syntax highlighting theme
- vscode-light-modern โ VSCode's light modern theme