Skip to content
| Marketplace
Sign in
Visual Studio Code>Themes>BilugaThemeNew to Visual Studio Code? Get it now.
BilugaTheme

BilugaTheme

Ricardo Ruwer

|
207 installs
| (0) | Free
Biluga Color Theme
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Biluga Theme

Basic VSCode dark theme

Installation

You can install it through the VSCode Marketplace.

Activation

Press ⌘K ⌘T and select BilugaTheme on the list.

Screenshots

It's just a simple screenshot from an Elixir code. You have to try the theme to see all the colors.

Elixir

Some cool settings

{
  // ...
  "editor.fontFamily": "OperatorMono-Book",
  "editor.lineHeight": 28,
  // https://marketplace.visualstudio.com/items?itemName=PKief.material-icon-theme
  "workbench.iconTheme": "material-icon-theme",
  // And some other I use, you can see here: https://gist.github.com/ricardoruwer/b67986152b239fb27ffb488d156de7d3#file-settings-json
  // ...
}

Override colors

You can override some of the theme colors if you want, to do that you can follow this doc. To know the name of the textmate scope, press ⌃ ⇧ P.

Example

{
  // ...
  "workbench.colorCustomizations": {
    "editor.background": "#1A202C",
    "editor.foreground": "#EDF2F7",
    // ...
  },
  "editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "scope": [
          "comment"
        ],
        "settings": {
          "fontStyle": "italic",
          "foreground": "#4A5568"
        }
      },
      // ...
    ]
  }
  // ...
}

Publish extension

You can use the vsce extension to publish the extension on the Marketplace, example:

vsce publish 1.1.4

Click here to know more.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft