A Supabase inspired VS Code theme.
Not affiliated with Supabase.
vsce is the command-line tool you use to package and publish Visual Studio Code extensions. You can install it using different package managers:
If you have Node.js installed, you can use npm (Node Package Manager) to install vsce globally:
npm install -g vsceIf you prefer Yarn, another popular package manager, you can install vsce globally with:
yarn global add vsceIf you use pnpm, a fast, disk space-efficient package manager, install vsce with:
pnpm add -g vsceAfter installation, you can check if vsce is correctly installed by running:
vsce --versionTo package your VS Code theme into a .vsix file, follow these steps:
-
Ensure all dependencies are installed:
npm install
-
Run the following command to create a
.vsixpackage:vsce package
This will generate a
.vsixfile in the root of your project directory.
After packaging your extension, you can install it in VS Code by following these steps:
- Open VS Code.
- Drag and drop the
.vsixfile into the Extensions view (Ctrl+Shift+XorCmd+Shift+X).
Alternatively, you can install the extension via the command line:
code --install-extension path/to/your-extension-name.vsixReplace path/to/your-extension-name.vsix with the actual path to your packaged .vsix file.
If you want to work on the theme and test your changes live:
-
Open the project in VS Code:
code . -
Start the extension in development mode by pressing
F5or selectingStart Debuggingfrom theRunmenu. -
A new VS Code window will open with your theme loaded. Any changes you make to the theme files will be reflected here upon reload (
Ctrl+RorCmd+R).
This project is licensed under the MIT License. See the LICENSE file for more details. `
