Skip to content

Commit

Permalink
address review
Browse files Browse the repository at this point in the history
  • Loading branch information
kirawi committed Jan 21, 2023
1 parent a740fc9 commit c922390
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions runtime/themes/fleet_dark.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# Original author: @krfl
# Contributors:
# @matoous
# @kirawi

"attribute" = "Lime"

Expand Down Expand Up @@ -64,13 +65,12 @@

# ui specific
"ui.background" = { bg = "Gray 10" } # .separator
"ui.background.separator" = { bg = "Gray 50"}
"ui.statusline" = { fg = "Gray 120", bg = "Gray 10" } # .inactive / .normal / .insert / .select
# "ui.statusline.normal" = { fg = "lightest", bg = "darker"}
# "ui.statusline.insert" = { fg = "lightest", bg = "blue_accent" }
# "ui.statusline.select" = { fg = "lightest", bg = "orange_accent" }

"ui.cursor" = { bg = "Gray 120", modifiers = ["reversed"] } # .insert / .select / .match / .primary
"ui.cursor" = { modifiers = ["reversed"] } # .insert / .select / .match / .primary
"ui.cursor.match" = { bg = "Blue 30" } # .insert / .select / .match / .primary
"ui.selection" = { bg = "Gray 80" } # .primary
"ui.selection.primary" = { bg = "Blue 40" }
Expand All @@ -80,8 +80,8 @@
"ui.linenr.selected" = "Gray 110"

"ui.popup" = { fg = "Gray 120", bg = "Gray 20" } # .info
"ui.window" = { bg = "Gray 50" }
"ui.help" = { fg = "light", bg = "Gray 20" }
"ui.window" = { fg = "Gray 50" }
"ui.help" = { fg = "Gray 120", bg = "Gray 20" }
"ui.menu" = { fg = "Gray 120", bg = "Gray 20" } # .selected
"ui.menu.selected" = { fg = "White", bg = "Blue 40" } # .selected
# Calculated as #ffffff with 30% opacity
Expand All @@ -90,19 +90,18 @@
"ui.text" = "Gray 120" # .focus / .info
"ui.text.focus" = { fg = "White", bg = "Blue 40" }

"ui.virtual" = "Gray 120" # .whitespace
"ui.virtual" = "Gray 80" # .whitespace
# "ui.virtual.ruler" = { bg = "darker"}

"hint" = "Gray 80"
"info" = "#A366C4"
"warning" = "#FACb66"
"error" = "#FF5269"

"diagnostic" = { modifiers = [] }
"diagnostic.hint" = { underline = { color = "light", style = "curl" } }
"diagnostic.info" = { underline = { color = "blue_accent", style = "curl" } }
"diagnostic.warning" = { underline = { color = "Yellow_accent", style = "curl" } }
"diagnostic.error" = { underline = { color = "red_error", style = "curl" } }
"diagnostic.hint" = { underline = { color = "Gray 80", style = "solid" } }
"diagnostic.info" = { underline = { color = "#A366C4", style = "solid" } }
"diagnostic.warning" = { underline = { color = "#FACB66", style = "solid" } }
"diagnostic.error" = { underline = { color = "#FF5269", style = "solid" } }

[palette]
"White" = "#ffffff"
Expand Down

0 comments on commit c922390

Please sign in to comment.