1.
Choose below your favorite colors and they will become a vim colorscheme!import vimColors from "vim-colors";
// We'll use this laterfunction 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.tstypescript