33 lines
779 B
Nix
33 lines
779 B
Nix
# ABOUTME: Theme definitions mapping theme names to base16 and VSCode themes
|
|
# ABOUTME: Used by vscode and other apps that need theme name mapping
|
|
|
|
{
|
|
"tokyo-night" = {
|
|
base16Theme = "tokyo-night-dark";
|
|
vscodeTheme = "Tokyo Night";
|
|
};
|
|
"catppuccin-macchiato" = {
|
|
vscodeTheme = "Catppuccin Macchiato";
|
|
};
|
|
"kanagawa" = {
|
|
base16Theme = "kanagawa";
|
|
vscodeTheme = "Kanagawa";
|
|
};
|
|
"everforest" = {
|
|
base16Theme = "everforest";
|
|
vscodeTheme = "Everforest Dark";
|
|
};
|
|
"nord" = {
|
|
base16Theme = "nord";
|
|
vscodeTheme = "Nord";
|
|
};
|
|
"gruvbox" = {
|
|
base16Theme = "gruvbox-dark-hard";
|
|
vscodeTheme = "Gruvbox Dark Hard";
|
|
};
|
|
"gruvbox-light" = {
|
|
base16Theme = "gruvbox-light-medium";
|
|
vscodeTheme = "Gruvbox Light Medium";
|
|
};
|
|
}
|