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.
- Host: GitHub
- URL: https://github.com/zeioth/atom-visual-studio-code-light-ui
- Owner: Zeioth
- License: mit
- Created: 2015-10-21T05:17:02.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-06-19T15:35:44.000Z (about 3 years ago)
- Last Synced: 2025-08-25T22:48:14.706Z (10 months ago)
- Language: Less
- Size: 36.1 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
## Atom Visual Studio Code UI light theme [](https://travis-ci.org/atom/one-light-ui)

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)
---

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