|
| 1 | +# Palette based on https://github.com/NLKNguyen/papercolor-theme |
| 2 | +# Author: Soc Virnyl Estela <socvirnyl.estela@gmail.com> |
| 3 | + |
| 4 | +"ui.linenr.selected" = { fg = "linenr_fg_selected" } |
| 5 | +"ui.background" = {bg="background"} |
| 6 | +"ui.text" = "foreground" |
| 7 | +"ui.text.focus" = { fg = "selection_background", modifiers = ["bold"]} |
| 8 | +"ui.selection" = {bg="selection_background", fg="selection_foreground"} |
| 9 | +"ui.cursorline" = {bg="cursorline_background"} |
| 10 | +"ui.statusline" = {bg="paper_bar_bg", fg="regular0"} |
| 11 | +"ui.statusline.select" = {bg="background", fg="bright7"} |
| 12 | +"ui.statusline.normal" = {bg="background", fg="bright3"} |
| 13 | +"ui.statusline.inactive" = {bg="background", fg="bright0"} |
| 14 | +"ui.virtual.whitespace" = { fg = "regular5" } |
| 15 | +"ui.virtual.ruler" = {bg="cursorline_background"} |
| 16 | +"ui.cursor.match" = {bg = "regular5", fg = "regular0"} |
| 17 | +"ui.cursor" = {bg = "regular5", fg = "background"} |
| 18 | +"ui.window" = {bg = "#303030", fg = "bright2"} |
| 19 | +"ui.help" = {bg = "background", fg = "bright2"} |
| 20 | +"ui.popup" = {bg = "#303030", fg = "bright6"} |
| 21 | +"ui.menu" = {bg = "#303030", fg = "bright6"} |
| 22 | +"ui.menu.selected" = {bg = "#C6C6C6", fg="selection_foreground"} |
| 23 | + |
| 24 | +"markup.heading" = { fg = "regular4", modifiers = ["bold"] } |
| 25 | +"markup.heading.1" = { fg = "bright2", modifiers = ["bold"] } |
| 26 | +"markup.heading.2" = { fg = "bright5", modifiers = ["bold"] } |
| 27 | +"markup.heading.3" = { fg = "bright3", modifiers = ["bold"] } |
| 28 | +"markup.heading.4" = { fg = "bright5", modifiers = ["bold"] } |
| 29 | +"markup.heading.5" = { fg = "bright5", modifiers = ["bold"] } |
| 30 | +"markup.heading.6" = { fg = "bright5", modifiers = ["bold"] } |
| 31 | +"markup.list" = "bright3" |
| 32 | +"markup.bold" = { fg = "foreground", modifiers = ["bold"] } |
| 33 | +"markup.italic" = { fg = "bright0", modifiers = ["italic"] } |
| 34 | +"markup.link.url" = { fg = "bright6", modifiers = ["underlined"] } |
| 35 | +"markup.link.text" = "bright2" |
| 36 | +"markup.link.label" = { fg = "regular2", modifiers = ["bold"] } |
| 37 | +"markup.raw" = "foreground" |
| 38 | + |
| 39 | +"string" = "foreground" |
| 40 | +"attribute" = "bright7" |
| 41 | +"keyword" = { fg = "regular4", modifiers = ["bold"]} |
| 42 | +"keyword.directive" = "regular4" |
| 43 | +"keyword.control.conditional" = "bright3" |
| 44 | +"keyword.function" = "regular4" |
| 45 | +"namespace" = "bright1" |
| 46 | +"type" = "bright2" |
| 47 | +"type.builtin" = { fg = "foreground", modifiers = ["bold"]} |
| 48 | +"variable" = "foreground" |
| 49 | +"variable.builtin" = "cyan" |
| 50 | +"variable.other.member" = "cyan" |
| 51 | +"variable.parameter" = "foreground" |
| 52 | + |
| 53 | +"special" = "#3E999F" |
| 54 | +"function" = "bright6" |
| 55 | +"constructor" = "regular4" |
| 56 | +"function.builtin" = { fg = "foreground", modifiers = ["bold"]} |
| 57 | +"function.macro" = { fg = "regular4", modifiers = ["bold"] } |
| 58 | +"comment" = { fg = "#686868", modifiers = ["dim"] } |
| 59 | +"ui.linenr" = { fg = "bright0" } |
| 60 | +"module" = "regular4" |
| 61 | +"constant" = "bright5" |
| 62 | +"constant.builtin" = "bright6" |
| 63 | +"constant.numeric" = "bright5" |
| 64 | +"constant.character.escape" = { fg = "foreground", modifiers = ["bold"]} |
| 65 | +"operator" = { fg = "regular4", modifiers = ["bold"]} |
| 66 | + |
| 67 | +"label" = { fg = "selection_background", modifiers = ["bold", "italic"] } |
| 68 | + |
| 69 | +"diff.plus" = "regular2" |
| 70 | +"diff.delta" = "regular6" |
| 71 | +"diff.minus" = "regular1" |
| 72 | + |
| 73 | +"warning" = "bright4" |
| 74 | +"error" = "regular1" |
| 75 | +"info" = "bright4" |
| 76 | +diagnostic = { modifiers = ["bold", "underlined"]} |
| 77 | + |
| 78 | + |
| 79 | +[palette] |
| 80 | +background="#1c1c1c" |
| 81 | +foreground="#d0d0d0" |
| 82 | +regular0="#1c1c1c" |
| 83 | +regular1="#af005f" |
| 84 | +regular2="#5faf00" |
| 85 | +regular3="#d7af5f" |
| 86 | +regular4="#5fafd7" |
| 87 | +regular5="#808080" |
| 88 | +regular6="#d7875f" |
| 89 | +regular7="#d0d0d0" |
| 90 | +bright0="#585858" |
| 91 | +bright1="#5faf5f" |
| 92 | +bright2="#afd700" |
| 93 | +bright3="#af87d7" |
| 94 | +bright4="#FFAF00" |
| 95 | +bright5="#ff5faf" |
| 96 | +bright6="#00afaf" |
| 97 | +bright7="#5f8787" |
| 98 | +selection_foreground="#585858" |
| 99 | +selection_background="#8787AF" |
| 100 | +cursorline_background="#d0d0d0" |
| 101 | +paper_bar_bg="#5F8787" |
| 102 | +black="#1c1c1c" |
| 103 | +red="#af005f" |
| 104 | +green="#5faf00" |
| 105 | +yellow="#d7af5f" |
| 106 | +blue="#5fafd7" |
| 107 | +magenta="#808080" |
| 108 | +cyan="#d7875f" |
| 109 | +gray="#d0d0d0" |
| 110 | +light-red="#5faf5f" |
| 111 | +light-green="#afd700" |
| 112 | +light-yellow="#af87d7" |
| 113 | +light-blue="#FFAF00" |
| 114 | +light-magenta="#ff5faf" |
| 115 | +light-cyan="#00afaf" |
| 116 | +light-gray="#5f8787" |
| 117 | +white="#808080" |
| 118 | +linenr_fg_selected="#FFFF00" |
0 commit comments