My personal VS Code / Cursor color theme. Lives here so I can sync it across laptops without remembering anything fancy.
git clone git@github.com:aksheyd/cursor-inspired-dark.git ~/cursor-inspired-dark
cd ~/cursor-inspired-dark
./install.shThat's it. Restart VS Code / Cursor, then:
Cmd+K Cmd+T→ pick Cursor Inspired Dark
The script symlinks this repo into your editor's extensions directory, so any
git pull here instantly updates the theme — no rebuild, no reinstall.
By default it installs into both VS Code and Cursor if they exist. To target one:
./install.sh code # VS Code only
./install.sh cursor # Cursor onlyEdit themes/cursor-inspired-dark.json, reload the editor window
(Cmd+Shift+P → "Reload Window"), and the changes show up immediately.
To share the changes with your other laptops:
git add themes/cursor-inspired-dark.json
git commit -m "tweak colors"
git pushOn the other laptop:
cd ~/cursor-inspired-dark && git pull
# Reload Window in your editorrm ~/.vscode/extensions/cursor-inspired-dark
rm ~/.cursor/extensions/cursor-inspired-darkpackage.json— extension manifestthemes/cursor-inspired-dark.json— the actual color definitionsinstall.sh— symlinks this repo into your editor's extensions dir