https://github.com/srvariable/sorombra.vim
Simple dark color scheme for Vim
https://github.com/srvariable/sorombra.vim
color-scheme dark-theme vim
Last synced: 6 months ago
JSON representation
Simple dark color scheme for Vim
- Host: GitHub
- URL: https://github.com/srvariable/sorombra.vim
- Owner: SrVariable
- License: mit
- Created: 2025-02-11T03:32:15.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-26T18:18:59.000Z (about 1 year ago)
- Last Synced: 2025-10-10T23:44:12.282Z (6 months ago)
- Topics: color-scheme, dark-theme, vim
- Language: Python
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sorombra.vim
## Description
Sorombra is a simple dark color scheme for Vim.
## Usage
Currently, the easiest way to install this theme (at least on Linux) is using the following commands:
```shell
mkdir -p ~/.vim/colors
curl https://raw.githubusercontent.com/SrVariable/sorombra.vim/refs/heads/main/sorombra.vim > ~/.vim/colors/sorombra.vim
```
Then in vim you just have to execute `:colorscheme sorombra`.
Additionally, if you want to set this color scheme by default, you can add `colorscheme sorombra` to your `.vimrc`.
## Modification
For simplicity, I created a [python script](https://github.com/SrVariable/sorombra.vim/blob/main/themegen.py) which acts as a "template" for the color scheme, allowing to easily modify the color scheme. The colors are located at the beginning of the file. Once you do the changes, execute the script and it will generate the color scheme.
## Preview
### termguicolors

### notermguicolors (256 term colors)

You can check this test code in [here](https://gist.github.com/SrVariable/a8bf09fe8a679212e2f3e092bf3363b3).
> [!NOTE]
>
> The font used is IosevkaTerm Nerd Font
## References
- [iceberg.vim](https://github.com/cocopon/iceberg.vim)
- [Creating your lovely color scheme](https://speakerdeck.com/cocopon/creating-your-lovely-color-scheme)
- vim `:hi` and `:help hi` commands
- [grubber-darker-theme](https://github.com/rexim/gruber-darker-theme)
- [themedgehog](https://github.com/SrVariable/themedgehog)