Files
Gaétan Lepage fba993c589 Format project with official nixfmt formatter (#21)
* Set nix official formatter for the flake

* format the entire project
2025-10-15 15:09:51 -05:00

40 lines
886 B
Nix

{
"tokyo-night" = {
base16-theme = "tokyo-night-dark";
vscode-theme = "Tokyo Night";
};
"catppuccin-macchiato" = {
vscode-theme = "Catppuccin Macchiato";
};
"kanagawa" = {
base16-theme = "kanagawa";
vscode-theme = "Kanagawa";
};
"everforest" = {
base16-theme = "everforest";
vscode-theme = "Everforest Dark";
};
"nord" = {
base16-theme = "nord";
vscode-theme = "Nord";
};
"gruvbox" = {
base16-theme = "gruvbox-dark-hard";
vscode-theme = "Gruvbox Dark Hard";
};
"gruvbox-light" = {
base16-theme = "gruvbox-light-medium";
vscode-theme = "Gruvbox Light Medium";
};
"custom" = {
# Custom themes don't have predefined base16 schemes (generated dynamically)
# VSCode theme fallback for custom color schemes
vscode-theme = "Tokyo Night"; # Default fallback theme
};
# Add more themes here
}