|
1 | 1 | # Author : Joe Mckay joemckay3006@gmail.com
|
2 | 2 | # Palette from https://github.com/haishanh/night-owl.vim
|
3 | 3 |
|
4 |
| -'warning' = { fg = 'peach' } |
5 |
| -'error' = { fg = 'red' } |
6 |
| -'info' = { fg = 'blue' } |
7 |
| -'hint' = { fg = 'paleblue' } |
8 |
| -'diagnostic' = { fg = 'background', bg = 'red' } |
| 4 | +'warning' = { fg = 'peach', modifiers = ['dim'] } |
| 5 | +'error' = { fg = 'red', modifiers = ['dim'] } |
| 6 | +'info' = { fg = 'blue', modifiers = ['dim'] } |
| 7 | +'hint' = { fg = 'paleblue', modifiers = ['dim'] } |
| 8 | +'diagnostic' = { modifiers = ['underlined'] } |
9 | 9 |
|
10 | 10 | # UI
|
11 | 11 | 'ui.background' = { fg = 'foreground', bg = 'background' }
|
|
22 | 22 | 'ui.linenr.selected' = { fg = 'greyE', bg = 'background2' }
|
23 | 23 | 'ui.statusline' = { fg = 'greyE', bg = 'background2' }
|
24 | 24 | 'ui.statusline.inactive' = { fg = 'grey7', bg = 'background2' }
|
| 25 | +'ui.statusline.normal' = { bg = 'slate' } |
| 26 | +'ui.statusline.insert' = { bg = 'peach' } |
| 27 | +'ui.statusline.select' = { bg = 'green' } |
25 | 28 | 'ui.menu' = { fg = 'foreground', bg = 'selection' }
|
26 | 29 | 'ui.menu.selected' = { fg = 'foreground', bg = 'pink' }
|
27 | 30 | 'ui.popup' = { fg = 'foreground', bg = 'background2' }
|
28 | 31 | 'ui.popup.info' = { fg = 'gold', bg = 'background2'}
|
29 | 32 | 'ui.help' = { fg = 'gold', bg = 'background2'}
|
30 | 33 | 'ui.virtual.ruler' = { bg = 'grey4' }
|
31 |
| -'ui.virtual.whitespace' = { fg = 'slate' } |
| 34 | +'ui.virtual.whitespace' = { fg = 'grey4' } |
32 | 35 |
|
33 | 36 | # SYNTAX
|
34 | 37 | 'type' = { fg = 'green' }
|
35 | 38 | 'constructor' = { fg = 'blue' }
|
36 | 39 | 'constant' = { fg = 'foreground' }
|
| 40 | +'constant.builtin' = { fg = 'paleblue' } |
37 | 41 | 'constant.character.escape' = { fg = 'peach' }
|
38 | 42 | 'string' = { fg = 'gold' }
|
39 | 43 | 'string.regexp' = { fg = 'green' }
|
|
63 | 67 | # MARKUP
|
64 | 68 | 'markup.heading' = { fg = 'blue', modifiers = ['bold'] }
|
65 | 69 | 'markup.heading.marker' = { fg = 'grey4', modifiers = ['dim'] }
|
66 |
| -'markup.heading.1' = { fg = 'blue', modifers = ['bold'] } |
67 |
| -'markup.heading.2' = { fg = 'paleblue', modifers = ['bold'] } |
| 70 | +'markup.heading.1' = { fg = 'blue', modifiers = ['bold'] } |
| 71 | +'markup.heading.2' = { fg = 'paleblue', modifiers = ['bold'] } |
68 | 72 | 'markup.heading.3' = { fg = 'green', modifiers = ['bold'] }
|
69 | 73 | 'markup.heading.4' = { fg = 'pink', modifiers = ['bold'] }
|
70 | 74 | 'markup.heading.5' = { fg = 'peach', modifiers = ['bold'] }
|
|
0 commit comments