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.
- Host: GitHub
- URL: https://github.com/mrroot5/brackets-themes-animation
- Owner: mrroot5
- License: mit
- Created: 2015-02-16T15:36:52.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-02-16T17:08:15.000Z (over 11 years ago)
- Last Synced: 2025-02-26T21:45:21.706Z (over 1 year ago)
- Language: CSS
- Size: 145 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
}
```