All Projects β†’ Binaryify β†’ Onedark Pro

Binaryify / Onedark Pro

Licence: mit
Atom's iconic One Dark theme for Visual Studio Code

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Onedark Pro

Vscodethemes
Themes for Visual Studio Code
Stars: ✭ 155 (-80.93%)
Mutual labels:  vscode, vscode-theme
vscode-snazzy-theme
🎨 VS Code theme based on hyper-snazzy with bright colors
Stars: ✭ 16 (-98.03%)
Mutual labels:  vscode, vscode-theme
Night Owl Vscode Theme
🌌 NIGHT OWL: A VS Code dark theme for contrast for nighttime coding, πŸ¦‰ LIGHT OWL: a daytime light theme
Stars: ✭ 2,368 (+191.27%)
Mutual labels:  vscode, vscode-theme
Vscode Material Icon Theme
Available on the VSCode Marketplace
Stars: ✭ 773 (-4.92%)
Mutual labels:  vscode, vscode-theme
Awesome Vscode
🎨 A curated list of delightful VS Code packages and resources.
Stars: ✭ 19,659 (+2318.08%)
Mutual labels:  vscode, vscode-theme
Vscode Solidity Auditor
Solidity language support and visual security auditor for Visual Studio Code
Stars: ✭ 108 (-86.72%)
Mutual labels:  vscode, vscode-theme
Vscode One Monokai
🎨 Vscode One Monokai theme.
Stars: ✭ 214 (-73.68%)
Mutual labels:  vscode, vscode-theme
Vue Theme Vscode
+200.000 installs ⬇️ Theme for Visual Studio Code inspired by Vue.js, with support for more popular languages, trying to maintain a perfect harmony of colors.
Stars: ✭ 54 (-93.36%)
Mutual labels:  vscode, vscode-theme
Nord Visual Studio Code
An arctic, north-bluish clean and elegant Visual Studio Code theme.
Stars: ✭ 749 (-7.87%)
Mutual labels:  vscode, vscode-theme
gloom
A dark and gloomy pastel color syntax theme for Visual Studio Code
Stars: ✭ 31 (-96.19%)
Mutual labels:  vscode, vscode-theme
Vscode Winteriscoming
Dark theme with fun and bright foreground colors
Stars: ✭ 105 (-87.08%)
Mutual labels:  vscode, vscode-theme
Shades Of Purple Vscode
πŸ¦„ Shades of Purple β€” A professional theme with hand-picked & bold shades of purple to go along with your VSCode. Reviewed by several designers and 75+ theme versions released to keep it updated. One of the top rated best VSCode themes on VS Code Marketplace. Download β†’
Stars: ✭ 486 (-40.22%)
Mutual labels:  vscode, vscode-theme
Vscode Iceberg Theme
Dark blue color theme for Visual Studio Code
Stars: ✭ 68 (-91.64%)
Mutual labels:  vscode, vscode-theme
Lukin Vscode Theme
🎨 Lukin Theme for VS Code
Stars: ✭ 142 (-82.53%)
Mutual labels:  vscode, vscode-theme
Vscode Duotone Dark
DuoTone Dark Sea Syntax theme for Visual Studio Code
Stars: ✭ 66 (-91.88%)
Mutual labels:  vscode, vscode-theme
Code Blue
A carefully concocted dark theme made of subtle blues and bright hues that’s easy on the eyes for focused coding.
Stars: ✭ 215 (-73.55%)
Mutual labels:  vscode, vscode-theme
Atomize
A detailed and accurate Atom One Dark Theme for VS Code
Stars: ✭ 30 (-96.31%)
Mutual labels:  vscode, vscode-theme
Vscode Smoothtype
VS Code extension to add cursor transitions while typing, similar to MS Office and the Windows 10 Mail app.
Stars: ✭ 54 (-93.36%)
Mutual labels:  vscode, vscode-theme
everforest-vscode
Everforest Color Scheme for Visual Studio Code
Stars: ✭ 76 (-90.65%)
Mutual labels:  vscode, vscode-theme
Vscode Theme Generator
Easily generate themes for VS Code with only a few colors
Stars: ✭ 393 (-51.66%)
Mutual labels:  vscode, vscode-theme

One Dark Pro

Atom's iconic One Dark theme, and one of the most installed themes for VS Code!

SPONSORS

codestream

Eliminate context switching and costly distractions. Create and merge PRs and perform code reviews from inside your IDE while using jump-to-definition, your keybindings, and other IDE favorites. Learn more.

SCREENSHOT

ScreenShot

Italic

ScreenShot

Default theme

ScreenShot

Flat theme

ScreenShot

Terminal

ScreenShot

Setting

ScreenShot

Built in themes

built-in themes

Markdown preview style

Markdown You can toggle whether to use markdown style in vscode setting (default use)

Tweaks & theming

If you want to play around with new colors, use the setting workbench.colorCustomizations to customize the currently selected theme. For example, you can add this snippet in your "settings.json" file:

"workbench.colorCustomizations": {
  "tab.activeBackground": "#282c34",
  "activityBar.background": "#282c34",
  "sideBar.background": "#282c34"
}

or use the setting editor.tokenColorCustomizations

"editor.tokenColorCustomizations": {
  "[One Dark Pro]": {
    "textMateRules": [
      {
        "scope": ["source.python"],
        "settings": {
          "foreground": "#e06c75"
        }
      }
    ]
  }
}

Italic

You could set this in your setting.json to make code be italic

"editor.tokenColorCustomizations": {
    "textMateRules": [
      {
        "name": "italic font",
        "scope": [
          "comment",
          "keyword",
          "storage",
          "keyword.control",
          "keyword.control.from",
          "keyword.control.flow",
          "keyword.operator.new",
          "keyword.control.import",
          "keyword.control.export",
          "keyword.control.default",
          "keyword.control.trycatch",
          "keyword.control.conditional",
          "storage.type",
          "storage.type.class",
          "storage.modifier.tsx",
          "storage.type.function",
          "storage.modifier.async",
          "variable.language",
          "variable.language.this",
          "variable.language.super",
          "meta.class",
          "meta.var.expr",
          "constant.language.null",
          "support.type.primitive",
          "entity.name.method.js",
          "entity.other.attribute-name",
          "punctuation.definition.comment",
          "text.html.basic entity.other.attribute-name",
          "tag.decorator.js entity.name.tag.js",
          "tag.decorator.js punctuation.definition.tag.js",
          "source.js constant.other.object.key.js string.unquoted.label.js",
        ],
        "settings": {
          "fontStyle": "italic",
        }
      },
    ]
  }

more info

Please check the official documentation, Theme Color Reference and Theme Color, for more helpful information.

More info

CHANGELOG

CHANGELOG.MD

DOCS & CONTRIBUTE

This document (https://binaryify.github.io/OneDark-Pro/) includes instructions on how to install and edit the theme.

To help with documentation, first fork and clone this repository.

cd to the OneDark-Pro folder

Run yarn

Then run npm run docs to serve the documentation locally at localhost:3000.

Contributors

This project exists thanks to all the people who contribute. Contributors

Backers

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].