├── .DS_Store ├── .gitignore ├── DarkThemeTestCode ├── AnotherTab.ino └── DarkThemeTestCode.ino ├── README.md ├── screenshot.png └── theme ├── .DS_Store ├── GifButtons ├── buttons.gif ├── newwindow.gif ├── resize.gif ├── tab-sel-left.gif ├── tab-sel-menu.gif ├── tab-sel-mid.gif ├── tab-sel-right.gif ├── tab-unsel-left.gif ├── tab-unsel-menu.gif ├── tab-unsel-mid.gif └── tab-unsel-right.gif ├── OriginalButtons ├── buttons.gif ├── close.png ├── lock.png ├── newwindow.gif ├── resize.gif ├── tab-sel-left.gif ├── tab-sel-menu.gif ├── tab-sel-mid.gif ├── tab-sel-right.gif ├── tab-unsel-left.gif ├── tab-unsel-menu.gif ├── tab-unsel-mid.gif └── tab-unsel-right.gif ├── buttons.png ├── buttons.psd ├── lock.png ├── lock.psd ├── newwindow.png ├── resize.png ├── syntax ├── dark.xml ├── default.xml └── default_ORIG.xml ├── tab-sel-left.png ├── tab-sel-menu.png ├── tab-sel-mid.png ├── tab-sel-right.png ├── tab-unsel-left.png ├── tab-unsel-menu.png ├── tab-unsel-mid.png ├── tab-unsel-right.png ├── theme.txt └── theme_ORIG.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /DarkThemeTestCode/AnotherTab.ino: -------------------------------------------------------------------------------- 1 | 2 | // blah blah blah 3 | -------------------------------------------------------------------------------- /DarkThemeTestCode/DarkThemeTestCode.ino: -------------------------------------------------------------------------------- 1 | 2 | // a comment 3 | /* another comment */ 4 | // a url: http://www.jeffreythompson.org 5 | 6 | int i = 100; 7 | char c = 'c'; 8 | String s = "string"; 9 | boolean y = true; 10 | 11 | void setup() { 12 | pinMode(13, INPUT); 13 | 14 | if (y == true) { 15 | s = "hello world!"; 16 | } 17 | } 18 | 19 | void loop() { 20 | 21 | } 22 | 23 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![screenshot](https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/master/screenshot.png) 2 | 3 | # Dark Arduino Theme 4 | 5 | ### NOTE 6 | **Sadly, I'm no longer maintaining this theme. The Arduino IDE has changed a lot but I'm not doing much work with the platform and it's just too much to keep this up-to-date.** If you'd like to fork the repo and fix it, that would be great! I'll happily add a link to your version here so others can benefit. 7 | 8 | Still works for Arduino version 1.8.5+, not tested with newer/older versions. 9 | 10 | \- \- \- 11 | 12 | ### INSTALLATION 13 | 14 | * Mac users should look in `/Applications/Arduino.app/Contents/Java/lib` and replace the `theme` folder inside (making a copy of the original in case want to revert back). 15 | * Windows is located in `C:\Program Files (x86)\Arduino\lib`. 16 | * Linux will be in `/usr/share/arduino/lib/` – note you may need to install the Arduino IDE from the Arduino site, not a place like Ubuntu Software 17 | 18 | ### CREATING YOUR OWN MODS 19 | The newest version of the Arduino IDE makes creating custom themes trickier: you now need to edit the `theme.txt` file, an XML file inside the `syntax` folder, and the button files. Unfortunately, not all items in the `theme.txt` file actually work, so if you can't get an item to change, try another one of the files. 20 | 21 | \- \- \- 22 | 23 | Released under [Creative Commons BY-NC-SA license](http://creativecommons.org/licenses/by-nc-sa/3.0/) - feel free to use but [please let me know](http://www.jeffreythompson.org). 24 | -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/screenshot.png -------------------------------------------------------------------------------- /theme/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/.DS_Store -------------------------------------------------------------------------------- /theme/GifButtons/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/buttons.gif -------------------------------------------------------------------------------- /theme/GifButtons/newwindow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/newwindow.gif -------------------------------------------------------------------------------- /theme/GifButtons/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/resize.gif -------------------------------------------------------------------------------- /theme/GifButtons/tab-sel-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/tab-sel-left.gif -------------------------------------------------------------------------------- /theme/GifButtons/tab-sel-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/tab-sel-menu.gif -------------------------------------------------------------------------------- /theme/GifButtons/tab-sel-mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/tab-sel-mid.gif -------------------------------------------------------------------------------- /theme/GifButtons/tab-sel-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/tab-sel-right.gif -------------------------------------------------------------------------------- /theme/GifButtons/tab-unsel-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/tab-unsel-left.gif -------------------------------------------------------------------------------- /theme/GifButtons/tab-unsel-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/tab-unsel-menu.gif -------------------------------------------------------------------------------- /theme/GifButtons/tab-unsel-mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/tab-unsel-mid.gif -------------------------------------------------------------------------------- /theme/GifButtons/tab-unsel-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/GifButtons/tab-unsel-right.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/buttons.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/close.png -------------------------------------------------------------------------------- /theme/OriginalButtons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/lock.png -------------------------------------------------------------------------------- /theme/OriginalButtons/newwindow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/newwindow.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/resize.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/tab-sel-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/tab-sel-left.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/tab-sel-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/tab-sel-menu.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/tab-sel-mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/tab-sel-mid.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/tab-sel-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/tab-sel-right.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/tab-unsel-left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/tab-unsel-left.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/tab-unsel-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/tab-unsel-menu.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/tab-unsel-mid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/tab-unsel-mid.gif -------------------------------------------------------------------------------- /theme/OriginalButtons/tab-unsel-right.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/OriginalButtons/tab-unsel-right.gif -------------------------------------------------------------------------------- /theme/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/buttons.png -------------------------------------------------------------------------------- /theme/buttons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/buttons.psd -------------------------------------------------------------------------------- /theme/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/lock.png -------------------------------------------------------------------------------- /theme/lock.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/lock.psd -------------------------------------------------------------------------------- /theme/newwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/newwindow.png -------------------------------------------------------------------------------- /theme/resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/resize.png -------------------------------------------------------------------------------- /theme/syntax/dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 |