Autumn theme: improve markup highlighting (#2270)

Co-authored-by: Jens Getreu <jens.getreu@dlh.lu>
pull/2273/head
Jens Getreu 3 years ago committed by GitHub
parent b65fb0f64a
commit 8eb15f5283
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -32,9 +32,9 @@
"string" = "my_green" "string" = "my_green"
"variable.other.member" = "my_brown" "variable.other.member" = "my_brown"
"constant.character.escape" = "my_turquoise" "constant.character.escape" = "my_turquoise"
"function" = "my_yellow" "function" = "my_yellow1"
"constructor" = "my_yellow" "constructor" = "my_yellow1"
"special" = "my_yellow" "special" = "my_yellow1"
"keyword" = "my_red" "keyword" = "my_red"
"label" = "my_red" "label" = "my_red"
"namespace" = "my_white3" "namespace" = "my_white3"
@ -42,11 +42,11 @@
"ui.virtual.whitespace" = { fg = "my_gray5" } "ui.virtual.whitespace" = { fg = "my_gray5" }
"ui.virtual.ruler" = { bg = "my_gray1" } "ui.virtual.ruler" = { bg = "my_gray1" }
"markup.heading" = "my_yellow" "markup.heading" = "my_yellow1"
"markup.list" = "my_white2" "markup.list" = "my_white2"
"markup.bold" = { fg = "my_white3", modifiers = ["bold"] } "markup.bold" = { modifiers = ["bold"] }
"markup.italic" = { fg = "my_white3", modifiers = ["italic"] } "markup.italic" = { modifiers = ["italic"] }
"markup.link.url" = { fg = "my_green", modifiers = ["underlined"] } "markup.link.url" = "my_turquoise2"
"markup.link.text" = "my_white2" "markup.link.text" = "my_white2"
"markup.quote" = "my_brown" "markup.quote" = "my_brown"
"markup.raw" = "my_green" "markup.raw" = "my_green"
@ -57,10 +57,10 @@
"diagnostic" = { modifiers = ["underlined"] } "diagnostic" = { modifiers = ["underlined"] }
"ui.gutter" = { bg = "my_gray2" } "ui.gutter" = { bg = "my_gray2" }
"info" = "my_yellow" "hint" = "my_gray5"
"hint" = "my_gray4" "debug" = "my_yellow2"
"debug" = "my_gray4" "info" = "my_yellow2"
"warning" = "my_yellow" "warning" = "my_yellow2"
"error" = "my_red" "error" = "my_red"
[palette] [palette]
@ -70,13 +70,15 @@ my_gray2 = "#3a3a3a" # Lighter Background (Used for status bars, line number
my_gray3 = "#525252" # Selection Background my_gray3 = "#525252" # Selection Background
my_gray4 = "#7c7c7c" # Comments, Invisibles, Line Highlighting my_gray4 = "#7c7c7c" # Comments, Invisibles, Line Highlighting
my_gray5 = "#aaaaaa" # Dark Foreground (Used for status bars) my_gray5 = "#aaaaaa" # Dark Foreground (Used for status bars)
my_white = "#F3F2CC" # Default Foreground, Caret, Delimiters, Operators
my_gray6 = "#e8e8e8" # Light Foreground (Not often used) my_gray6 = "#e8e8e8" # Light Foreground (Not often used)
my_gray7 = "#f8f8f8" # Light Background (Not often used) my_gray7 = "#f8f8f8" # Light Background (Not often used)
my_white = "#F3F2CC" # Default Foreground, Caret, Delimiters, Operators
my_white2 = "#F3F2CC" # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted my_white2 = "#F3F2CC" # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted
my_turquoise = "#86c1b9" # Support, Regular Expressions, Escape Characters, Markup Quotes
my_white3 = "#F3F2CC" # Classes, Markup Bold, Search Text Background my_white3 = "#F3F2CC" # Classes, Markup Bold, Search Text Background
my_green = "#8daf67" # Strings, Inherited Class, Markup Code, Diff Inserted my_turquoise = "#86c1b9" # Support, Regular Expressions, Escape Characters
my_brown = "#cfba8b" # Member variables my_turquoise2 = "#72a59e" # URL
my_yellow = "#FAD566" # Functions, Methods, Attribute IDs, Headings my_green = "#99be70" # Strings, Inherited Class, Markup Code, Diff Inserted
my_red = "#F05E48" # Keywords, Storage, Selector, Markup Italic, Diff Changed my_brown = "#cfba8b" # Member variables, Quotes
my_yellow1 = "#FAD566" # Functions, Methods, Attribute IDs, Headings
my_yellow2 = "#ffff9f" # Debug, Info
my_red = "#F05E48" # Keywords, Storage, Selector, Diff Changed

Loading…
Cancel
Save