Add tokyonight to derived colors

This commit is contained in:
ViViDboarder 2021-09-15 15:50:59 -07:00
parent b81e79976e
commit 77106e91de
1 changed files with 10 additions and 3 deletions

View File

@ -140,6 +140,8 @@ def get_nvim_colorscheme(
colorscheme = "default"
elif "Solarized" in terminal_profile:
colorscheme = "solarized"
elif "Tokyo Night" in terminal_profile:
colorscheme = "tokyonight"
return colorscheme
@ -187,9 +189,14 @@ def get_fish_theme(
fish_theme = "wombat"
elif "Solarized" in terminal_profile:
if is_dark:
fish_theme = "solarized dark"
fish_theme = "solarized_dark"
else:
fish_theme = "solarized light"
fish_theme = "solarized_light"
elif "Tokyo Night" in terminal_profile:
if is_dark:
fish_theme = "fish_tokyonight_night"
else:
fish_theme = "fish_tokyonight_day"
return fish_theme