Skip to content

Commit

Permalink
Adjust colors in tokyonight themes (#2606)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulgraydon authored May 29, 2022
1 parent b43074d commit 710c4a8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 8 deletions.
13 changes: 9 additions & 4 deletions runtime/themes/tokyonight.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
"constant" = { fg = "orange" }
"constant.character.escape" = { fg = "magenta" }
"function" = { fg = "blue", modifiers = ["italic"] }
"keyword" = { fg = "magenta" }
"function.macro" = { fg = "cyan" }
"keyword" = { fg = "cyan", modifiers = ["italic"] }
"keyword.control" = { fg = "magenta" }
"keyword.control.import" = { fg = "cyan" }
"keyword.operator" = { fg = "turquoise" }
"keyword.function" = { fg = "magenta", modifiers = ["italic"] }
"operator" = { fg = "turquoise" }
"punctuation" = { fg = "turquoise" }
"string" = { fg = "light-green" }
Expand All @@ -14,8 +18,8 @@
"type" = { fg = "teal" }
"namespace" = { fg = "blue" }
"variable" = { fg = "white" }
"variable.builtin" = { fg = "red", modifiers = ["italic"] }
"variable.other.member" = { fg = "magenta" }
"variable.builtin" = { fg = "red" }
"variable.other.member" = { fg = "green" }
"variable.parameter" = { fg = "yellow", modifiers = ["italic"] }

"diff.plus" = { fg = "green" }
Expand All @@ -38,7 +42,8 @@
"ui.statusline.inactive" = { fg = "foreground_gutter", bg = "background_menu" }
"ui.text" = { fg = "foreground" }
"ui.text.focus" = { fg = "cyan" }
"ui.virtual" = { fg = "foreground_gutter" }
"ui.virtual.ruler" = { bg = "foreground_gutter" }
"ui.virtual.whitespace" = { fg = "foreground_gutter" }
"ui.window" = { fg = "black" }

"error" = { fg = "red" }
Expand Down
13 changes: 9 additions & 4 deletions runtime/themes/tokyonight_storm.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@
"constant" = { fg = "orange" }
"constant.character.escape" = { fg = "magenta" }
"function" = { fg = "blue", modifiers = ["italic"] }
"keyword" = { fg = "magenta" }
"function.macro" = { fg = "cyan" }
"keyword" = { fg = "cyan", modifiers = ["italic"] }
"keyword.control" = { fg = "magenta" }
"keyword.control.import" = { fg = "cyan" }
"keyword.operator" = { fg = "turquoise" }
"keyword.function" = { fg = "magenta", modifiers = ["italic"] }
"operator" = { fg = "turquoise" }
"punctuation" = { fg = "turquoise" }
"string" = { fg = "light-green" }
Expand All @@ -14,8 +18,8 @@
"type" = { fg = "teal" }
"namespace" = { fg = "blue" }
"variable" = { fg = "white" }
"variable.builtin" = { fg = "red", modifiers = ["italic"] }
"variable.other.member" = { fg = "magenta" }
"variable.builtin" = { fg = "red" }
"variable.other.member" = { fg = "green" }
"variable.parameter" = { fg = "yellow", modifiers = ["italic"] }

"diff.plus" = { fg = "green" }
Expand All @@ -38,7 +42,8 @@
"ui.statusline.inactive" = { fg = "foreground_gutter", bg = "background_menu" }
"ui.text" = { fg = "foreground" }
"ui.text.focus" = { fg = "cyan" }
"ui.virtual" = { fg = "foreground_gutter" }
"ui.virtual.ruler" = { bg = "foreground_gutter" }
"ui.virtual.whitespace" = { fg = "foreground_gutter" }
"ui.window" = { fg = "black" }

"error" = { fg = "red" }
Expand Down

0 comments on commit 710c4a8

Please sign in to comment.