git.m455.casa

calm.vim

clone url: git://git.m455.casa/calm.vim


colors/calm.vim

1 " Vim color file
2 " Maintainer: m455 <jesse@m455.casa>
3 " Last Change: 2023-03-23
4 " Source: https://git.m455.casa/calm.vim
5 " This theme was heavily influenced by https://github.com/nikolvs/vim-sunbather
6
7 set background=dark
8
9 " Remove all existing highlighting and set the defaults.
10 hi clear
11
12 " Load the syntax highlighting defaults, if it's enabled.
13 if exists("syntax_on")
14 syntax reset
15 endif
16
17 let colors_name = "calm"
18
19 hi Comment cterm=none ctermfg=darkgrey
20
21 hi Constant cterm=none ctermfg=magenta
22 hi link String Constant
23 hi link Character Constant
24 hi link Number Constant
25 hi link Boolean Constant
26 hi link Float Constant
27
28 hi Identifier cterm=none ctermfg=grey
29 hi link Function Identifier
30
31 hi Statement cterm=none ctermfg=grey
32 hi link Conditional Statement
33 hi link Repeat Statement
34 hi link Label Statement
35 hi link Operator Statement
36 hi link Keyword Statement
37 hi link Exception Statement
38
39 hi PreProc ctermfg=none
40 hi link Include PreProc
41 hi link Define PreProc
42 hi link Macro PreProc
43 hi link PreCondit PreProc
44
45 hi Type ctermfg=grey
46 hi link StorageClass Type
47 hi link Structure Type
48 hi link Typedef Type
49
50 hi Special ctermfg=none
51 hi link SpecialChar Special
52 hi link Tag Special
53 hi link Delimiter Special
54 hi link SpecialComment Special
55 hi link Debug Special
56
57 hi SpellLocal ctermfg=black
58 hi SpellBad ctermfg=black
59 hi SpellCap ctermfg=black
60
61 hi Visual cterm=none ctermfg=black ctermbg=grey
62
63 hi LineNr cterm=none ctermfg=darkgrey
64
65 hi StatusLine cterm=none ctermfg=white ctermbg=235
66 hi StatusLineNC cterm=none ctermfg=245 ctermbg=235
67
68 hi VertSplit cterm=none ctermfg=235 ctermbg=235
69
70 hi Pmenu ctermbg=black ctermfg=white
71
72 hi schemeData ctermfg=grey
73 hi link schemeQuote schemeData
74
75 hi link FennelSymbol Normal
76 hi link FennelParen Normal
77 hi link FennelKeyword Constant
78 hi FennelSpecialForm ctermfg=grey
79 hi link LuaSpecialValue FennelSpecialForm
80 hi link FennelStringEscape FennelSpecialForm
81
82 hi clojureDefine ctermfg=grey
83 hi link clojureMacro clojureDefine
84
85 hi htmlH1 ctermfg=magenta
86 hi markdownLink ctermfg=magenta
87 hi markdownLinkText cterm=none
88 hi markdownCode ctermfg=magenta
89 hi markdownCodeBlock ctermfg=magenta
90
91 hi ColorColumn ctermbg=234