├── netbeans-default-light.icls ├── readme.md ├── test.php └── theme-screenshot.png /netbeans-default-light.icls: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2016-11-17T13:00:09 4 | PhpStorm 5 | 2016.2.2.0.0 6 | 2016-11-17T13:35:04 7 | tritanomaly-tritanopia-light 8 | 9 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # PhpStorm Theme: Netbeans Default Light 2 | 3 | This is a port of the default light theme for Netbeans. 4 | 5 | This is the easiest light theme to use for Tritanomaly color blind users 6 | (or at least, it is for me). 7 | 8 | ![Alt text](https://raw.githubusercontent.com/zschuessler/phpstorm-theme-netbeans-default/master/theme-screenshot.png "Theme Screenshot") 9 | 10 | ## Do You Have Tritanomaly? 11 | 12 | Try this: 13 | 14 | http://www.color-blindness.com/coblis-color-blindness-simulator/ 15 | 16 | If you notice slight difference between "Normal" and "Tritanomaly", 17 | you have the very rare form of color blindness. For the most part 18 | you should only have a lack of sensitivity to blue light. It's 19 | very possible you haven't even noticed! 20 | 21 | ## PhpStorm Theme Installation 22 | 23 | Check this guide for cross-platform instructions: 24 | 25 | http://www.phpstorm-themes.com/content/help 26 | 27 | In short, put the `.icls` file in your PhpStorm `config/colors` 28 | directory. Then restart the IDE and select the new theme in your 29 | settings. 30 | 31 | ## Contributing 32 | 33 | Settings are ported as I see differences while working with different 34 | pieces of code. There are likely many file types I've missed - 35 | feel free to submit a pull request with your changes. 36 | 37 | ## License 38 | 39 | This is licensed as public domain. Do anything except hold me 40 | accountable. 41 | -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- 1 | 7 | * Example doc block tags 8 | * 9 | */ 10 | namespace Test\Test; 11 | 12 | use Test; 13 | 14 | class ClassName 15 | { 16 | /** 17 | * An example internal property. 18 | * 19 | * @var $internal 20 | */ 21 | private $internal; 22 | 23 | public $publicProperty; 24 | 25 | public function __construct($options = array()) 26 | { 27 | // Some construction action happening 28 | $this->publicProperty = $options['test']; 29 | 30 | return false; 31 | } 32 | } 33 | ?> 34 | 35 | 36 | Example Html 37 | 38 | 39 | 40 |

41 | 42 | Here is some text! 43 |

44 | 45 | 46 | -------------------------------------------------------------------------------- /theme-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zschuessler/phpstorm-theme-netbeans-default/9b08c71d7f713d4bbc843c99555a0433330b3296/theme-screenshot.png --------------------------------------------------------------------------------