Adjust everforest to resemble original more closely

Adjust palettes and assignments:

Color palettes of upstream everforest where tweaked since creation of this port:
- https://github.com/sainnhe/everforest/pull/108
- https://github.com/sainnhe/everforest/pull/109

These adjustments move the helix everforest theme closer to the dcocumented
 upstream vim theme
pull/6432/head^2
basbebe 1 year ago committed by Michael Davis
parent 92c5f5f18c
commit 9248de8780

@ -1,81 +1,93 @@
# Everforest (Dark Hard) # Everforest (Dark Medium)
# Author: CptPotato # Authors: CptPotato, basbebe
# Original Author: # Original Author:
# URL: https://github.com/sainnhe/everforest # URL: https://github.com/sainnhe/everforest
# Filename: autoload/everforest.vim # Filename: colors/everforest.vim
# Author: sainnhe # Author: sainnhe
# Email: sainnhe@gmail.com # Email: sainnhe@gmail.com
# License: MIT License # License: MIT License
"type" = "yellow" "type" = { fg = "yellow", modifiers = ["italic"] }
"constant" = "purple" "constant" = "fg"
"constant.builtin" = { fg = "purple", modifiers = ["italic"] }
"constant.builtin.boolean" = "purple"
"constant.numeric" = "purple" "constant.numeric" = "purple"
"constant.character.escape" = "orange" "constant.character.escape" = "green"
"string" = "green" "string" = "aqua"
"string.regexp" = "blue" "string.regexp" = "green"
"comment" = "grey0" "string.special" = "yellow"
"comment" = { fg = "grey1", modifiers = ["italic"] }
"variable" = "fg" "variable" = "fg"
"variable.builtin" = "blue" "variable.builtin" = { fg = "purple", modifiers = ["italic"] }
"variable.parameter" = "fg" "variable.parameter" = "fg"
"variable.other.member" = "fg" "variable.other.member" = "blue"
"label" = "aqua" "label" = "orange"
"punctuation" = "grey2" "punctuation" = "grey2"
"punctuation.delimiter" = "grey2" "punctuation.delimiter" = "grey1"
"punctuation.bracket" = "fg" "punctuation.bracket" = "fg"
"punctuation.special" = "blue"
"keyword" = "red" "keyword" = "red"
"keyword.directive" = "aqua" "keyword.operator" = "orange"
"keyword.directive" = "purple"
"keyword.storage" = "orange"
"operator" = "orange" "operator" = "orange"
"function" = "green" "function" = "green"
"function.builtin" = "blue" "function.macro" = "green"
"function.macro" = "aqua" "tag" = "orange"
"tag" = "yellow" "namespace" = { fg = "yellow", modifiers = ["italic"] }
"namespace" = "aqua" "attribute" = { fg = "purple", modifiers = ["italic"] }
"attribute" = "aqua" "constructor" = "green"
"constructor" = "yellow" "module" = "yellow"
"module" = "blue" "special" = "blue"
"special" = "orange"
"markup.heading.marker" = "grey2" "markup.heading.marker" = "grey1"
"markup.heading.1" = { fg = "red", modifiers = ["bold"] } "markup.heading.1" = { fg = "red", modifiers = ["bold"] }
"markup.heading.2" = { fg = "orange", modifiers = ["bold"] } "markup.heading.2" = { fg = "orange", modifiers = ["bold"] }
"markup.heading.3" = { fg = "yellow", modifiers = ["bold"] } "markup.heading.3" = { fg = "yellow", modifiers = ["bold"] }
"markup.heading.4" = { fg = "green", modifiers = ["bold"] } "markup.heading.4" = { fg = "green", modifiers = ["bold"] }
"markup.heading.5" = { fg = "blue", modifiers = ["bold"] } "markup.heading.5" = { fg = "blue", modifiers = ["bold"] }
"markup.heading.6" = { fg = "fg", modifiers = ["bold"] } "markup.heading.6" = { fg = "purple", modifiers = ["bold"] }
"markup.list" = "red" "markup.list" = "red"
"markup.bold" = { modifiers = ["bold"] } "markup.bold" = { modifiers = ["bold"] }
"markup.italic" = { modifiers = ["italic"] } "markup.italic" = { modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] } "markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.link.url" = { fg = "blue", modifiers = ["underlined"] } "markup.link.url" = { fg = "blue", underline = { style = "line" } }
"markup.link.label" = "orange"
"markup.link.text" = "purple" "markup.link.text" = "purple"
"markup.quote" = "grey2" "markup.quote" = "grey1"
"markup.raw" = "green" "markup.raw.inline" = "green"
"markup.raw.block" = "aqua"
"diff.plus" = "green" "diff.plus" = "green"
"diff.delta" = "orange" "diff.delta" = "blue"
"diff.minus" = "red" "diff.minus" = "red"
"ui.background" = { bg = "bg0" } "ui.background" = { bg = "bg0" }
"ui.background.separator" = "grey0" "ui.background.separator" = "bg_visual"
"ui.cursor" = { fg = "bg0", bg = "fg" } "ui.cursor" = { fg = "bg1", bg = "grey2" }
"ui.cursor.match" = { fg = "orange", bg = "bg_yellow" }
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" } "ui.cursor.insert" = { fg = "bg0", bg = "grey1" }
"ui.cursor.select" = { fg = "bg0", bg = "blue" } "ui.cursor.select" = { fg = "bg0", bg = "blue" }
"ui.cursor.match" = { fg = "orange", bg = "bg_yellow" }
"ui.cursor.primary" = { fg = "bg0", bg = "fg" }
"ui.cursorline.primary" = { bg = "bg1" } "ui.cursorline.primary" = { bg = "bg1" }
"ui.cursorline.secondary" = { bg = "bg1" } "ui.cursorline.secondary" = { bg = "bg2" }
"ui.selection" = { bg = "bg3" } "ui.selection" = { bg = "bg3" }
"ui.linenr" = "grey0" "ui.linenr" = "grey0"
"ui.linenr.selected" = "fg" "ui.linenr.selected" = "grey2"
"ui.statusline" = { fg = "grey2", bg = "bg3" } "ui.statusline" = { fg = "grey2", bg = "bg3" }
"ui.statusline.inactive" = { fg = "grey0", bg = "bg1" } "ui.statusline.inactive" = { fg = "grey0", bg = "bg1" }
"ui.statusline.normal" = { fg = "bg0", bg = "grey2", modifiers = ["bold"] } "ui.statusline.normal" = { fg = "bg0", bg = "statusline1", modifiers = [
"ui.statusline.insert" = { fg = "bg0", bg = "yellow", modifiers = ["bold"] } "bold",
] }
"ui.statusline.insert" = { fg = "bg0", bg = "statusline2", modifiers = [
"bold",
] }
"ui.statusline.select" = { fg = "bg0", bg = "blue", modifiers = ["bold"] } "ui.statusline.select" = { fg = "bg0", bg = "blue", modifiers = ["bold"] }
"ui.bufferline" = { fg = "grey0", bg = "bg1" } "ui.bufferline" = { fg = "grey2", bg = "bg3" }
"ui.bufferline.active" = { fg = "fg", bg = "bg3", modifiers = ["bold"] } "ui.bufferline.active" = { fg = "bg0", bg = "statusline1", modifiers = ["bold"] }
"ui.popup" = { fg = "grey2", bg = "bg2" } "ui.popup" = { fg = "grey2", bg = "bg2" }
"ui.window" = { fg = "grey0", bg = "bg0" } "ui.window" = { fg = "bg4", bg = "bg_dim" }
"ui.help" = { fg = "fg", bg = "bg2" } "ui.help" = { fg = "fg", bg = "bg2" }
"ui.text" = "fg" "ui.text" = "fg"
"ui.text.focus" = "fg" "ui.text.focus" = "fg"
@ -85,30 +97,30 @@
"ui.virtual.indent-guide" = { fg = "bg4" } "ui.virtual.indent-guide" = { fg = "bg4" }
"ui.virtual.ruler" = { bg = "bg3" } "ui.virtual.ruler" = { bg = "bg3" }
"hint" = "blue" "hint" = "green"
"info" = "aqua" "info" = "blue"
"warning" = "yellow" "warning" = "yellow"
"error" = "red" "error" = "red"
"diagnostic.hint" = { underline = { color = "blue", style = "curl" } } "diagnostic.hint" = { underline = { color = "green", style = "curl" } }
"diagnostic.info" = { underline = { color = "aqua", style = "curl" } } "diagnostic.info" = { underline = { color = "blue", style = "curl" } }
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } } "diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
"diagnostic.error" = { underline = { color = "red", style = "curl" } } "diagnostic.error" = { underline = { color = "red", style = "curl" } }
[palette] [palette]
bg0 = "#2b3339" bg_dim = "#232a2e"
bg1 = "#323c41" bg0 = "#2d353b"
bg2 = "#3a454a" bg1 = "#343f44"
bg3 = "#445055" bg2 = "#3d484d"
bg4 = "#4c555b" bg3 = "#475258"
bg5 = "#53605c" bg4 = "#4f585e"
bg_visual = "#503946" bg5 = "#56635f"
bg_red = "#4e3e43" bg_visual = "#543a48"
bg_green = "#404d44" bg_red = "#514045"
bg_blue = "#394f5a" bg_green = "#425047"
bg_yellow = "#4a4940" bg_blue = "#3a515d"
bg_yellow = "#4d4c43"
fg = "#d3c6aa" fg = "#d3c6aa"
red = "#e67e80" red = "#e67e80"
@ -118,6 +130,7 @@ green = "#a7c080"
aqua = "#83c092" aqua = "#83c092"
blue = "#7fbbb3" blue = "#7fbbb3"
purple = "#d699b6" purple = "#d699b6"
grey0 = "#7a8478" grey0 = "#7a8478"
grey1 = "#859289" grey1 = "#859289"
grey2 = "#9da9a0" grey2 = "#9da9a0"

