Last active
October 3, 2023 14:08
-
-
Save CptPotato/d71a389010d4180824f0c079cbf96a04 to your computer and use it in GitHub Desktop.
Everforest Dark theme (with increased contrast) for Helix editor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Everforest (higher contrast variant) | |
# Author: CptPotato | |
# Original Author: | |
# URL: https://github.com/sainnhe/everforest | |
# Filename: autoload/everforest.vim | |
# Author: sainnhe | |
# Email: [email protected] | |
# License: MIT License | |
"escape" = "orange" | |
"type" = "yellow" | |
"constant" = "purple" | |
"number" = "purple" | |
"string" = "grey2" | |
"comment" = "grey0" | |
"variable" = "fg" | |
"variable.builtin" = "blue" | |
"variable.parameter" = "fg" | |
"variable.property" = "fg" | |
"label" = "aqua" | |
"punctuation" = "grey2" | |
"punctuation.delimiter" = "grey2" | |
"punctuation.bracket" = "fg" | |
"keyword" = "red" | |
"operator" = "orange" | |
"function" = "green" | |
"function.builtin" = "blue" | |
"function.macro" = "aqua" | |
"tag" = "yellow" | |
"namespace" = "aqua" | |
"attribute" = "aqua" | |
"constructor" = "yellow" | |
"module" = "blue" | |
"property" = "fg" | |
"special" = "orange" | |
"ui.background" = { bg = "bg0" } | |
"ui.cursor" = { fg = "bg0", bg = "fg" } | |
"ui.cursor.match" = { fg = "orange", bg = "bg_yellow" } | |
"ui.cursor.insert" = { fg = "bg0", bg = "grey1" } | |
"ui.cursor.select" = { fg = "bg0", bg = "blue" } | |
"ui.linenr" = "grey0" | |
"ui.linenr.selected" = "fg" | |
"ui.statusline" = { fg = "grey2", bg = "bg2" } | |
"ui.statusline.inactive" = { fg = "grey0", bg = "bg0" } | |
"ui.popup" = { fg = "grey2", bg = "bg1" } | |
"ui.window" = { fg = "grey2", bg = "bg1" } | |
"ui.help" = { fg = "fg", bg = "bg1" } | |
"ui.text" = "fg" | |
"ui.text.focus" = "fg" | |
"ui.menu" = { fg = "fg", bg = "bg2" } | |
"ui.menu.selected" = { fg = "bg0", bg = "green" } | |
"ui.selection" = { bg = "bg3" } | |
"hint" = "blue" | |
"info" = "aqua" | |
"warning" = "yellow" | |
"error" = "red" | |
"diagnostic" = { modifiers = ["underlined"] } | |
[palette] | |
bg0 = "#1d2329" | |
bg1 = "#232b30" | |
bg2 = "#2b353a" | |
bg3 = "#323e44" | |
bg4 = "#3a474b" | |
bg5 = "#435150" | |
bg_visual = "#3f2935" | |
bg_red = "#3d2d32" | |
bg_green = "#2f3c33" | |
bg_blue = "#293e4b" | |
bg_yellow = "#39382f" | |
fg = "#dbcdac" | |
red = "#ec7678" | |
orange = "#ec966a" | |
yellow = "#e3c277" | |
green = "#a9c678" | |
aqua = "#7cc68e" | |
blue = "#77c1b7" | |
purple = "#de97bb" | |
grey0 = "#6b7974" | |
grey1 = "#849489" | |
grey2 = "#9caba0" |
Author
CptPotato
commented
Dec 31, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment