Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Customizability #68

Merged
merged 14 commits into from
Apr 3, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions customizability.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
Now you can customize your icons and even add unsupported extensions! In the Brackets preferences file you'll need to add this to the bottom:

```json
"brackets-icons.icons": {}
```

Now you're ready to add some customizations. Here's an example icon preference:

```json
"brackets-icons.icons": {
"html": {
"icon": "fa fa-code",
"color": "#E84D49",
"size": 16
}
}
```

You can use the classes in [Ionicons](http://ionicons.com), [Font Awesome](https://fortawesome.github.io/Font-Awesome/), or [Devicons](https://vorillaz.github.io/devicons/#/main) to specify the icon.

You can also add an extension that's not already supported the same way.

```json
"html": {
"icon": "fa fa-code",
"color": "#E84D49",
"size": 16
},
"spaghetti": {
"icon": "fa fa-motorcycle",
"color": "#DA70D6",
"size": 13
}
```
Binary file added fonts/FontAwesome.otf
Binary file not shown.
Binary file added fonts/devicons.eot
Binary file not shown.
4 changes: 4 additions & 0 deletions fonts/devicons.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading