What VSCode theme do you use?

These days, I use Blue (Visual Studio 2022) when I want to use a light theme.

Font settings:

"editor.fontFamily": "'JetBrains Mono', monospace",
"editor.fontLigatures": "'cv03', 'cv14'",
"editor.fontSize": 14.5,
"editor.fontWeight": "500",


When I use Quiet Light, I use it with the following settings:

  "workbench.colorCustomizations": {
    "[Quiet Light]": {
      "editorCursor.background": "#fff",
      "titleBar.activeBackground": "#b7c3d7",
      "statusBar.background": "#566e97"
    },
  }
1 Like