An open API service indexing awesome lists of open source software.

https://github.com/zeioth/atom-visual-studio-code-light-ui

The real experience of Visual Studio Code, now in Atom.
https://github.com/zeioth/atom-visual-studio-code-light-ui

Last synced: 9 months ago
JSON representation

The real experience of Visual Studio Code, now in Atom.

Awesome Lists containing this project

README

          

## Atom Visual Studio Code UI light theme [![Build Status](https://travis-ci.org/atom/one-light-ui.svg?branch=master)](https://travis-ci.org/atom/one-light-ui)

![Banner Atom Visual Studio Code UI Light](https://cloud.githubusercontent.com/assets/3357792/10440872/3af1d882-7143-11e5-9df9-2c1d0aa5e919.png)

This theme aims to reproduce the exact feeling of work with Visual Studio Code. So you don't need to renounce to the features of Atom to enjoy a great workflow. If you prefer, there is an [alternative version](https://atom.io/themes/atom-visual-studio-code-ui) in dark colors.

Made by [@Zeioth](https://twitter.com/Zeioth)

---

![atom-visual-studio-code-light-ui](https://cloud.githubusercontent.com/assets/3357792/10629108/57174d0a-77cc-11e5-93d4-98d0832d694a.png)

### Install your toolbar

After you install this theme you'll only have the color scheme of __Visual Studio Code__. To enjoy the full experience you must install the next packages.

1. `tool-bar` by suda - This will enable the sidebar. You can set the position to left.
2. `flex-tool-bar` by cakecatz - It will allow us to configure the elements of the tool-bar.
3. `git-plus` by akonwi - Having this you can run git commands from your toolbar.

### Customize your toolbar

You can't see the toolbar yet. To configure it, you must press ctrl+shift+p and write "Flex Tool Bar: Edit Config File". Then paste this code and save it. You should be able to see your new toolbar after restart Atom.

```json
[
{
type: "button"
iconset: "ion"
icon: "ios-copy"
callback: "tree-view:toggle"
tooltip: "Toggle Project Tree"
style:
color: "#FFFFFF"
}
{
type: "button"
iconset: "fa"
icon: "columns"
tooltip: "Split Screen"
callback: ["pane:split-right"]
style:
color: "#FFFFFF"
}
{
type: "button"
iconset: "devicon"
icon: "git-plain"
callback: "git-plus:menu"
tooltip: "Git"
style:
color: "#1AA2E4"
}
{
type: "url"
iconset: "ion"
icon: "bug"
url: "http://localhost:8000"
tooltip: "Debug Django Project"
show: [ "Python", "HTML", "JavaScript", "CSS" ]
style:
color: "#FFFFFF"
}
]

```

### FAQ
__Can I custumize this theme?__
Yes, you can change anything in your styles.less like this:
```css
.theme-atom-visual-studio-code-light-ui {
atom-text-editor {
background-color: #272822;
}
}
```
__My toolbar icons are too small!__
You can edit the size of the icons in "Preferences > Packages > Tool-bar".

__Something has an incorrect color or size?__
Go to our Github repository, and open an issue uploading an image of your problem. I will fix it as soon as possible. Also, this theme is based on One Light UI, so if you need further help, please refer to the documentation of said theme.