You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
helix/runtime/themes/black_and_white.toml

61 lines
3.1 KiB
TOML

1 month ago
# Author: ChiefMateStarbuck <septimusguy@gmail.com>
"attribute" = { modifiers = ["italic"] }
1 month ago
"diagnostic" = { underline = { style = "curl" } }
"diagnostic.hint" = { underline = { style = "curl" } }
"diagnostic.warning" = { underline = { style = "curl" } }
"diagnostic.error" = { underline = { style = "curl" } }
"diagnostic.info" = { underline = { style = "curl" } }
1 month ago
"diagnostic.unnecessary" = { modifiers = ["dim"] }
"diagnostic.deprecated" = { modifiers = ["crossed_out"] }
"keyword.storage.type" = { modifiers = ["italic"] }
1 month ago
"markup.bold" = { modifiers = ["bold"] }
"markup.heading" = { modifiers = ["bold"] }
"markup.italic" = { modifiers = ["italic"] }
"markup.quote" = { modifiers = ["italic"] }
1 month ago
"markup.strikethrough" = { modifiers = ["crossed_out"] }
"type" = { modifiers = ["italic"] }
"type.enum.variant" = { modifiers = ["italic"] }
1 month ago
"ui.background" = { bg = "background" }
"ui.bufferline" = { fg = "background", bg = "foreground"}
"ui.bufferline.active" = { fg = "foreground", bg = "background"}
"ui.cursor" = { bg = "primary"}
"ui.cursor.insert" = { bg = "primary"}
"ui.cursor.match" = { bg = "primary"}
"ui.cursor.normal" = { bg = "primary"}
"ui.cursor.select" = { bg = "primary"}
"ui.cursor.primary.insert" = { fg = "background", bg = "foreground" }
"ui.cursor.primary.normal" = { fg = "background", bg = "foreground" }
"ui.cursor.primary.select" = { fg = "background", bg = "foreground" }
1 month ago
"ui.cursorline.primary" = { bg = "primary" }
"ui.linenr" = { fg = "foreground" }
"ui.menu" = { fg = "background", bg = "foreground" }
"ui.menu.selected" = { fg = "foreground", bg = "background"}
1 month ago
"ui.popup" = { fg = "foreground", bg = "background" }
"ui.selection" = { bg = "secondary", underline = { style = "curl" } }
"ui.selection.primary" = { bg = "primary", underline = { style = "curl" }}
1 month ago
"ui.statusline" = { fg = "background", bg = "foreground" }
"ui.statusline.insert" = { modifiers = ["bold"] }
"ui.statusline.normal" = { modifiers = ["bold"] }
"ui.statusline.select" = { modifiers = ["bold"] }
1 month ago
"ui.text" = { fg = "foreground" }
"ui.text.focus" = { fg = "foreground" }
"ui.virtual.inlay-hint.parameter" = { modifiers = ["italic", "dim"] }
"ui.virtual.inlay-hint.type" = { modifiers = ["italic", "dim"] }
"ui.virtual.jump-label" = { modifiers = ["bold"] }
1 month ago
"variable.builtin" = { modifiers = ["bold"] }
"variable.parameter" = { modifiers = ["bold"] }
1 month ago
[palette]
foreground = "#ffffff"
background = "#000000"
primary = "#bababa"
secondary = "#555555"