You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The option 'theme-16' sets the path to the theme file used in 16-color mode, and 'theme-256' sets the theme file used for 256-color mode.
116
-
117
-
Note that you can also load a custom theme file using the --theme command-line argument and passing it the path to a theme file, or disable themes entirely with the --notheme command line option.
118
-
119
-
Here is an example 16-color theme:
120
-
121
-
<pre>
122
-
[Theme-16]
123
-
name: 'Purple Drank'
124
-
mainColor: 6
125
-
clickColor: 3
126
-
borderColor: 6
127
-
clickHighlightColor: 5
128
-
notificationColor: 4
129
-
promptColor: 4
130
-
</pre>
131
-
132
-
and a 256-color theme:
133
-
134
-
<pre>
135
-
[Theme-256]
136
-
name: 'Muted Form'
137
-
mainColor: 104
138
-
clickColor: 37
139
-
borderColor: 236
140
-
clickHighlightColor: 15
141
-
notificationColor: 87
142
-
promptColor: 189
143
-
menuItemColor: 189
144
-
menuTitleColor: 159
145
-
menuBorderColor: 24
146
-
</pre>
147
-
148
-
The colors and theme options are as follows:
149
-
150
-
colors for 16-color mode:
151
-
1 black
152
-
2 blue
153
-
3 green
154
-
4 cyan
155
-
5 red
156
-
6 magenta
157
-
7 yellow
158
-
8 white
159
-
160
-
color codes numbers for 256-color mode can be found in Durdraw's 256-color selector.
161
-
162
-
```
163
-
mainColor: the color of most text
164
-
clickColor: the color of buttons (clickable items)
165
-
clickHighlightColor: the color the button changes to for a moment when clicked
166
-
borderColor: the color of the border around a drawing
167
-
notificationColor: the color of notification messages
168
-
promptColor: the color of user prompt messages
169
-
menuItemColor: the color of menu items
170
-
menuTitleColor: the color of menu titles
171
-
menuBorderColor: the color of the border around menus
172
-
```
173
-
174
93
## COMMAND LINE USAGE
175
94
176
95
You can play a .dur file or series of .dur files with:
@@ -262,6 +181,88 @@ Menu Number | Delay Range Tools Frame | Pause| Frame
The option 'theme-16' sets the path to the theme file used in 16-color mode, and 'theme-256' sets the theme file used for 256-color mode.
207
+
208
+
Note that you can also load a custom theme file using the --theme command-line argument and passing it the path to a theme file, or disable themes entirely with the --notheme command line option.
209
+
210
+
Here is an example 16-color theme:
211
+
212
+
<pre>
213
+
[Theme-16]
214
+
name: 'Purple Drank'
215
+
mainColor: 6
216
+
clickColor: 3
217
+
borderColor: 6
218
+
clickHighlightColor: 5
219
+
notificationColor: 4
220
+
promptColor: 4
221
+
</pre>
222
+
223
+
and a 256-color theme:
224
+
225
+
<pre>
226
+
[Theme-256]
227
+
name: 'Muted Form'
228
+
mainColor: 104
229
+
clickColor: 37
230
+
borderColor: 236
231
+
clickHighlightColor: 15
232
+
notificationColor: 87
233
+
promptColor: 189
234
+
menuItemColor: 189
235
+
menuTitleColor: 159
236
+
menuBorderColor: 24
237
+
</pre>
238
+
239
+
The colors and theme options are as follows:
240
+
241
+
colors for 16-color mode:
242
+
1 black
243
+
2 blue
244
+
3 green
245
+
4 cyan
246
+
5 red
247
+
6 magenta
248
+
7 yellow
249
+
8 white
250
+
251
+
color codes numbers for 256-color mode can be found in Durdraw's 256-color selector.
252
+
253
+
```
254
+
mainColor: the color of most text
255
+
clickColor: the color of buttons (clickable items)
256
+
clickHighlightColor: the color the button changes to for a moment when clicked
257
+
borderColor: the color of the border around a drawing
258
+
notificationColor: the color of notification messages
259
+
promptColor: the color of user prompt messages
260
+
menuItemColor: the color of menu items
261
+
menuTitleColor: the color of menu titles
262
+
menuBorderColor: the color of the border around menus
263
+
```
264
+
265
+
265
266
## OTHER TIPS
266
267
267
268
* To use themes, copy durdraw.ini to ~/.durdraw/ and edit it. Durdraw
0 commit comments