Skip to content

Commit 8a19196

Browse files
authored
Updated for #2676 , but I took the opportunity to do some other changes. (#2929)
- Misspelling of 'modifiers' for markdown.heading.1 and 2. - Errors are now just underlined instead of in red. - Diagnostics are dimmed, as well as whitespace. - Add constant.builtin.
1 parent 9ae70cc commit 8a19196

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

runtime/themes/night_owl.toml

+12-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# Author : Joe Mckay joemckay3006@gmail.com
22
# Palette from https://github.com/haishanh/night-owl.vim
33

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'] }
99

1010
# UI
1111
'ui.background' = { fg = 'foreground', bg = 'background' }
@@ -22,18 +22,22 @@
2222
'ui.linenr.selected' = { fg = 'greyE', bg = 'background2' }
2323
'ui.statusline' = { fg = 'greyE', bg = 'background2' }
2424
'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' }
2528
'ui.menu' = { fg = 'foreground', bg = 'selection' }
2629
'ui.menu.selected' = { fg = 'foreground', bg = 'pink' }
2730
'ui.popup' = { fg = 'foreground', bg = 'background2' }
2831
'ui.popup.info' = { fg = 'gold', bg = 'background2'}
2932
'ui.help' = { fg = 'gold', bg = 'background2'}
3033
'ui.virtual.ruler' = { bg = 'grey4' }
31-
'ui.virtual.whitespace' = { fg = 'slate' }
34+
'ui.virtual.whitespace' = { fg = 'grey4' }
3235

3336
# SYNTAX
3437
'type' = { fg = 'green' }
3538
'constructor' = { fg = 'blue' }
3639
'constant' = { fg = 'foreground' }
40+
'constant.builtin' = { fg = 'paleblue' }
3741
'constant.character.escape' = { fg = 'peach' }
3842
'string' = { fg = 'gold' }
3943
'string.regexp' = { fg = 'green' }
@@ -63,8 +67,8 @@
6367
# MARKUP
6468
'markup.heading' = { fg = 'blue', modifiers = ['bold'] }
6569
'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'] }
6872
'markup.heading.3' = { fg = 'green', modifiers = ['bold'] }
6973
'markup.heading.4' = { fg = 'pink', modifiers = ['bold'] }
7074
'markup.heading.5' = { fg = 'peach', modifiers = ['bold'] }

0 commit comments

Comments
 (0)