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.
191 lines
6.8 KiB
TOML
191 lines
6.8 KiB
TOML
# Author : erasin<erasinoo@gmail.com>
|
|
|
|
"attribute" = { fg = "yellow" }
|
|
"label" = { fg = "cyan" }
|
|
"operator" = { fg = "red" }
|
|
"tag" = { fg = "cyan" }
|
|
"special" = { fg = "deep-purple" }
|
|
"property" = { fg = "purple" }
|
|
"constructor" = { fg = "blue" }
|
|
"namespace" = { fg = "blue" }
|
|
"module" = { fg = "blue" }
|
|
|
|
"type" = { fg = "gold" }
|
|
"type.builtin" = { fg = "yellow" }
|
|
"type.enum" = { fg = "cyan" }
|
|
"type.enum.variant" = { fg = "cyan" }
|
|
|
|
"constant" = { fg = "cyan", modifiers = ["bold"] }
|
|
"constant.builtin" = { fg = "deep-purple" }
|
|
"constant.builtin.boolean" = { fg = "purple" }
|
|
"constant.character" = { fg = "green" }
|
|
"constant.character.escape" = { fg = "brown" }
|
|
"constant.numeric" = { fg = "brown" }
|
|
"constant.numeric.integer" = { fg = "brown" }
|
|
"constant.numeric.float" = { fg = "brown" }
|
|
|
|
"string" = { fg = "green" }
|
|
"string.regexp" = { fg = "purple" }
|
|
"string.special" = { fg = "green" }
|
|
"string.special.path" = { fg = "blue" }
|
|
"string.special.url" = { fg = "light-blue" }
|
|
"string.special.symbol" = { fg = "pink" }
|
|
|
|
"comment" = { fg = "grey", modifiers = ["italic"] }
|
|
"comment.line" = { fg = "grey", modifiers = ["italic"] }
|
|
"comment.block" = { fg = "grey", modifiers = ["italic"] }
|
|
"comment.block.documentation" = { fg = "grey", modifiers = ["italic"] }
|
|
|
|
# "variable" = { fg = "black" }
|
|
"variable.builtin" = { fg = "light-blue" }
|
|
"variable.parameter" = { fg = "red" }
|
|
"variable.other" = { fg = "pink" }
|
|
"variable.other.member" = { fg = "pink" }
|
|
|
|
"punctuation" = { fg = "black" }
|
|
"punctuation.delimiter" = { fg = "purple" }
|
|
"punctuation.bracket" = { fg = "brown" }
|
|
"punctuation.special" = { fg = "brown" }
|
|
|
|
"keyword" = { fg = "purple" }
|
|
"keyword.control" = { fg = "purple" }
|
|
"keyword.control.conditional" = { fg = "red", modifiers = ["bold"] }
|
|
"keyword.control.repeat" = { fg = "pink", modifiers = ["bold"] }
|
|
"keyword.control.import" = { fg = "red" }
|
|
"keyword.control.return" = { fg = "deep-purple", modifiers = ["bold"] }
|
|
"keyword.control.exception" = { fg = "purple" }
|
|
"keyword.operator" = { fg = "red" }
|
|
"keyword.directive" = { fg = "deep-purple" }
|
|
"keyword.function" = { fg = "purple" }
|
|
"keyword.storage" = { fg = "purple" }
|
|
"keyword.storage.type" = { fg = "purple" }
|
|
"keyword.storage.modifier" = { fg = "purple", modifiers = ["bold"] }
|
|
|
|
"function" = { fg = "blue" }
|
|
"function.builtin" = { fg = "cyan" }
|
|
"function.method" = { fg = "light-blue" }
|
|
"function.macro" = { fg = "pink", modifiers = ["bold"] }
|
|
"function.special" = { fg = "cyan" }
|
|
|
|
"markup.heading" = { fg = "red" }
|
|
"markup.heading.marker" = { fg = "red" }
|
|
"markup.heading.1" = { fg = "red", modifiers = ["bold"] }
|
|
"markup.heading.2" = { fg = "gold", modifiers = [
|
|
"bold",
|
|
], underline = { style = "line" } }
|
|
"markup.heading.3" = { fg = "yellow", modifiers = ["bold"] }
|
|
"markup.heading.4" = { fg = "green", modifiers = ["bold"] }
|
|
"markup.heading.5" = { fg = "blue", modifiers = ["bold"] }
|
|
"markup.heading.6" = { fg = "purple", modifiers = ["bold"] }
|
|
"markup.list" = { fg = "light-blue" }
|
|
"markup.list.unnumbered" = { fg = "light-blue" }
|
|
"markup.list.numbered" = { fg = "light-blue" }
|
|
"markup.list.checked" = { fg = "green" }
|
|
"markup.list.unchecked" = { fg = "blue" }
|
|
"markup.bold" = { fg = "yellow", modifiers = ["bold"] }
|
|
"markup.italic" = { fg = "purple", modifiers = ["italic"] }
|
|
"markup.strikethrough" = { fg = "red", modifiers = ["crossed_out"] }
|
|
"markup.link" = { fg = "light-blue" }
|
|
"markup.link.url" = { fg = "cyan", modifiers = ["underlined"] }
|
|
"markup.link.text" = { fg = "light-blue" }
|
|
"markup.quote" = { fg = "grey" }
|
|
"markup.raw" = { fg = "brown" }
|
|
"markup.raw.inline" = { fg = "green" }
|
|
"markup.raw.block" = { fg = "grey" }
|
|
|
|
"diff" = { fg = "red" }
|
|
"diff.plus" = { fg = "green" }
|
|
"diff.minus" = { fg = "red" }
|
|
"diff.delta" = { fg = "cyan" }
|
|
"diff.delta.moved" = { fg = "cyan" }
|
|
|
|
"ui.background" = { bg = "white" }
|
|
"ui.background.separator" = { bg = "white" }
|
|
|
|
"ui.cursor" = { fg = "white", bg = "grey" }
|
|
"ui.cursor.normal" = { fg = "white", bg = "grey" }
|
|
"ui.cursor.insert" = { fg = "white", bg = "grey" }
|
|
"ui.cursor.select" = { fg = "white", bg = "grey" }
|
|
"ui.cursor.match" = { bg = "grey-300", modifiers = ["bold"] }
|
|
"ui.cursor.primary" = { fg = "white", bg = "black" }
|
|
"ui.cursor.primary.normal" = { fg = "white", bg = "black" }
|
|
"ui.cursor.primary.insert" = { fg = "red", bg = "black" }
|
|
"ui.cursor.primary.select" = { fg = "white", bg = "black" }
|
|
|
|
"ui.gutter" = { fg = "grey-500" }
|
|
"ui.gutter.selected" = { fg = "black" }
|
|
|
|
"ui.linenr" = { fg = "grey-500" }
|
|
"ui.linenr.selected" = { fg = "black", modifiers = ["bold"] }
|
|
|
|
"ui.statusline" = { fg = "black", bg = "grey-300" }
|
|
"ui.statusline.inactive" = { fg = "grey", bg = "grey-200" }
|
|
"ui.statusline.normal" = { fg = "grey-300", bg = "light-blue" }
|
|
"ui.statusline.insert" = { fg = "grey-300", bg = "green" }
|
|
"ui.statusline.select" = { fg = "grey-300", bg = "purple" }
|
|
|
|
"ui.popup" = { fg = "black", bg = "grey-200" }
|
|
"ui.popup.info" = { fg = "black", bg = "grey-200" }
|
|
"ui.window" = { fg = "grey-500", bg = "grey-100" }
|
|
"ui.help" = { fg = "black", bg = "grey-200" }
|
|
|
|
"ui.text" = { fg = "black" }
|
|
"ui.text.focus" = { fg = "red", bg = "grey-300", modifiers = ["bold"] }
|
|
"ui.text.inactive" = { fg = "grey" }
|
|
"ui.text.info" = { fg = "black" }
|
|
|
|
"ui.virtual" = { fg = "grey-500" }
|
|
"ui.virtual.ruler" = { bg = "grey-200" }
|
|
"ui.virtual.wrap" = { fg = "grey-500" }
|
|
"ui.virtual.whitespace" = { fg = "grey-300" }
|
|
"ui.virtual.indent-guide" = { fg = "grey-500" }
|
|
"ui.virtual.inlay-hint" = { fg = "grey-500" }
|
|
"ui.virtual.inlay-hint.parameter" = { fg = "grey-500", modifiers = ["italic"] }
|
|
"ui.virtual.inlay-hint.type" = { fg = "grey-500" }
|
|
|
|
"ui.menu" = { fg = "black", bg = "grey-300" }
|
|
"ui.menu.selected" = { fg = "white", bg = "light-blue" }
|
|
"ui.menu.scroll" = { fg = "light-blue", bg = "white" }
|
|
|
|
"ui.selection" = { bg = "grey-300", modifiers = ["dim"] }
|
|
"ui.selection.primary" = { bg = "grey-300" }
|
|
|
|
"ui.cursorline.primary" = { fg = "white", bg = "grey-100" }
|
|
"ui.cursorline.secondary" = { fg = "white", bg = "grey-200" }
|
|
|
|
"ui.cursorcolumn.primary" = { fg = "white", bg = "grey-100" }
|
|
"ui.cursorcolumn.secondary" = { fg = "white", bg = "grey-200" }
|
|
|
|
"ui.highlight" = { bg = "grey-300" }
|
|
|
|
"diagnostic.info" = { underline = { color = "blue", style = "dotted" } }
|
|
"diagnostic.hint" = { underline = { color = "green", style = "dashed" } }
|
|
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
|
|
"diagnostic.error" = { underline = { color = "red", style = "curl" } }
|
|
|
|
"info" = { fg = "blue", modifiers = ["bold"] }
|
|
"hint" = { fg = "green", modifiers = ["bold"] }
|
|
"warning" = { fg = "yellow", modifiers = ["bold"] }
|
|
"error" = { fg = "red", modifiers = ["bold"] }
|
|
|
|
[palette]
|
|
white = "#FAFAFA"
|
|
yellow = "#FF6F00"
|
|
gold = "#D35400"
|
|
brown = "#795548"
|
|
blue = "#0061FF"
|
|
light-blue = "#0091EA"
|
|
red = "#D50000"
|
|
pink = "#C2185B"
|
|
purple = "#B500A9"
|
|
deep-purple = "#651FFF"
|
|
green = "#24A443"
|
|
cyan = "#0086C1"
|
|
black = "#282C34"
|
|
grey = "#5C6370"
|
|
grey-500 = "#9E9E9E"
|
|
grey-400 = "#BDBDBD"
|
|
grey-300 = "#E0E0E0"
|
|
grey-200 = "#EEEEEE"
|
|
grey-100 = "#F2F2F2"
|