mirror of https://github.com/helix-editor/helix
Add monokai pro theme (#1206)
* add monokai_pro theme * add monokai_pro theme * claim the inspired theme and original author * make diagnostic underlinedpull/1220/head
parent
e2b428cc2d
commit
27ffc79c44
@ -0,0 +1,102 @@
|
||||
# Author : WindSoilder<WindSoilder@outlook.com>
|
||||
# The unofficial Monokai Pro theme, simply migrate from jetbrains monokai pro theme: https://github.com/subtheme-dev/monokai-pro
|
||||
# Credit goes to the original creator: https://monokai.pro
|
||||
|
||||
"ui.linenr.selected" = { bg = "base3" }
|
||||
"ui.text.focus" = { fg = "yellow", modifiers= ["bold"] }
|
||||
"ui.menu.selected" = { fg = "base2", bg = "yellow" }
|
||||
|
||||
"info" = "base8"
|
||||
"hint" = "base8"
|
||||
|
||||
# background color
|
||||
"ui.background" = { bg = "base2" }
|
||||
"ui.statusline.inactive" = { fg = "base8", bg = "base8x0c" }
|
||||
|
||||
# status bars, panels, modals, autocompletion
|
||||
"ui.statusline" = { bg = "base4" }
|
||||
"ui.popup" = { bg = "base3" }
|
||||
"ui.window" = { bg = "base3" }
|
||||
"ui.help" = { bg = "base3" }
|
||||
|
||||
# active line, highlighting
|
||||
"ui.selection" = { bg = "base4" }
|
||||
"ui.cursor.match" = { bg = "base4" }
|
||||
|
||||
# comments, nord3 based lighter color
|
||||
"comment" = { fg = "base5", modifiers = ["italic"] }
|
||||
"ui.linenr" = { fg = "base5" }
|
||||
|
||||
# cursor, variables, constants, attributes, fields
|
||||
"ui.cursor.primary" = { fg = "base7", modifiers = ["reversed"] }
|
||||
"attribute" = "blue"
|
||||
"variable" = "base8"
|
||||
"constant" = "orange"
|
||||
"variable.builtin" = "red"
|
||||
"constant.builtin" = "red"
|
||||
"namespace" = "base8"
|
||||
|
||||
# base text, punctuation
|
||||
"ui.text" = { fg = "base8" }
|
||||
"punctuation" = "base6"
|
||||
|
||||
# classes, types, primiatives
|
||||
"type" = "green"
|
||||
"type.builtin" = { fg = "red"}
|
||||
"label" = "base8"
|
||||
|
||||
# declaration, methods, routines
|
||||
"constructor" = "blue"
|
||||
"function" = "green"
|
||||
"function.macro" = { fg = "blue" }
|
||||
"function.builtin" = { fg = "cyan" }
|
||||
|
||||
# operator, tags, units, punctuations
|
||||
"operator" = "red"
|
||||
"variable.other.member" = "base8"
|
||||
|
||||
# keywords, special
|
||||
"keyword" = { fg = "red" }
|
||||
"keyword.directive" = "blue"
|
||||
"variable.parameter" = "#f59762"
|
||||
|
||||
# error
|
||||
"error" = "red"
|
||||
|
||||
# annotations, decorators
|
||||
"special" = "#f59762"
|
||||
"module" = "#f59762"
|
||||
|
||||
# warnings, escape characters, regex
|
||||
"warning" = "orange"
|
||||
"constant.character.escape" = { fg = "base8" }
|
||||
|
||||
# strings
|
||||
"string" = "yellow"
|
||||
|
||||
# integer, floating point
|
||||
"constant.numeric" = "purple"
|
||||
|
||||
# make diagnostic underlined, to distinguish with selection text.
|
||||
diagnostic = { modifiers = ["underlined"] }
|
||||
|
||||
[palette]
|
||||
# primary colors
|
||||
"red" = "#ff6188"
|
||||
"orange" = "#fc9867"
|
||||
"yellow" = "#ffd866"
|
||||
"green" = "#a9dc76"
|
||||
"blue" = "#78dce8"
|
||||
"purple" = "#ab9df2"
|
||||
# base colors, sorted from darkest to lightest
|
||||
"base0" = "#19181a"
|
||||
"base1" = "#221f22"
|
||||
"base2" = "#2d2a2e"
|
||||
"base3" = "#403e41"
|
||||
"base4" = "#5b595c"
|
||||
"base5" = "#727072"
|
||||
"base6" = "#939293"
|
||||
"base7" = "#c1c0c0"
|
||||
"base8" = "#fcfcfa"
|
||||
# variants (for when transparency isn't supported)
|
||||
"base8x0c" = "#363337" # using base2 as bg
|
Loading…
Reference in New Issue