├── .gitignore ├── README.md ├── agileTheme.jar └── images └── vue.png /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # agileTheme 2 | a very beautiful theme for webstorm 3 | 4 | because i am a programmer. I take a lot time on the color and fonts. now i find my best theme. 5 | 6 | ### Two font suggest 7 | 8 | [Fantasque-sans](https://github.com/belluzj/fantasque-sans) 9 | 10 | [Hack](https://github.com/chrissimpkins/Hack) (screenshot use) 11 | 12 | ### Screen shot 13 | 14 | ![](images/vue.png) 15 | 16 | ### How to use 17 | 1. Download the `agile.jar` [theme](https://raw.githubusercontent.com/agileago/agileTheme/master/agileTheme.jar) 18 | 2. open `webstorm` and select the `File -> Import setting` take the theme and restart `webstorm`. enjoy it ! 19 | -------------------------------------------------------------------------------- /agileTheme.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileago/agileTheme/4c1e42a1f32a2c4ce1a4a3cd39a8fa3db27be225/agileTheme.jar -------------------------------------------------------------------------------- /images/vue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agileago/agileTheme/4c1e42a1f32a2c4ce1a4a3cd39a8fa3db27be225/images/vue.png --------------------------------------------------------------------------------