@ -1,81 +1,95 @@
# Everforest (Dark Hard) # Everforest (Light Medium)
# Author: CptPotato # Authors: CptPotato, WindSoilder, basbebe
# Original Author: # Original Author:
# URL: https://github.com/sainnhe/everforest # URL: https://github.com/sainnhe/everforest
# Filename: autoload/everforest.vim # Filename: colors/everforest.vim
# Author: sainnhe # Author: sainnhe
# Email: sainnhe@gmail.com # Email: sainnhe@gmail.com
# License: MIT License # License: MIT License
"type" = "yellow" "type" = { fg = "yellow", modifiers = ["italic"] }
"constant" = "purple" "constant" = "fg"
"constant.builtin" = { fg = "purple", modifiers = ["italic"] }
"constant.builtin.boolean" = "purple"
"constant.numeric" = "purple" "constant.numeric" = "purple"
"constant.character.escape" = "orange" "constant.character.escape" = "green"
"string" = "green" "string" = "aqua"
"string.regexp" = "blue" "string.regexp" = "green"
"comment" = "grey0" "string.special" = "yellow"
"comment" = { fg = "grey1", modifiers = ["italic"] }
"variable" = "fg" "variable" = "fg"
"variable.builtin" = "blue" "variable.builtin" = { fg = "purple", modifiers = ["italic"] }
"variable.parameter" = "fg" "variable.parameter" = "fg"
"variable.other.member" = "fg" "variable.other.member" = "blue"
"label" = "aqua" "label" = "orange"
"punctuation" = "grey2" "punctuation" = "grey2"
"punctuation.delimiter" = "grey2" "punctuation.delimiter" = "grey1"
"punctuation.bracket" = "fg" "punctuation.bracket" = "fg"
"punctuation.special" = "blue"
"keyword" = "red" "keyword" = "red"
"keyword.directive" = "aqua" "keyword.operator" = "orange"
"keyword.directive" = "purple"
"keyword.storage" = "orange"
"operator" = "orange" "operator" = "orange"
"function" = "green" "function" = "green"
"function.builtin" = "blue" "function.macro" = "green"
"function.macro" = "aqua" "tag" = "orange"
"tag" = "yellow" "namespace" = { fg = "yellow", modifiers = ["italic"] }
"namespace" = "aqua" "attribute" = { fg = "purple", modifiers = ["italic"] }
"attribute" = "aqua" "constructor" = "green"
"constructor" = "yellow" "module" = "yellow"
"module" = "blue" "special" = "blue"
"special" = "orange"
"markup.heading.marker" = "grey2" "markup.heading.marker" = "grey1"
"markup.heading.1" = { fg = "red", modifiers = ["bold"] } "markup.heading.1" = { fg = "red", modifiers = ["bold"] }
"markup.heading.2" = { fg = "orange", modifiers = ["bold"] } "markup.heading.2" = { fg = "orange", modifiers = ["bold"] }
"markup.heading.3" = { fg = "yellow", modifiers = ["bold"] } "markup.heading.3" = { fg = "yellow", modifiers = ["bold"] }
"markup.heading.4" = { fg = "green", modifiers = ["bold"] } "markup.heading.4" = { fg = "green", modifiers = ["bold"] }
"markup.heading.5" = { fg = "blue", modifiers = ["bold"] } "markup.heading.5" = { fg = "blue", modifiers = ["bold"] }
"markup.heading.6" = { fg = "fg", modifiers = ["bold"] } "markup.heading.6" = { fg = "purple", modifiers = ["bold"] }
"markup.list" = "red" "markup.list" = "red"
"markup.bold" = { modifiers = ["bold"] } "markup.bold" = { modifiers = ["bold"] }
"markup.italic" = { modifiers = ["italic"] } "markup.italic" = { modifiers = ["italic"] }
"markup.strikethrough" = { modifiers = ["crossed_out"] } "markup.strikethrough" = { modifiers = ["crossed_out"] }
"markup.link.url" = { fg = "blue", modifiers = ["underlined"] } "markup.link.url" = { fg = "blue", underline = { style = "line" } }
"markup.link.label" = "orange"
"markup.link.text" = "purple" "markup.link.text" = "purple"
"markup.quote" = "grey2" "markup.quote" = "grey1"
"markup.raw" = "green" "markup.raw.inline" = "green"
"markup.raw.block" = "aqua"
"diff.plus" = "green" "diff.plus" = "green"
"diff.delta" = "orange" "diff.delta" = "blue"
"diff.minus" = "red" "diff.minus" = "red"
"ui.background" = { bg = "bg0" } "ui.background" = { bg = "bg0" }
"ui.background.separator" = "grey0" "ui.background.separator" = "bg_visual"
"ui.cursor" = { fg = "bg0", bg = "fg" } "ui.cursor" = { fg = "bg1", bg = "grey2" }
"ui.cursor.match" = { fg = "orange", bg = "bg_yellow" }
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" } "ui.cursor.insert" = { fg = "bg0", bg = "grey1" }
"ui.cursor.select" = { fg = "bg0", bg = "blue" } "ui.cursor.select" = { fg = "bg0", bg = "blue" }
"ui.cursor.match" = { bg = "bg4", modifiers = ["bold"] }
"ui.cursor.primary" = { fg = "bg0", bg = "fg" }
"ui.cursorline.primary" = { bg = "bg1" } "ui.cursorline.primary" = { bg = "bg1" }
"ui.cursorline.secondary" = { bg = "bg1" } "ui.cursorline.secondary" = { bg = "bg2" }
"ui.selection" = { bg = "bg3" } "ui.selection" = { bg = "bg3" }
"ui.linenr" = "grey0" "ui.linenr" = "grey0"
"ui.linenr.selected" = "fg" "ui.linenr.selected" = "grey2"
"ui.statusline" = { fg = "grey2", bg = "bg3" } "ui.statusline" = { fg = "grey2", bg = "bg3" }
"ui.statusline.inactive" = { fg = "grey0", bg = "bg1" } "ui.statusline.inactive" = { fg = "grey0", bg = "bg1" }
"ui.statusline.normal" = { fg = "bg0", bg = "grey2", modifiers = ["bold"] } "ui.statusline.normal" = { fg = "bg0", bg = "statusline1", modifiers = [
"ui.statusline.insert" = { fg = "bg0", bg = "yellow", modifiers = ["bold"] } "bold",
] }
"ui.statusline.insert" = { fg = "bg0", bg = "statusline2", modifiers = [
"bold",
] }
"ui.statusline.select" = { fg = "bg0", bg = "blue", modifiers = ["bold"] } "ui.statusline.select" = { fg = "bg0", bg = "blue", modifiers = ["bold"] }
"ui.bufferline" = { fg = "grey0", bg = "bg1" } "ui.bufferline" = { fg = "grey2", bg = "bg3" }
"ui.bufferline.active" = { fg = "fg", bg = "bg3", modifiers = ["bold"] } "ui.bufferline.active" = { fg = "bg0", bg = "statusline1", modifiers = [
"bold",
] }
"ui.popup" = { fg = "grey2", bg = "bg2" } "ui.popup" = { fg = "grey2", bg = "bg2" }
"ui.window" = { fg = "grey0", bg = "bg0" } "ui.window" = { fg = "bg4", bg = "bg_dim" }
"ui.help" = { fg = "fg", bg = "bg2" } "ui.help" = { fg = "fg", bg = "bg2" }
"ui.text" = "fg" "ui.text" = "fg"
"ui.text.focus" = "fg" "ui.text.focus" = "fg"
@ -85,38 +99,43 @@
"ui.virtual.indent-guide" = { fg = "bg4" } "ui.virtual.indent-guide" = { fg = "bg4" }
"ui.virtual.ruler" = { bg = "bg3" } "ui.virtual.ruler" = { bg = "bg3" }
"hint" = "blue" "hint" = "green"
"info" = "aqua" "info" = "blue"
"warning" = "yellow" "warning" = "yellow"
"error" = "red" "error" = "red"
"diagnostic.hint" = { underline = { color = "blue", style = "curl" } } "diagnostic.hint" = { underline = { color = "green", style = "curl" } }
"diagnostic.info" = { underline = { color = "aqua", style = "curl" } } "diagnostic.info" = { underline = { color = "blue", style = "curl" } }
"diagnostic.warning" = { underline = { color = "yellow", style = "curl" } } "diagnostic.warning" = { underline = { color = "yellow", style = "curl" } }
"diagnostic.error" = { underline = { color = "red", style = "curl" } } "diagnostic.error" = { underline = { color = "red", style = "curl" } }
[palette] [palette]
bg0 = "#fff9e8" bg_dim = "#efebd4"
bg1 = "#f7f4e0" bg0 = "#fdf6e3"
bg2 = "#f0eed9" bg1 = "#f4f0d9"
bg3 = "#e9e8d2" bg2 = "#efebd4"
bg4 = "#e1ddcb" bg3 = "#e6e2cc"
bg5 = "#bec5b2" bg4 = "#e0dcc7"
bg_visual = "#edf0cd" bg5 = "#bdc3af"
bg_red = "#fce5dc" bg_red = "#fbe3da"
bg_green = "#f1f3d4" bg_visual = "#eaedc8"
bg_blue = "#eaf2eb" bg_yellow = "#faedcd"
bg_yellow = "#fbefd0" bg_green = "#f0f1d2"
bg_blue = "#e9f0e9"
fg = "#5c6a72" fg = "#5c6a72"
red = "#f85552" red = "#f85552"
orange = "#f57d26" orange = "#f57d26"
yellow = "#dfa000" yellow = "#dfa000"
green = "#8da101" green = "#8da101"
aqua = "#35a77c"
blue = "#3a94c5" blue = "#3a94c5"
aqua = "#35a77c"
purple = "#df69ba" purple = "#df69ba"
grey0 = "#a6b0a0" grey0 = "#a6b0a0"
grey1 = "#939f91" grey1 = "#939f91"
grey2 = "#829181" grey2 = "#829181"
statusline1 = "#93b259"
statusline2 = "#708089"
statusline3 = "#e66868"

Loading…
Cancel
Save