forked from Mirrors/helix
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
4.0 KiB
TOML
110 lines
4.0 KiB
TOML
# Author : Joe Mckay joemckay3006@gmail.com
|
|
# Palette from https://github.com/haishanh/night-owl.vim
|
|
|
|
'warning' = { fg = 'peach', modifiers = ['dim'] }
|
|
'error' = { fg = 'red', modifiers = ['dim'] }
|
|
'info' = { fg = 'blue', modifiers = ['dim'] }
|
|
'hint' = { fg = 'paleblue', modifiers = ['dim'] }
|
|
'diagnostic' = { modifiers = ['underlined'] }
|
|
|
|
# UI
|
|
'ui.background' = { fg = 'foreground', bg = 'background' }
|
|
'ui.window' = { fg = 'grey7' }
|
|
'ui.gutter' = { bg = 'grey2' }
|
|
'ui.text' = { fg = 'foreground' }
|
|
'ui.text.focus' = { fg = 'foreground' }
|
|
'ui.text.info' = { fg = 'foreground'}
|
|
'ui.cursor' = { fg = 'background', bg = 'blue' }
|
|
'ui.cursor.primary' = { fg = 'background', bg = 'gold' }
|
|
'ui.cursor.match' = { bg = 'selection', modifiers = ['underlined'] }
|
|
'ui.selection' = { bg = 'selection', modifiers = ['dim'] }
|
|
'ui.linenr' = { fg = 'grey4', bg = 'background2' }
|
|
'ui.linenr.selected' = { fg = 'greyE', bg = 'background2' }
|
|
'ui.statusline' = { fg = 'greyE', bg = 'background2' }
|
|
'ui.statusline.inactive' = { fg = 'grey7', bg = 'background2' }
|
|
'ui.statusline.normal' = { bg = 'slate' }
|
|
'ui.statusline.insert' = { bg = 'peach' }
|
|
'ui.statusline.select' = { bg = 'green' }
|
|
'ui.menu' = { fg = 'foreground', bg = 'selection' }
|
|
'ui.menu.selected' = { fg = 'foreground', bg = 'pink' }
|
|
'ui.popup' = { fg = 'foreground', bg = 'background2' }
|
|
'ui.popup.info' = { fg = 'gold', bg = 'background2'}
|
|
'ui.help' = { fg = 'gold', bg = 'background2'}
|
|
'ui.virtual.ruler' = { bg = 'grey4' }
|
|
'ui.virtual.whitespace' = { fg = 'grey4' }
|
|
'ui.cursorline.primary' = { bg = 'background2' }
|
|
|
|
# SYNTAX
|
|
'type' = { fg = 'green' }
|
|
'constructor' = { fg = 'blue' }
|
|
'constant' = { fg = 'foreground' }
|
|
'constant.builtin' = { fg = 'paleblue' }
|
|
'constant.character.escape' = { fg = 'peach' }
|
|
'string' = { fg = 'gold' }
|
|
'string.regexp' = { fg = 'green' }
|
|
'string.special.url' = { fg = 'gold', modifiers = ['underlined'] }
|
|
'comment' = { fg = 'slate', modifiers = ['italic'] }
|
|
'comment.block.documentation' = { fg = 'slate' }
|
|
'variable' = { fg = 'green' }
|
|
'variable.builtin' = { fg = 'green', modifiers = ['italic'] }
|
|
'label' = { fg = 'foreground' }
|
|
'punctuation' = { fg = 'foreground' }
|
|
'punctuation.special' = { fg = 'pink' }
|
|
'keyword' = { fg = 'pink' }
|
|
'keyword.control.import' = { fg = 'green', modifiers = ['italic'] }
|
|
'keyword.control.return' = { fg = 'pink', modifiers = ['italic'] }
|
|
'keyword.control.exception' = { fg = 'red' }
|
|
'operator' = { fg = 'pink' }
|
|
'function' = { fg = 'blue' }
|
|
'function.macro' = { fg = 'peach' }
|
|
'function.special' = { fg = 'pink' }
|
|
'tag' = { fg = 'blue' }
|
|
'namespace' = { fg = 'peach' }
|
|
'special' = { fg = 'greyE' }
|
|
'module' = { fg = 'greyE' }
|
|
'attribute' = { fg = 'paleblue' }
|
|
|
|
# MARKUP
|
|
'markup.heading' = { fg = 'blue', modifiers = ['bold'] }
|
|
'markup.heading.marker' = { fg = 'grey4', modifiers = ['dim'] }
|
|
'markup.heading.1' = { fg = 'blue', modifiers = ['bold'] }
|
|
'markup.heading.2' = { fg = 'paleblue', modifiers = ['bold'] }
|
|
'markup.heading.3' = { fg = 'green', modifiers = ['bold'] }
|
|
'markup.heading.4' = { fg = 'pink', modifiers = ['bold'] }
|
|
'markup.heading.5' = { fg = 'peach', modifiers = ['bold'] }
|
|
'markup.heading.6' = { fg = 'slate', modifiers = ['bold'] }
|
|
'markup.list' = { fg = 'pink' }
|
|
'markup.bold' = { fg = 'foreground', modifiers = ['bold'] }
|
|
'markup.italic' = { fg = 'foreground', modifiers = ['italic'] }
|
|
'markup.link' = { fg = 'pink', modifiers = ['underlined'] }
|
|
'markup.link.url' = { fg = 'slate', modifiers = ['underlined'] }
|
|
'markup.quote' = { fg = 'green', modifiers = ['italic'] }
|
|
'markup.raw' = { fg = 'gold', bg = 'background2' }
|
|
|
|
# DIFF
|
|
'diff.plus' = { fg = 'green' }
|
|
'diff.minus' = { fg = 'red' }
|
|
'diff.delta' = { fg = 'blue' }
|
|
'diff.delta.moved' = { fg = 'blue', modifiers = ['italic'] }
|
|
|
|
[palette]
|
|
background = '#011627'
|
|
background2 = '#112630'
|
|
foreground = '#d6deeb'
|
|
selection = '#2d2c5d'
|
|
|
|
slate = '#637777'
|
|
red = '#ff5874'
|
|
peach = '#f78c6c'
|
|
gold = '#ecc48d'
|
|
pink = '#c792ea'
|
|
green = '#addb67'
|
|
blue = '#82aaff'
|
|
paleblue = '#7fdbca'
|
|
|
|
# Greys are named after their value.
|
|
grey2 = '#222222'
|
|
grey4 = '#444444'
|
|
grey7 = '#777777'
|
|
greyE = '#eeeeee'
|