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

https://github.com/mrroot5/brackets-themes-animation

This repository is a hooks to create beatiful animation on brackets themes.
https://github.com/mrroot5/brackets-themes-animation

Last synced: 19 days ago
JSON representation

This repository is a hooks to create beatiful animation on brackets themes.

Awesome Lists containing this project

README

          

# Brackets Themes Animation
This repository is a hook to create an animation on brackets themes.

[Brackets] (http://brackets.io/index.html) and [Custom theme brackets] (https://github.com/adobe/brackets/wiki/Creating-Themes).

### Usage
In the file theme.css you can find a few styles. This styles add an animation highlighting the brackets, braces, etc. of your code. Copy this styles on your theme.css and change all you want.

Only need to change the background-color for your own color.
```
0%
{
background-color:#ff8500;
border:1pt solid #F000AC;
box-shadow: 0 0 1em #FF0AE0;
}
100%
{
background-color:#0AE0FF;
border:1pt solid #00ACF0;
box-shadow: 0 0 1em #0AE0FF;
}
```