Skip to content

Commit

Permalink
Autumn theme: improve markup highlighting (#2270)
Browse files Browse the repository at this point in the history
Co-authored-by: Jens Getreu <[email protected]>
  • Loading branch information
getreu and Jens Getreu authored Apr 25, 2022
1 parent b65fb0f commit 8eb15f5
Showing 1 changed file with 29 additions and 27 deletions.
56 changes: 29 additions & 27 deletions runtime/themes/autumn.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,21 +32,21 @@
"string" = "my_green"
"variable.other.member" = "my_brown"
"constant.character.escape" = "my_turquoise"
"function" = "my_yellow"
"constructor" = "my_yellow"
"special" = "my_yellow"
"function" = "my_yellow1"
"constructor" = "my_yellow1"
"special" = "my_yellow1"
"keyword" = "my_red"
"label" = "my_red"
"namespace" = "my_white3"
"ui.help" = { fg = "my_gray6", bg = "my_gray2" }
"ui.virtual.whitespace" = { fg = "my_gray5" }
"ui.virtual.ruler" = { bg = "my_gray1" }

"markup.heading" = "my_yellow"
"markup.heading" = "my_yellow1"
"markup.list" = "my_white2"
"markup.bold" = { fg = "my_white3", modifiers = ["bold"] }
"markup.italic" = { fg = "my_white3", modifiers = ["italic"] }
"markup.link.url" = { fg = "my_green", modifiers = ["underlined"] }
"markup.bold" = { modifiers = ["bold"] }
"markup.italic" = { modifiers = ["italic"] }
"markup.link.url" = "my_turquoise2"
"markup.link.text" = "my_white2"
"markup.quote" = "my_brown"
"markup.raw" = "my_green"
Expand All @@ -57,26 +57,28 @@

"diagnostic" = { modifiers = ["underlined"] }
"ui.gutter" = { bg = "my_gray2" }
"info" = "my_yellow"
"hint" = "my_gray4"
"debug" = "my_gray4"
"warning" = "my_yellow"
"hint" = "my_gray5"
"debug" = "my_yellow2"
"info" = "my_yellow2"
"warning" = "my_yellow2"
"error" = "my_red"

[palette]
my_gray0 = "#292929" # Default Background
my_gray1 = "#2e2e2e" # Ruler
my_gray2 = "#3a3a3a" # Lighter Background (Used for status bars, line number and folding marks)
my_gray3 = "#525252" # Selection Background
my_gray4 = "#7c7c7c" # Comments, Invisibles, Line Highlighting
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_gray7 = "#f8f8f8" # Light Background (Not often used)
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_green = "#8daf67" # Strings, Inherited Class, Markup Code, Diff Inserted
my_brown = "#cfba8b" # Member variables
my_yellow = "#FAD566" # Functions, Methods, Attribute IDs, Headings
my_red = "#F05E48" # Keywords, Storage, Selector, Markup Italic, Diff Changed
my_gray0 = "#292929" # Default Background
my_gray1 = "#2e2e2e" # Ruler
my_gray2 = "#3a3a3a" # Lighter Background (Used for status bars, line number and folding marks)
my_gray3 = "#525252" # Selection Background
my_gray4 = "#7c7c7c" # Comments, Invisibles, Line Highlighting
my_gray5 = "#aaaaaa" # Dark Foreground (Used for status bars)
my_gray6 = "#e8e8e8" # Light Foreground (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_white3 = "#F3F2CC" # Classes, Markup Bold, Search Text Background
my_turquoise = "#86c1b9" # Support, Regular Expressions, Escape Characters
my_turquoise2 = "#72a59e" # URL
my_green = "#99be70" # Strings, Inherited Class, Markup Code, Diff Inserted
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

0 comments on commit 8eb15f5

Please sign in to comment.