Deephack's Hyperland config based on omarchy-nix from Henry Sipp and in turn of course inspired by Omarchy.
at main 39 lines 888 B view raw
1{ 2 "tokyo-night" = { 3 base16-theme = "tokyo-night-dark"; 4 vscode-theme = "Tokyo Night"; 5 }; 6 "catppuccin-macchiato" = { 7 vscode-theme = "Catppuccin Macchiato"; 8 }; 9 10 "kanagawa" = { 11 base16-theme = "kanagawa"; 12 vscode-theme = "Kanagawa"; 13 }; 14 15 "everforest" = { 16 base16-theme = "everforest"; 17 vscode-theme = "Everforest Dark"; 18 }; 19 20 "nord" = { 21 base16-theme = "nord"; 22 vscode-theme = "Nord"; 23 }; 24 "gruvbox" = { 25 base16-theme = "gruvbox-dark-hard"; 26 vscode-theme = "Gruvbox Dark Hard"; 27 }; 28 "gruvbox-light" = { 29 base16-theme = "gruvbox-light-medium"; 30 vscode-theme = "Gruvbox Light Medium"; 31 }; 32 33 "custom" = { 34 # Custom themes don't have predefined base16 schemes (generated dynamically) 35 # VSCode theme fallback for custom color schemes 36 vscode-theme = "Tokyo Night"; # Default fallback theme 37 }; 38 # Add more themes here 39}