A post-modern development environment.
0

Configure Feed

Select the types of activity you want to include in your feed.

burin / theme.toml
3.8 kB 118 lines
1attribute = "lilac" 2keyword = "almond" 3"keyword.directive" = "lilac" # -- preprocessor comments (#if in C) 4namespace = "lilac" 5punctuation = "lavender" 6"punctuation.delimiter" = "lavender" 7operator = "lilac" 8special = "honey" 9"variable.other.member" = "white" 10variable = "lavender" 11# variable = "almond" # TODO: metavariables only 12# "variable.parameter" = { fg = "lavender", modifiers = ["underlined"] } 13"variable.parameter" = { fg = "lavender" } 14"variable.builtin" = "mint" 15type = "white" 16"type.builtin" = "white" # TODO: distinguish? 17constructor = "lilac" 18function = "white" 19"function.macro" = "lilac" 20"function.builtin" = "white" 21tag = "almond" 22comment = "sirocco" 23constant = "white" 24"constant.builtin" = "white" 25string = "silver" 26"constant.numeric" = "chamois" 27"constant.character.escape" = "honey" 28# used for lifetimes 29label = "honey" 30tabstop = { modifiers = ["italic"], bg = "bossanova" } 31 32"markup.heading" = "lilac" 33"markup.bold" = { modifiers = ["bold"] } 34"markup.italic" = { modifiers = ["italic"] } 35"markup.strikethrough" = { modifiers = ["crossed_out"] } 36"markup.link.url" = { fg = "silver", modifiers = ["underlined"] } 37"markup.link.text" = "almond" 38"markup.raw" = "almond" 39 40"diff.plus" = "#35bf86" 41"diff.minus" = "#f22c86" 42"diff.delta" = "#6f44f0" 43"diff.conflict.marker" = { bg = "#463553" } 44"diff.conflict.current" = { bg = "#442b56" } 45"diff.conflict.base" = { bg = "#382e40" } 46"diff.conflict.incoming" = { bg = "#382e53" } 47 48# TODO: differentiate doc comment 49# concat (ERROR) @error.syntax and "MISSING ;" selectors for errors 50 51"ui.background" = { bg = "midnight" } 52"ui.background.separator" = { fg = "comet" } 53"ui.linenr" = { fg = "comet" } 54"ui.linenr.selected" = { fg = "lilac" } 55"ui.statusline" = { fg = "lilac", bg = "revolver" } 56"ui.statusline.inactive" = { fg = "lavender", bg = "revolver" } 57"ui.popup" = { bg = "revolver" } 58"ui.window" = { fg = "bossanova" } 59"ui.help" = { bg = "#7958DC", fg = "#171452" } 60"ui.text" = { fg = "lavender" } 61"ui.text.focus" = { fg = "white" } 62"ui.text.inactive" = "sirocco" 63"ui.text.directory" = { fg = "lilac" } 64"ui.virtual" = { fg = "comet" } 65"ui.virtual.ruler" = { bg = "bossanova" } 66"ui.virtual.jump-label" = { fg = "apricot", modifiers = ["bold"] } 67 68"ui.virtual.indent-guide" = { fg = "comet" } 69 70"ui.selection" = { bg = "#540099" } 71"ui.selection.primary" = { bg = "#540099" } 72# TODO: namespace ui.cursor as ui.selection.cursor? 73"ui.cursor.select" = { bg = "delta" } 74"ui.cursor.insert" = { bg = "white" } 75"ui.cursor.primary.select" = { bg = "delta" } 76"ui.cursor.primary.insert" = { bg = "white" } 77"ui.cursor.match" = { fg = "#212121", bg = "#6C6999" } 78"ui.cursor" = { modifiers = ["reversed"] } 79"ui.cursorline.primary" = { bg = "bossanova" } 80"ui.highlight" = { bg = "bossanova" } 81"ui.highlight.frameline" = { bg = "#634450" } 82"ui.debug" = { fg = "#634450" } 83"ui.debug.breakpoint" = { fg = "apricot" } 84"ui.menu" = { fg = "lavender", bg = "revolver" } 85"ui.menu.selected" = { fg = "revolver", bg = "white" } 86"ui.menu.scroll" = { fg = "lavender", bg = "comet" } 87 88"diagnostic.hint" = { underline = { color = "silver", style = "curl" } } 89"diagnostic.info" = { underline = { color = "delta", style = "curl" } } 90"diagnostic.warning" = { underline = { color = "lightning", style = "curl" } } 91"diagnostic.error" = { underline = { color = "apricot", style = "curl" } } 92"diagnostic.unnecessary" = { modifiers = ["dim"] } 93"diagnostic.deprecated" = { modifiers = ["crossed_out"] } 94 95warning = "lightning" 96error = "apricot" 97info = "delta" 98hint = "silver" 99 100[palette] 101white = "#ffffff" 102lilac = "#dbbfef" 103lavender = "#a4a0e8" 104comet = "#5a5977" 105bossanova = "#452859" 106midnight = "#3b224c" 107revolver = "#281733" 108 109silver = "#cccccc" 110sirocco = "#697C81" 111mint = "#9ff28f" 112almond = "#eccdba" 113chamois = "#E8DCA0" 114honey = "#efba5d" 115 116apricot = "#f47868" 117lightning = "#ffcd1c" 118delta = "#6F44F0"