33 lines
1.1 KiB
VimL
33 lines
1.1 KiB
VimL
|
" Name: Minimal Theme
|
||
|
" Author: Nicole Tietz-Sokolskaya <me@ntietz.com>
|
||
|
" Maintainer: Nicole Tietz-Sokolskaya <me@ntietz.com>
|
||
|
" License: Vim License (see `:help license`)
|
||
|
" Last Updated: Sun 13 Aug 2023 10:21:15 PM EDT
|
||
|
|
||
|
" Generated by Colortemplate v2.2.3
|
||
|
|
||
|
set background=light
|
||
|
|
||
|
hi clear
|
||
|
let g:colors_name = 'minimal'
|
||
|
|
||
|
let s:t_Co = has('gui_running') ? -1 : (&t_Co ?? 0)
|
||
|
|
||
|
if (has('termguicolors') && &termguicolors) || has('gui_running')
|
||
|
let g:terminal_ansi_colors = ['#fafafa', '#fafafa', '#fafafa', '#fafafa', '#fafafa', '#fafafa', '#fafafa', '#fafafa', '#333333', '#333333', '#333333', '#333333', '#333333', '#333333', '#333333', '#333333']
|
||
|
endif
|
||
|
hi Normal guifg=#fafafa guibg=#333333 gui=NONE cterm=NONE
|
||
|
|
||
|
if s:t_Co >= 256
|
||
|
hi Normal ctermfg=231 ctermbg=236 cterm=NONE
|
||
|
unlet s:t_Co
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
" Background: light
|
||
|
" Color: myblack #333333 ~
|
||
|
" Color: mywhite #fafafa ~
|
||
|
" Term colors: mywhite mywhite mywhite mywhite mywhite mywhite mywhite mywhite
|
||
|
" Term colors: myblack myblack myblack myblack myblack myblack myblack myblack
|
||
|
" vim: et ts=8 sw=2 sts=2
|