├── .gitignore ├── Ariake.icls ├── README.md └── images ├── css.png ├── js.png ├── json.png └── php.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_STORE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Ariake Dark Syntax theme 2 | 3 | Ariake Dark is a Jetbrains (Phpstorm, Webstorm etc.) theme inspired by the [Atom theme](https://github.com/pathtrk/ariake-dark-syntax) of the same name. 4 | 5 | This theme is inspired by Japanese traditional colours. 6 | 7 | ## Examples 8 | **Javascript** 9 | 10 | !["Javascript example"][js] 11 | 12 | **CSS/SCSS** 13 | 14 | !["CSS example"][css] 15 | 16 | **JSON** 17 | 18 | !["JSON example"][json] 19 | 20 | **PHP** 21 | 22 | !["PHP example"][php] 23 | 24 | 25 | 26 | ## Install 27 | 28 | **OSX** 29 | 30 | 1. Add the ariake.icls file into `~/Library/Preferences/PhpStorm2016.*/colors` - make sure you update the PhpStorm/Webstorm version 31 | in the path 32 | 2. Open PhpStorm, go to: File->Settings then choose Editor->Colors & Fonts and your new theme-color appears in the select list. 33 | 34 | **Windows** 35 | 36 | 1. Add the ariake.icls file into `C:\Users\USERNAME\.PhpStorm2016.1\config\colors` - make sure you update the PhpStorm/Webstorm version 37 | in the path. Place 38 | 2. Open PhpStorm, go to: File->Settings then choose Editor->Colors & Fonts and your new theme-color appears in the select list. 39 | 40 | I use the [Fira Code](https://github.com/tonsky/FiraCode) font, which works well for this theme. 41 | 42 | I also recommend using the ColorIDE plugin which will match the background of your editor with the background of the rest of the 43 | IDE. 44 | 45 | There is a matching Iterm2 color scheme available [here](https://github.com/jim-at-jibba/ariake-theme-iterm2) 46 | 47 | Please a an issue if you want me to add further styles for other languages. 48 | 49 | [js]: images/js.png "Javascript example" 50 | [css]: images/css.png "CSS example" 51 | [json]: images/json.png "JSON example" 52 | [php]: images/php.png "JSON example" 53 | -------------------------------------------------------------------------------- /images/css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jim-at-jibba/ariake-theme/c54530ffea9b78eb2633a56008d0d6c41d1e1a6e/images/css.png -------------------------------------------------------------------------------- /images/js.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jim-at-jibba/ariake-theme/c54530ffea9b78eb2633a56008d0d6c41d1e1a6e/images/js.png -------------------------------------------------------------------------------- /images/json.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jim-at-jibba/ariake-theme/c54530ffea9b78eb2633a56008d0d6c41d1e1a6e/images/json.png -------------------------------------------------------------------------------- /images/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jim-at-jibba/ariake-theme/c54530ffea9b78eb2633a56008d0d6c41d1e1a6e/images/php.png --------------------------------------------------------------------------------