├── .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 | 
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 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
--------------------------------------------------------------------------------
/theme/syntax/default.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 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
--------------------------------------------------------------------------------
/theme/syntax/default_ORIG.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 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
--------------------------------------------------------------------------------
/theme/tab-sel-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/tab-sel-left.png
--------------------------------------------------------------------------------
/theme/tab-sel-menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/tab-sel-menu.png
--------------------------------------------------------------------------------
/theme/tab-sel-mid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/tab-sel-mid.png
--------------------------------------------------------------------------------
/theme/tab-sel-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/tab-sel-right.png
--------------------------------------------------------------------------------
/theme/tab-unsel-left.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/tab-unsel-left.png
--------------------------------------------------------------------------------
/theme/tab-unsel-menu.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/tab-unsel-menu.png
--------------------------------------------------------------------------------
/theme/tab-unsel-mid.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/tab-unsel-mid.png
--------------------------------------------------------------------------------
/theme/tab-unsel-right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jeffThompson/DarkArduinoTheme/8885915a4da6ca115a0e7b3f7e171ad9d3bca3db/theme/tab-unsel-right.png
--------------------------------------------------------------------------------
/theme/theme.txt:
--------------------------------------------------------------------------------
1 | #FUNCTIONS COLOR #D35400 - ORANGE KEYWORD1
2 | #FUNCTIONS COLOR #D35400 - ORANGE KEYWORD2
3 | #STRUCTURE COLORS #5E6D03 - GREEN KEYWORD3
4 | #VARIABLES COLOR #00979C - BLUE LITERAL1
5 |
6 | #ERROR COLOR #A61717 - RED
7 | #COMMENTS // COLOR #95A5A6 - LIGHT GREY
8 | #COMMENTS /**/ COLOR #434F54 - DARK GREY
9 |
10 |
11 | # GUI - STATUS
12 | status.notice.fgcolor = #FFFFFF
13 | status.notice.bgcolor = #404040
14 | status.error.fgcolor = #FFFFFF
15 | status.error.bgcolor = #E34C00
16 | status.edit.fgcolor = #FFFFFF
17 | status.edit.bgcolor = #F1B500
18 | status.font = SansSerif,plain,12
19 |
20 | # GUI - TABS
21 | # settings for the tabs at the top
22 | # (tab images are stored in the lib/theme folder)
23 | header.bgcolor = #404040
24 | header.text.selected.color = #323232
25 | header.text.unselected.color = #3C3C3C
26 | header.text.font = SansSerif,plain,12
27 |
28 | # GUI - CONSOLE
29 | console.font = Monospaced,plain,11
30 | console.font.macosx = Monaco,plain,10
31 | console.color = #000000
32 | console.output.color = #eeeeee
33 | console.error.color = #E34C00
34 |
35 | # GUI - BUTTONS
36 | buttons.bgcolor = #505050
37 | buttons.status.font = SansSerif,plain,12
38 | buttons.status.color = #ffffff
39 |
40 | # GUI - LINESTATUS
41 | linestatus.color = #ffffff
42 | linestatus.bgcolor = #404040
43 |
44 | # EDITOR - DETAILS
45 |
46 | # foreground and background colors
47 | editor.fgcolor = #d9d9d9
48 | editor.bgcolor = #202020
49 |
50 | # highlight for the current line
51 | editor.linehighlight.color=#333333
52 | # highlight for the current line
53 | editor.linehighlight=true
54 |
55 | # caret blinking and caret color
56 | editor.caret.color = #a0a0a0
57 |
58 | # color to be used for background when 'external editor' enabled
59 | editor.external.bgcolor = #202020
60 |
61 | # selection color
62 | editor.selection.color = #dd8800
63 |
64 | # area that's not in use by the text (replaced with tildes)
65 | editor.invalid.style = #7e7e7e,bold
66 |
67 | # little pooties at the end of lines that show where they finish
68 | editor.eolmarkers = false
69 | editor.eolmarkers.color = #999999
70 |
71 | # bracket/brace highlighting
72 | editor.brackethighlight = true
73 | editor.brackethighlight.color = #006699
74 |
75 |
76 | # TEXT - KEYWORDS
77 |
78 | # FUNCTIONS
79 | editor.keyword1.style = #d35400,bold
80 | editor.data_type.style = #d35400,bold
81 |
82 | # METHODS
83 | editor.keyword2.style = #D35400,plain
84 | editor.function.style = #d35400,plain
85 |
86 | # STRUCTURES
87 | editor.keyword3.style = #5E6D03,plain
88 | editor.reserved_word.style = #5E6D03,plain
89 |
90 |
91 | # TEXT - LITERALS
92 |
93 | # constants & datatypes
94 | editor.literal1.style = #006699,plain
95 |
96 | # p5 built in variables: e.g. mouseX, width, pixels
97 | editor.literal2.style = #00979C,plain
98 | editor.variable.style = #00979C,plain
99 | editor.reserved_word_2.style = #00979C,plain
100 | editor.literal_boolean.style = #00979C,plain
101 | editor.literal_char.style = #00979C,plain
102 | editor.literal_string_double_quote.style = #00979C,plain
103 | editor.preprocessor.style = #5E6D03,plain
104 |
105 | # http://www.arduino.cc/ - GET RID OF UNDERLINE!
106 | editor.url.style = #81A421,plain
107 |
108 | # e.g. + - = /
109 | editor.operator.style = #aaaaaa,plain
110 |
111 |
112 | # ?? maybe this is for words followed by a colon
113 | # like in case statements or goto
114 | editor.label.style = #7e7e7e,bold
115 |
116 |
117 | # TEXT - COMMENTS
118 | editor.comment1.style = #aaaaaa,plain
119 | editor.comment2.style = #aaaaaa,plain
120 |
121 |
122 | # LINE STATUS - editor line number status bar at the bottom of the screen
123 | linestatus.font = SansSerif,plain,10
124 | linestatus.height = 20
125 |
126 | # GUI - PLOTTING
127 | # color cycle created via colorbrewer2.org
128 | plotting.bgcolor = #ffffff
129 | plotting.color = #ffffff
130 | plotting.graphcolor.size = 4
131 | plotting.graphcolor.00 = #2c7bb6
132 | plotting.graphcolor.01 = #fdae61
133 | plotting.graphcolor.02 = #d7191c
134 | plotting.graphcolor.03 = #abd9e9
135 |
--------------------------------------------------------------------------------
/theme/theme_ORIG.txt:
--------------------------------------------------------------------------------
1 | #FUNCTIONS COLOR #D35400 - ORANGE KEYWORD1
2 | #FUNCTIONS COLOR #D35400 - ORANGE KEYWORD2
3 | #STRUCTURE COLORS #5E6D03 - GREEN KEYWORD3
4 | #VARIABLES COLOR #00979C - BLUE LITERAL1
5 |
6 | #ERROR COLOR #A61717 - RED
7 | #COMMENTS // COLOR #95A5A6 - LIGHT GREY
8 | #COMMENTS /**/ COLOR #434F54 - DARK GREY
9 |
10 |
11 | # GUI - STATUS
12 | status.notice.fgcolor = #002325
13 | status.notice.bgcolor = #17A1A5
14 | status.error.fgcolor = #FFFFFF
15 | status.error.bgcolor = #E34C00
16 | status.edit.fgcolor = #000000
17 | status.edit.bgcolor = #F1B500
18 | status.font = SansSerif,plain,12
19 |
20 | # GUI - TABS
21 | # settings for the tabs at the top
22 | # (tab images are stored in the lib/theme folder)
23 | header.bgcolor = #17A1A5
24 | header.text.selected.color = #005B5B
25 | header.text.unselected.color = #007e82
26 | header.text.font = SansSerif,plain,12
27 |
28 | # GUI - CONSOLE
29 | console.font = Monospaced,plain,11
30 | console.font.macosx = Monaco,plain,10
31 | console.color = #000000
32 | console.output.color = #eeeeee
33 | console.error.color = #E34C00
34 |
35 | # GUI - BUTTONS
36 | buttons.bgcolor = #006468
37 | buttons.status.font = SansSerif,plain,12
38 | buttons.status.color = #ffffff
39 |
40 | # GUI - LINESTATUS
41 | linestatus.color = #ffffff
42 | linestatus.bgcolor = #006468
43 |
44 | # EDITOR - DETAILS
45 |
46 | # foreground and background colors
47 | editor.fgcolor = #000000
48 | editor.bgcolor = #ffffff
49 |
50 | # highlight for the current line
51 | editor.linehighlight.color=#e2e2e2
52 | # highlight for the current line
53 | editor.linehighlight=false
54 |
55 | # caret blinking and caret color
56 | editor.caret.color = #333300
57 |
58 | # color to be used for background when 'external editor' enabled
59 | editor.external.bgcolor = #c8d2dc
60 |
61 | # selection color
62 | editor.selection.color = #ffcc00
63 |
64 | # area that's not in use by the text (replaced with tildes)
65 | editor.invalid.style = #7e7e7e,bold
66 |
67 | # little pooties at the end of lines that show where they finish
68 | editor.eolmarkers = false
69 | editor.eolmarkers.color = #999999
70 |
71 | # bracket/brace highlighting
72 | editor.brackethighlight = true
73 | editor.brackethighlight.color = #006699
74 |
75 |
76 | # TEXT - KEYWORDS
77 |
78 | # FUNCTIONS
79 | editor.keyword1.style = #d35400,bold
80 | editor.data_type.style = #d35400,bold
81 |
82 | # METHODS
83 | editor.keyword2.style = #D35400,plain
84 | editor.function.style = #d35400,plain
85 |
86 | # STRUCTURES
87 | editor.keyword3.style = #5E6D03,plain
88 | editor.reserved_word.style = #5E6D03,plain
89 |
90 |
91 | # TEXT - LITERALS
92 |
93 | # constants & datatypes
94 | editor.literal1.style = #006699,plain
95 |
96 | # p5 built in variables: e.g. mouseX, width, pixels
97 | editor.literal2.style = #00979C,plain
98 | editor.variable.style = #00979C,plain
99 | editor.reserved_word_2.style = #00979C,plain
100 | editor.literal_boolean.style = #00979C,plain
101 | editor.literal_char.style = #00979C,plain
102 | editor.literal_string_double_quote.style = #00979C,plain
103 | editor.preprocessor.style = #5E6D03,plain
104 |
105 | # http://www.arduino.cc/
106 | editor.url.style = #0000ff,underlined
107 |
108 | # e.g. + - = /
109 | editor.operator.style = #434f54,plain
110 |
111 |
112 | # ?? maybe this is for words followed by a colon
113 | # like in case statements or goto
114 | editor.label.style = #7e7e7e,bold
115 |
116 |
117 | # TEXT - COMMENTS
118 | editor.comment1.style = #434F54,plain
119 | editor.comment2.style = #95a5a6,plain
120 |
121 |
122 | # LINE STATUS - editor line number status bar at the bottom of the screen
123 | linestatus.font = SansSerif,plain,10
124 | linestatus.height = 20
125 |
--------------------------------------------------------------------------------