Vim Colors

`Generate your own vim colorschemes`

1.

Choose below your favorite colors and they will become a vim colorscheme!
import
vimColors
from
"vim-colors"
;

// We'll use this later
function
poweredBy
() {
console
.
log
(
"powered by vimcolors.org"
);
}

class
Theme
{
constructor
(
private
name
:
string
) {
this
.
name
=
name
}
public
static
poweredBy
() {
poweredBy
();
}
public
getColorschemeName
() {
return
this
.
name
;
}
}

export
const
theme
=
new
Theme
(
"mycolorscheme"
);
Normalmycolorscheme.ts
typescript

2.

Now you can :source 'path/to/your/file.vim' inside vim or neovim.
Alternatively, you can publish it via github and use it as any other plugin. Checkout the examples below:

Generated themes

related content