All Projects β†’ emroussel β†’ Atomize

emroussel / Atomize

Licence: mit
A detailed and accurate Atom One Dark Theme for VS Code

Projects that are alternatives of or similar to Atomize

Vscode One Monokai
🎨 Vscode One Monokai theme.
Stars: ✭ 214 (+613.33%)
Mutual labels:  vscode, vscode-theme
Awesome Vscode
🎨 A curated list of delightful VS Code packages and resources.
Stars: ✭ 19,659 (+65430%)
Mutual labels:  vscode, vscode-theme
vscode-snazzy-theme
🎨 VS Code theme based on hyper-snazzy with bright colors
Stars: ✭ 16 (-46.67%)
Mutual labels:  vscode, vscode-theme
Vscodethemes
Themes for Visual Studio Code
Stars: ✭ 155 (+416.67%)
Mutual labels:  vscode, vscode-theme
Nord Visual Studio Code
An arctic, north-bluish clean and elegant Visual Studio Code theme.
Stars: ✭ 749 (+2396.67%)
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 (+7793.33%)
Mutual labels:  vscode, vscode-theme
gloom
A dark and gloomy pastel color syntax theme for Visual Studio Code
Stars: ✭ 31 (+3.33%)
Mutual labels:  vscode, vscode-theme
Vscode Iceberg Theme
Dark blue color theme for Visual Studio Code
Stars: ✭ 68 (+126.67%)
Mutual labels:  vscode, vscode-theme
Horizon Theme Vscode
🎨 A beautifully warm dual theme for Visual Studio Code
Stars: ✭ 506 (+1586.67%)
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 (+1520%)
Mutual labels:  vscode, vscode-theme
Lukin Vscode Theme
🎨 Lukin Theme for VS Code
Stars: ✭ 142 (+373.33%)
Mutual labels:  vscode, vscode-theme
Onedark Pro
Atom's iconic One Dark theme for Visual Studio Code
Stars: ✭ 813 (+2610%)
Mutual labels:  vscode, vscode-theme
Vscode Solidity Auditor
Solidity language support and visual security auditor for Visual Studio Code
Stars: ✭ 108 (+260%)
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 (+616.67%)
Mutual labels:  vscode, vscode-theme
Vscode Winteriscoming
Dark theme with fun and bright foreground colors
Stars: ✭ 105 (+250%)
Mutual labels:  vscode, vscode-theme
everforest-vscode
Everforest Color Scheme for Visual Studio Code
Stars: ✭ 76 (+153.33%)
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 (+80%)
Mutual labels:  vscode, vscode-theme
Vscode Duotone Dark
DuoTone Dark Sea Syntax theme for Visual Studio Code
Stars: ✭ 66 (+120%)
Mutual labels:  vscode, vscode-theme
Vscode Theme Generator
Easily generate themes for VS Code with only a few colors
Stars: ✭ 393 (+1210%)
Mutual labels:  vscode, vscode-theme
Vscode Material Icon Theme
Available on the VSCode Marketplace
Stars: ✭ 773 (+2476.67%)
Mutual labels:  vscode, vscode-theme

Atomize

Version

A detailed and accurate Atom One Dark Theme

Screenshot of VS Code with Atomize

To get the icons in the screenshot above and an experience closer to Atom, check out my Atom Icons theme.

Note that if you want the same syntax highlighting as Atom One Dark, you will need to turn off semantic highlighting in your VS Code settings:

"editor.semanticHighlighting.enabled": false

Contribution

I have mostly used this theme with JavaScript and other web technologies.

If you'd like me to add support for other languages, or notice a bug/discrepancy with Atom's One Dark theme, feel free to open an issue or pull request on this repo.

Motivation

I love the UI and UX of Atom as well as the speed and reliability of VS Code. After looking for a while, I couldn't find any VS Code theme that accurately replicated Atom's One Dark UI, so I made this one.

Next steps

Here are some settings I use to make VS Code more minimalistic, so that I can focus on what's important. It also makes the experience more similar to Atom.

{
  "breadcrumbs.enabled": false,
  "editor.cursorBlinking": "blink",
  "editor.folding": false,
  "editor.hideCursorInOverviewRuler": true,
  "editor.minimap.enabled": false,
  "editor.occurrencesHighlight": false,
  "editor.renderIndentGuides": false,
  "editor.roundedSelection": false,
  "editor.selectionHighlight": false,
  "editor.scrollBeyondLastLine": false,
  "explorer.decorations.colors": false,
  "explorer.openEditors.visible": 0,
  "window.zoomLevel": 0,
  "workbench.activityBar.visible": false,
  "workbench.editor.showIcons": false,
  "workbench.startupEditor": "none",
  "workbench.tree.renderIndentGuides": "none"
}

Note: This will hide the activity bar, so you will need to memorize a few shortcuts (they will be different if you changed the defaults):

  • Show explorer: ⇧+ ⌘ + E
  • Show search: ⇧+ ⌘ + F
  • Show extensions: ⇧+ ⌘ + X

I also use Subtle Match Brackets instead of the default bracket matcher to get a better experience:

{
  "editor.matchBrackets": "never",
  "subtleBrackets.style": {
    "borderWidth": "1px",
    "borderColor": "#528BFF"
  }
}

And if you would like keyword highlighting in comments, I use TODO Highlight with these settings to get Atom's colors:

{
  "todohighlight.keywords": [
    {
      "text": "TODO:",
      "color": "#C678DD",
      "backgroundColor": "transparent"
    },
    {
      "text": "NOTE:",
      "color": "#C678DD",
      "backgroundColor": "transparent"
    },
    {
      "text": "FIXME:",
      "color": "#C678DD",
      "backgroundColor": "transparent"
    }
  ]
}

Credits

This theme is heavily inspired from Atom's One Dark Syntax theme.

License

MIT

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].