Skip to content

Latest commit

 

History

History
123 lines (90 loc) · 5.83 KB

README.md

File metadata and controls

123 lines (90 loc) · 5.83 KB

Custom UI Style

Visual Studio Marketplace Version Made with reactive-vscode

VSCode extension that custom ui css style in both editor and webview

  • Works with VSCode 1.95!

Warning

This extension works by editting the VSCode's css and js files.

So, a warning appears while the first time to install or VSCode update. You can click the [never show again] to avoid it.

Features

  • Unified global font family
  • Setup background image
  • Custom nest stylesheet for both editor and webview
  • Custom Electron BrowserWindow options

Usage

When first installed or new VSCode version upgraded, the plugin will prompt to dump backup file.

After changing the configuration, please open command panel and run Custom UI Style: Reload to apply the configuration.

To rollback or uninstall the plugin, please open command panel and run Custom UI Style: Rollback to restore the original VSCode file.

See details

FAQ

No Effect?

If you are using Windows or Linux, make sure you have closed all the VSCode windows and then restart.

If you are using MacOS, press Command + Q first, then restart VSCode.

There are guide and video (MacOS) of the process.

RangeError: Maximum call stack size exceeded

Due to system permission restrictions, you will receive RangeError: Maximum call stack size exceeded prompt when you reload the configuration. You need to fully close (press Command + Q) VSCode first, then run:

sudo chown -R $(whoami) "/Applications/Visual Studio Code.app"

See #6

Configurations

Key Description Type Default
custom-ui-style.electron Electron BrowserWindow options object {}
custom-ui-style.font.monospace Global monospace font family that apply in both editor and webview, fallback to editor's font family string ``
custom-ui-style.font.sansSerif Global sans-serif font family that apply in both editor and webview string ``
custom-ui-style.background.url Full-screen background image url, support protocol: 'https://', 'file://', 'data:' string ``
custom-ui-style.background.opacity Background image opacity number 0.9
custom-ui-style.background.size Background image size string "cover"
custom-ui-style.background.position Background image size string "center"
custom-ui-style.stylesheet Custom css for editor, support nest selectors object {}
custom-ui-style.webview.monospaceSelector Custom monospace selector in webview array ``
custom-ui-style.webview.sansSerifSelector Custom sans-serif selector in webview array ``
custom-ui-style.webview.stylesheet Custom css for webview, support nest selectors object {}

Commands

Command Title
custom-ui-style.reload Custom UI Style: Reload
custom-ui-style.rollback Custom UI Style: Rollback

Example

{
  "custom-ui-style.font.sansSerif": "Maple UI, -apple-system",
  "custom-ui-style.background.url": "file:///D:/image/ide-bg.jpg",
  "custom-ui-style.webview.monospaceSelector": [".codeblock", ".prism [class*='language-']"],
  "custom-ui-style.stylesheet": {
    "span:not([class*='dyn-rule'])+span[class*='dyn-rule']": {
      "border-top-left-radius": "3px",
      "border-bottom-left-radius": "3px"
    },
    "span[class*='dyn-rule']:has(+span:not([class*='dyn-rule']))": {
      "border-top-right-radius": "3px",
      "border-bottom-right-radius": "3px"
    },
    ".cdr": {
      "border-radius": "3px"
    },
    ".quick-input-widget": {
      "top": "25vh !important"
    },
    ".overlayWidgets .editorPlaceholder": {
      "line-height": "unset !important"
    }
  }
}

Credit

License

MIT