quick switch: click the drink icon in the lower right corner of vs code to quickly switch between themes (the icon changes to match the current theme!)
settings: configure your preferred theme in vs code settings
commands: use the command palette to switch themes or set a specific theme
usage
via status bar icon
click the drink icon in the lower right corner of vs code to open a quick pick menu and select your desired theme. the icon automatically updates to show the emoji of your current theme!
via settings
open vs code settings (cmd/ctrl + ,)
search for "fizz buzz"
select your preferred theme from the dropdown
via command palette
open command palette (cmd/ctrl + shift + p)
type "switch drink theme" or search for a specific theme like "set sake theme"
select your desired theme
installation
from source
clone this repository
run npm install to install dependencies
run npm run compile to compile typescript
press f5 in vs code to open a new extension development host window
the extension will be active in the new window
package for distribution
install vsce: npm install -g @vscode/vsce
package the extension: vsce package
install the generated .vsix file in vs code
development
# install dependencies
npm install
# compile typescript
npm run compile
# watch for changes
npm run watch