|
|
@@ -0,0 +1,948 @@
|
|
|
1
|
+Scheme: O
|
|
|
2
|
+
|
|
|
3
|
+#include "basic_colors.inc"
|
|
|
4
|
+#include "NodeGraphLight.inc"
|
|
|
5
|
+
|
|
|
6
|
+// Color Palette
|
|
|
7
|
+#define BACKGROUND WHITE
|
|
|
8
|
+
|
|
|
9
|
+#define TEXT GREY(0.15)
|
|
|
10
|
+#define TEXT_HIGHLIGHT GREY(0.08)
|
|
|
11
|
+
|
|
|
12
|
+#define LIGHT_BASE GREY(0.92)
|
|
|
13
|
+
|
|
|
14
|
+#define EDIT_BG WHITE
|
|
|
15
|
+#define EDIT_BG_ALT HSV 42 0.001 0.92
|
|
|
16
|
+
|
|
|
17
|
+#define HIGHLIGHT1 WHITE
|
|
|
18
|
+#define HIGHLIGHT2 GREY(0.975)
|
|
|
19
|
+#define HIGHLIGHT3 GREY(0.92)
|
|
|
20
|
+
|
|
|
21
|
+#define SHADOW1 GREY(0.773)
|
|
|
22
|
+#define SHADOW1_5 GREY(0.699)
|
|
|
23
|
+#define SHADOW2 GREY(0.63)
|
|
|
24
|
+#define SHADOW3 GREY(0.58)
|
|
|
25
|
+#define SHADOW3_5 GREY(0.51)
|
|
|
26
|
+#define SHADOW4 GREY(0.313)
|
|
|
27
|
+#define SHADOW5 GREY(0.15)
|
|
|
28
|
+
|
|
|
29
|
+#define GRADIENT_HIGH WHITE
|
|
|
30
|
+#define GRADIENT_LOW BACKGROUND
|
|
|
31
|
+
|
|
|
32
|
+#define PRESSED_TEXT WHITE
|
|
|
33
|
+#define PRESSED_HIGH #65808D
|
|
|
34
|
+#define PRESSED_LOW #B0B6B7
|
|
|
35
|
+
|
|
|
36
|
+#define BORDERBASE GREY(0.5)
|
|
|
37
|
+#define DIM_BG GREY(0.75)
|
|
|
38
|
+
|
|
|
39
|
+#define HELP_BG 1 1 0.88
|
|
|
40
|
+#define HELP_F1_BG 0.88 0.97 1
|
|
|
41
|
+
|
|
|
42
|
+#define SELECTION_HIGHLIGHT1 WHITE
|
|
|
43
|
+#define SELECTION_BASE 1 0.6 0
|
|
|
44
|
+#define SELECTION_HIGHLIGHT2 1 0.9 0.5
|
|
|
45
|
+#define SELECTION_SHADOW 1 0.4 0
|
|
|
46
|
+#define SELECTED_TEXT WHITE
|
|
|
47
|
+
|
|
|
48
|
+#define LISTA EDIT_BG
|
|
|
49
|
+#define LISTB EDIT_BG_ALT
|
|
|
50
|
+
|
|
|
51
|
+#define ERROR RED
|
|
|
52
|
+
|
|
|
53
|
+// Color correction for the icons --------------------------------------------
|
|
|
54
|
+
|
|
|
55
|
+IconBrightness: 1
|
|
|
56
|
+IconContrast: 1
|
|
|
57
|
+IconGamma: 1
|
|
|
58
|
+IconSaturation: 1
|
|
|
59
|
+
|
|
|
60
|
+// New UI Resources ----------------------------------------------------------
|
|
|
61
|
+
|
|
|
62
|
+BackColor: BACKGROUND
|
|
|
63
|
+
|
|
|
64
|
+ButtonGradHi: GRADIENT_HIGH
|
|
|
65
|
+ButtonGradLow: GRADIENT_LOW
|
|
|
66
|
+// Low end of gradient on non-selected tabs
|
|
|
67
|
+ButtonNonActiveGradLow: SHADOW2
|
|
|
68
|
+
|
|
|
69
|
+// These are used for tons of borders all over the place, but
|
|
|
70
|
+// NOT for buttons >:-(
|
|
|
71
|
+ButtonShadowLight: SHADOW1_5
|
|
|
72
|
+ButtonShadowMed: SHADOW3_5
|
|
|
73
|
+ButtonShadowMedDark: SHADOW4
|
|
|
74
|
+ButtonShadowDark: SHADOW5
|
|
|
75
|
+ButtonShadow: BLACK
|
|
|
76
|
+
|
|
|
77
|
+ToolbarBevelLight: WHITE
|
|
|
78
|
+ToolbarBevelDark: SHADOW4
|
|
|
79
|
+// Top/left end of gradient
|
|
|
80
|
+ToolbarFlatGradHi: GREY(0.88)
|
|
|
81
|
+// Bottom/right end of gradient
|
|
|
82
|
+ToolbarFlatGradLo: GREY(0.83)
|
|
|
83
|
+
|
|
|
84
|
+DialogBlendBG: WHITE
|
|
|
85
|
+
|
|
|
86
|
+TextColor: grey18
|
|
|
87
|
+HiliteTextColor: TEXT_HIGHLIGHT
|
|
|
88
|
+HiliteTextBG: #BFCFDE
|
|
|
89
|
+
|
|
|
90
|
+ButtonText: TEXT
|
|
|
91
|
+ButtonPressedText: PRESSED_TEXT
|
|
|
92
|
+ButtonPressedText2: PRESSED_TEXT
|
|
|
93
|
+ButtonPressedGradHi: PRESSED_HIGH
|
|
|
94
|
+ButtonPressedGradLow: PRESSED_LOW
|
|
|
95
|
+
|
|
|
96
|
+ButtonMenuArrowHi: SHADOW2
|
|
|
97
|
+ButtonMenuArrowLow: SHADOW3_5
|
|
|
98
|
+ButtonMenuArrow: HIGHLIGHT2
|
|
|
99
|
+
|
|
|
100
|
+ButtonArrow: TEXT
|
|
|
101
|
+ButtonArrowDisabled: HIGHLIGHT1
|
|
|
102
|
+ButtonArrowPressed: PRESSED_TEXT
|
|
|
103
|
+
|
|
|
104
|
+SecondaryText: GREY(0.5)
|
|
|
105
|
+LinkText: 0.0 0.0 1.0
|
|
|
106
|
+
|
|
|
107
|
+MenuBG: HIGHLIGHT1
|
|
|
108
|
+MenuText: TEXT
|
|
|
109
|
+MenuTextDisabled: SHADOW2
|
|
|
110
|
+MenuTextHotkey: SHADOW4
|
|
|
111
|
+MenuHighlight: SHADOW3
|
|
|
112
|
+MenuShadow: SHADOW5
|
|
|
113
|
+MenuTextSelected: PRESSED_TEXT
|
|
|
114
|
+MenuSelectedBG: SELECTION_BASE
|
|
|
115
|
+MenuTitleBG: BACKGROUND
|
|
|
116
|
+InvertedMenuBackground: GREY(0.46)
|
|
|
117
|
+
|
|
|
118
|
+// Colors for Ramp (Float) parameters.
|
|
|
119
|
+RampBG: DIM_BG
|
|
|
120
|
+RampFG: SHADOW4
|
|
|
121
|
+RampBGDisabled: DIM_BG
|
|
|
122
|
+RampFGDisabled: SHADOW2
|
|
|
123
|
+RampGrid: SHADOW5
|
|
|
124
|
+RampCurve: BLACK
|
|
|
125
|
+RampCurveDisabled: SHADOW3
|
|
|
126
|
+RampKeyBG: BLACK
|
|
|
127
|
+RampKeyFG: WHITE
|
|
|
128
|
+RampKeyDisabled: SHADOW3
|
|
|
129
|
+RampKeyHoverBG: SHADOW3
|
|
|
130
|
+RampKeyHoverFG: SHADOW5
|
|
|
131
|
+RampMarkerHover: SHADOW3
|
|
|
132
|
+
|
|
|
133
|
+Separator: BORDERBASE
|
|
|
134
|
+
|
|
|
135
|
+CheckBG: EDIT_BG
|
|
|
136
|
+CheckLocated: SHADOW4
|
|
|
137
|
+CheckColor: SHADOW5
|
|
|
138
|
+
|
|
|
139
|
+RadioBG: EDIT_BG
|
|
|
140
|
+RadioBorder: SHADOW4
|
|
|
141
|
+RadioDot: SELECTION_BASE
|
|
|
142
|
+RadioDotHighlight: SELECTION_HIGHLIGHT2
|
|
|
143
|
+
|
|
|
144
|
+TextboxBG: EDIT_BG
|
|
|
145
|
+TextboxInvalidBG: 0.95 0.56 0.56
|
|
|
146
|
+TextboxBorderPrimary: BORDERBASE
|
|
|
147
|
+TextboxBorderHighlight: BACKGROUND
|
|
|
148
|
+TextboxBorderStippled: BORDERBASE
|
|
|
149
|
+TextboxBorderKeyFocus: HSV 28 1.0 1.0
|
|
|
150
|
+TextboxError: ERROR
|
|
|
151
|
+TextboxGutter: GREY(0.8)
|
|
|
152
|
+TextboxDropMarker: #00 00 66
|
|
|
153
|
+
|
|
|
154
|
+TextboxFeedbackFG: GREY(0.5)
|
|
|
155
|
+TextboxFeedbackBG: LIGHT_BASE
|
|
|
156
|
+SelectedTextFG: SELECTED_TEXT
|
|
|
157
|
+SelectedTextBG: SELECTION_BASE
|
|
|
158
|
+SelectedTextDisabledBG: GREY(0.7)
|
|
|
159
|
+
|
|
|
160
|
+SliderTopBorder: BORDERBASE
|
|
|
161
|
+SliderBottomBorder: HIGHLIGHT3
|
|
|
162
|
+SliderAdvancedBevel: SHADOW1_5
|
|
|
163
|
+SliderAdvancedGroove: BLACK
|
|
|
164
|
+SliderRemainingBevel: SHADOW4
|
|
|
165
|
+SliderRemainingGroove: SHADOW2
|
|
|
166
|
+SliderTick: SHADOW3
|
|
|
167
|
+SliderRangeBrackets: SHADOW5
|
|
|
168
|
+
|
|
|
169
|
+SliderThumbGradHi: GRADIENT_HIGH
|
|
|
170
|
+SliderThumbGradLow: GRADIENT_LOW
|
|
|
171
|
+SliderThumbPressedGradHi: PRESSED_HIGH
|
|
|
172
|
+SliderThumbPressedGradLow: PRESSED_LOW
|
|
|
173
|
+SliderThumbTopBevel: HIGHLIGHT1
|
|
|
174
|
+SliderThumbBottomBevel: SHADOW3
|
|
|
175
|
+SliderThumbTopBorder: SHADOW2
|
|
|
176
|
+SliderThumbBottomBorder: SHADOW4
|
|
|
177
|
+SliderThumbRangeArrow: SHADOW4
|
|
|
178
|
+
|
|
|
179
|
+RangeSliderBackground: EDIT_BG
|
|
|
180
|
+RangeSliderRect: GREY(0.7)
|
|
|
181
|
+RangeSliderRectLocated: GREY(0.6)
|
|
|
182
|
+RangeSliderRectSelected:GREY(0.5)
|
|
|
183
|
+RangeSliderArrow: GREY(0.15)
|
|
|
184
|
+RangeSliderArrowLocated:GREY(0.05)
|
|
|
185
|
+RangeSliderArrowSelected:GREY(0)
|
|
|
186
|
+
|
|
|
187
|
+KeyframeButtonSelectedGradHi: GREY(0.9067645)
|
|
|
188
|
+KeyframeButtonSelectedGradLow: GREY(0.7429417)
|
|
|
189
|
+KeyframeButtonLocatedGradHi: GREY(0.8054116)
|
|
|
190
|
+KeyframeButtonLocatedGradLow: GREY(0.67435336)
|
|
|
191
|
+KeyframeButtonGradHi: GREY(0.737843)
|
|
|
192
|
+KeyframeButtonGradLow: GREY(0.6286278)
|
|
|
193
|
+KeyframeButtonCircleKey: HSV 88 0.96 0.46
|
|
|
194
|
+KeyframeButtonCircleSomeKey: HSV 88 0.96 0.23
|
|
|
195
|
+KeyframeButtonCircleNoKey: GREY(0.9)
|
|
|
196
|
+KeyframeButtonCirclePending: HSV 39 1 0.9
|
|
|
197
|
+KeyframeButtonBorder: SHADOW4
|
|
|
198
|
+KeyframeButtonCircleFillOpacity: 0.2
|
|
|
199
|
+KeyframeButtonCircleFillOpacity: GRE(0.2)
|
|
|
200
|
+
|
|
|
201
|
+LadderBG: EDIT_BG
|
|
|
202
|
+LadderText: TEXT
|
|
|
203
|
+LadderHighlight: SELECTION_BASE
|
|
|
204
|
+LadderOutline: SHADOW3
|
|
|
205
|
+LadderShadow: SHADOW4
|
|
|
206
|
+
|
|
|
207
|
+ScrollbarUpperBorder: BORDERBASE
|
|
|
208
|
+ScrollbarBottomBorder: SHADOW4
|
|
|
209
|
+ScrollbarWell: GREY(0.66)
|
|
|
210
|
+ScrollbarWellShadow1: GREY(0.543)
|
|
|
211
|
+ScrollbarWellShadow2: GREY(0.602)
|
|
|
212
|
+ScrollbarWellShadow3: GREY(0.645)
|
|
|
213
|
+ScrollbarWellShadowBlend12: GREY(0.526)
|
|
|
214
|
+ScrollbarWellShadowBlend13: GREY(0.535)
|
|
|
215
|
+ScrollbarWellShadowBlend22: GREY(0.562)
|
|
|
216
|
+ScrollbarWellShadowBlend23: GREY(0.590)
|
|
|
217
|
+ScrollbarWellShadowBlend32: GREY(0.590)
|
|
|
218
|
+ScrollbarWellShadowBlend33: GREY(0.629)
|
|
|
219
|
+
|
|
|
220
|
+ScrollbarThumbTopBorder: BORDERBASE
|
|
|
221
|
+ScrollbarThumbBottomBorder: SHADOW4
|
|
|
222
|
+ScrollbarThumbBevel: WHITE
|
|
|
223
|
+ScrollbarThumbGrippyBase: SHADOW5
|
|
|
224
|
+ScrollbarThumbGrippyEdge: SHADOW3
|
|
|
225
|
+
|
|
|
226
|
+ScrollbarButtonTopBorder: SHADOW3
|
|
|
227
|
+ScrollbarButtonBottomBorder: SHADOW4
|
|
|
228
|
+ScrollbarButtonBetweenBorder: SHADOW1_5
|
|
|
229
|
+ScrollbarButtonBevel: HIGHLIGHT1
|
|
|
230
|
+ScrollbarButtonArrow: TEXT
|
|
|
231
|
+
|
|
|
232
|
+ScrollArrow: GREY(0.4)
|
|
|
233
|
+ScrollArrowSelected: TEXT
|
|
|
234
|
+ScrollArrowDisabled: SHADOW1_5
|
|
|
235
|
+
|
|
|
236
|
+ProgressMeterPercentLabelLeft: GREY(0)
|
|
|
237
|
+ProgressMeterPercentLabelRight: WHITE
|
|
|
238
|
+ProgressMeterTopBorder: SHADOW3
|
|
|
239
|
+ProgressMeterBottomBorder: SHADOW4
|
|
|
240
|
+ProgressMeterWellGradHi: SHADOW4
|
|
|
241
|
+ProgressMeterWellGradLo: SHADOW2
|
|
|
242
|
+ProgressMeterBevelTop: HIGHLIGHT1
|
|
|
243
|
+ProgressMeterBevelBottom: SELECTION_SHADOW
|
|
|
244
|
+ProgressMeterGradHi: SELECTION_HIGHLIGHT2
|
|
|
245
|
+ProgressMeterGradLo: SELECTION_BASE
|
|
|
246
|
+ProgressMeterText: TEXT
|
|
|
247
|
+
|
|
|
248
|
+ListShadow: BORDERBASE
|
|
|
249
|
+ListHighlight: HIGHLIGHT1
|
|
|
250
|
+ListBorder: HIGHLIGHT3
|
|
|
251
|
+// ListBG does not seem to be used anywhere
|
|
|
252
|
+ListBG: HIGHLIGHT1
|
|
|
253
|
+ListEntry1: LISTA
|
|
|
254
|
+ListEntry2: LISTB
|
|
|
255
|
+ListEntrySelected: SELECTION_BASE
|
|
|
256
|
+ListTitleShadow: SHADOW3
|
|
|
257
|
+ListTitleHighlight: HIGHLIGHT2
|
|
|
258
|
+ListTitleGradHi: HIGHLIGHT3
|
|
|
259
|
+ListTitleGradLow: BACKGROUND
|
|
|
260
|
+ListTitleHighlightGradHi: SELECTION_HIGHLIGHT2
|
|
|
261
|
+ListTitleHighlightGradLow: SELECTION_BASE
|
|
|
262
|
+ListTitleFilteredText: SELECTION_BASE
|
|
|
263
|
+ListText: TEXT
|
|
|
264
|
+ListAltText: 0.9 0.4 0
|
|
|
265
|
+
|
|
|
266
|
+SwitchButtonSelected: GREY(0.5)
|
|
|
267
|
+SwitchButtonLocated: GREY(0.2)
|
|
|
268
|
+
|
|
|
269
|
+HotkeyMgrUnboundActionFG: SHADOW3
|
|
|
270
|
+
|
|
|
271
|
+// Divider line between spreadsheet columns
|
|
|
272
|
+SSBorder: GREY(0.9)
|
|
|
273
|
+// Drag And Drop Outline in spreadsheet.
|
|
|
274
|
+SSOutline: 0.0 0.0 1.0
|
|
|
275
|
+// Highlight Color Alpha in the channel lister
|
|
|
276
|
+// Red is for the Displayed Channel Alpha
|
|
|
277
|
+// Green is for the Graph Selected Channel Alpha.
|
|
|
278
|
+SSHighlightAlpha: 0.25 0.55 0.0
|
|
|
279
|
+
|
|
|
280
|
+SSHeader: GREY(0.29)
|
|
|
281
|
+
|
|
|
282
|
+GroupBorder: BORDERBASE
|
|
|
283
|
+
|
|
|
284
|
+InfoBG: HELP_BG
|
|
|
285
|
+InfoText: TEXT
|
|
|
286
|
+
|
|
|
287
|
+PopupHelpBG: HELP_BG
|
|
|
288
|
+PopupHelpFG: grey18
|
|
|
289
|
+PopupHelpHotkeyFG: SHADOW4
|
|
|
290
|
+PopupExtraHelpFG: TEXT
|
|
|
291
|
+PopupExtraHelpBG: HELP_F1_BG
|
|
|
292
|
+
|
|
|
293
|
+ShelfGradHi: WHITE
|
|
|
294
|
+ShelfGradMidHi: GREY(0.82)
|
|
|
295
|
+ShelfGradMidLow: GREY(0.75)
|
|
|
296
|
+ShelfGradLow: GREY(0.82)
|
|
|
297
|
+
|
|
|
298
|
+// This does not appear to be used
|
|
|
299
|
+//ShelfBG: 0.5 1 0
|
|
|
300
|
+
|
|
|
301
|
+ShelfEmptyBG: DIM_BG
|
|
|
302
|
+ShelfTabActiveHi: HIGHLIGHT1
|
|
|
303
|
+ShelfTabActiveLow: HIGHLIGHT1
|
|
|
304
|
+ShelfTabInactiveHi: HIGHLIGHT3
|
|
|
305
|
+ShelfTabInactiveLow: GREY(0.8)
|
|
|
306
|
+
|
|
|
307
|
+PaneTabActiveHi: HIGHLIGHT2
|
|
|
308
|
+PaneTabActiveLow: HIGHLIGHT2
|
|
|
309
|
+PaneTabInactiveHi: DIM_BG
|
|
|
310
|
+PaneTabInactiveLow: DIM_BG
|
|
|
311
|
+PaneTabEdges: BLACK
|
|
|
312
|
+PaneEmptyBG: DIM_BG
|
|
|
313
|
+PaneBorder: BLACK
|
|
|
314
|
+PaneHeaderGradHi: HIGHLIGHT2
|
|
|
315
|
+PaneHeaderGradLow: BACKGROUND
|
|
|
316
|
+PaneTabShadow: SHADOW3
|
|
|
317
|
+
|
|
|
318
|
+PathGadgetArrow1: GREY(0.5)
|
|
|
319
|
+PathGadgetArrow2: WHITE
|
|
|
320
|
+PathGadgetArrow3: GREY(0.95)
|
|
|
321
|
+//
|
|
|
322
|
+PathGadgetArrow1Selected: HIGHLIGHT2
|
|
|
323
|
+PathGadgetArrow2Selected: GREY(0.83)
|
|
|
324
|
+PathGadgetArrow3Selected: BORDERBASE
|
|
|
325
|
+//
|
|
|
326
|
+PathGadgetPrimaryBorder: BORDERBASE
|
|
|
327
|
+PathGadgetSecondaryBorder: SHADOW4
|
|
|
328
|
+//
|
|
|
329
|
+PathGadgetPrimaryBorderSelected: SHADOW5
|
|
|
330
|
+PathGadgetSecondaryBorderSelected: SHADOW4
|
|
|
331
|
+//
|
|
|
332
|
+PathGadgetBevel: HIGHLIGHT1
|
|
|
333
|
+PathGadgetBevelSelected: BORDERBASE
|
|
|
334
|
+//
|
|
|
335
|
+PathGadgetText: TEXT
|
|
|
336
|
+//
|
|
|
337
|
+PathGadgetGradHi: HIGHLIGHT3
|
|
|
338
|
+PathGadgetGradLow: GREY(0.83)
|
|
|
339
|
+//
|
|
|
340
|
+PathGadgetGradHiSelected: SHADOW3
|
|
|
341
|
+PathGadgetGradLowSelected: SHADOW2
|
|
|
342
|
+//
|
|
|
343
|
+PathGadgetHistoryButtonBevel: SHADOW1_5
|
|
|
344
|
+PathGadgetHistoryButtonBevelSelected: GREY(0)
|
|
|
345
|
+
|
|
|
346
|
+ViewportBorder: GREY(0.45)
|
|
|
347
|
+ViewportDividers: GREY(0.4)
|
|
|
348
|
+
|
|
|
349
|
+ViewportInspectBox: GREY(0.8)
|
|
|
350
|
+ViewportInspectBorder: GREY(0.3)
|
|
|
351
|
+ViewportInspectText: BLACK
|
|
|
352
|
+
|
|
|
353
|
+TreeNodeBG: EDIT_BG
|
|
|
354
|
+TreeNodeAlternateBG: EDIT_BG_ALT
|
|
|
355
|
+TreeNodeSelectedBG: SELECTION_BASE
|
|
|
356
|
+TreeNodeSelectedFG: SELECTED_TEXT
|
|
|
357
|
+TreeNodeReservedParmFG: SHADOW3
|
|
|
358
|
+TreeLine: GREY(0.5)
|
|
|
359
|
+
|
|
|
360
|
+PerformanceGood: 0.45 0.82 0.08
|
|
|
361
|
+PerformanceBad: 0.8 0 0
|
|
|
362
|
+
|
|
|
363
|
+RecordBtnFlash: #E6 17 17
|
|
|
364
|
+
|
|
|
365
|
+NodeConnectionDefaultBG: SHADOW3_5
|
|
|
366
|
+NodeConnectionTextBG: HIGHLIGHT3
|
|
|
367
|
+NodeConnectionGlow: WHITE
|
|
|
368
|
+NodeConnectionArrowLight: WHITE
|
|
|
369
|
+NodeConnectionArrowDark: BLACK
|
|
|
370
|
+NodeConnectionBevel: WHITE
|
|
|
371
|
+NodeConnectionTopBorder: GREY(0.33)
|
|
|
372
|
+NodeConnectionBottomBorder: BLACK
|
|
|
373
|
+
|
|
|
374
|
+NodeButtonGrad: GRADIENT_HIGH
|
|
|
375
|
+// NodeButtonSelectedGrad does not seem to be used anymore.
|
|
|
376
|
+NodeButtonSelectedGrad: BLACK
|
|
|
377
|
+NodeButtonBevel: WHITE
|
|
|
378
|
+NodeButtonBevelSelected: BLACK
|
|
|
379
|
+NodeSeparator: SHADOW3
|
|
|
380
|
+NodeSeparatorEnabled: GREY(0.33)
|
|
|
381
|
+NodeError: ERROR
|
|
|
382
|
+NodeWarningBG: BLACK
|
|
|
383
|
+NodeWarningFG: 1.0 0.87 0
|
|
|
384
|
+NodeDefaultBG: BACKGROUND
|
|
|
385
|
+NodeHighlight: 0 0.68 0.94
|
|
|
386
|
+NodeDebugFG: 0.741 0.988 1
|
|
|
387
|
+
|
|
|
388
|
+NodeTemplateFlag: #FF 66 FF
|
|
|
389
|
+NodeSelectableTemplateFlag: #CC 33 CC
|
|
|
390
|
+NodeBypassFlag: 1.0 1.0 0
|
|
|
391
|
+NodeRenderFlag: 0.666 0.5 1.0
|
|
|
392
|
+NodeDisplayFlag: #00 66 CC
|
|
|
393
|
+NodeDisplayAndRenderFlag: 0 0.68 0.94
|
|
|
394
|
+NodeOutputFlag: 0.75 0.4 0.0
|
|
|
395
|
+NodeSelectableFlag: #66 CC 00
|
|
|
396
|
+NodeExportFlag: 0.75 0.4 0.0
|
|
|
397
|
+NodeHiddenFlag: 0.42 0.4 0.25
|
|
|
398
|
+NodeAudioFlag: 0.0 0.5 0.5
|
|
|
399
|
+NodeThumbnailFlag: 0.35 0.6 0.2
|
|
|
400
|
+NodeLockFlag: #FF 33 00
|
|
|
401
|
+NodeSoftLockFlag: #C4 E3 61
|
|
|
402
|
+NodeLoadedWithUnloadFlagOn: 1.0 0.0 1.0
|
|
|
403
|
+NodeDebugFlag: 0.741 0.988 1
|
|
|
404
|
+
|
|
|
405
|
+NetworkSelection: 1.00 1.00 0.00
|
|
|
406
|
+NetworkCurrent: 1.00 0.85 0.00
|
|
|
407
|
+NetworkCurrentNonSelected: GREY(0.4)
|
|
|
408
|
+NetworkBackground: GREY(0.65)
|
|
|
409
|
+NetworkDisplayHighlight: 0.4180 0.5469 0.6758
|
|
|
410
|
+NetworkRenderHighlight: #9E 8E AE
|
|
|
411
|
+NetworkOutputHighlight: 0.75 0.4 0.0
|
|
|
412
|
+NetworkTemplateHighlight: #FF 66 FF
|
|
|
413
|
+NetworkLegacyHighlight: #FF 33 33
|
|
|
414
|
+NetworkOverviewDragger: WHITE
|
|
|
415
|
+NetworkTimeDependent: 0.0 1.0 0.0
|
|
|
416
|
+
|
|
|
417
|
+NetworkGrid: GREY(0.78)
|
|
|
418
|
+
|
|
|
419
|
+NetworkWireNormal: 0.5 0.5 0.5
|
|
|
420
|
+NetworkWireActive: 1.0 0.3 0.0
|
|
|
421
|
+NetworkWireActiveLight: 1.0 0.8 0.0
|
|
|
422
|
+NetworkWireHighlight: 1.0 1.0 0.0
|
|
|
423
|
+NetworkWireShadow: 0.0 0.0 0.0
|
|
|
424
|
+NetworkWireExtraNormal: 0.996 0.75 0.8
|
|
|
425
|
+NetworkWireExtraActive: 0.3 0.0 0.0
|
|
|
426
|
+NetworkWireExtraActiveLight: 0.8 0.0 0.0
|
|
|
427
|
+NetworkWireIKNormal: 0.72 0.31 0.72
|
|
|
428
|
+NetworkWireIKActive: 0.0 0.0 0.3
|
|
|
429
|
+NetworkWireIKActiveLight: 0.0 0.0 0.8
|
|
|
430
|
+NetworkWireOutputOverrideNormal: 1.0 1.0 1.0
|
|
|
431
|
+NetworkWireOutputOverrideHighlight: 0.0 1.0 0.0
|
|
|
432
|
+NetworkWireTimeDepNormal: 0.0 1.0 0.0
|
|
|
433
|
+NetworkWireLoopBack: HSV 180 1.0 1.0 1.0
|
|
|
434
|
+NetworkWirePassThrough: HSV 180 1.0 1.0 1.0
|
|
|
435
|
+
|
|
|
436
|
+StatusBarMessageFG: BLACK
|
|
|
437
|
+StatusBarMessageBG: BACKGROUND
|
|
|
438
|
+//
|
|
|
439
|
+StatusBarPromptFG: WHITE
|
|
|
440
|
+StatusBarPromptBG: 0.3 0.4 0.9
|
|
|
441
|
+//
|
|
|
442
|
+StatusBarWarningFG: WHITE
|
|
|
443
|
+StatusBarWarningBG: 0.85 0.25 0.0
|
|
|
444
|
+//
|
|
|
445
|
+StatusBarErrorFG: WHITE
|
|
|
446
|
+StatusBarErrorBG: 1.0 0.0 0.0
|
|
|
447
|
+
|
|
|
448
|
+DopeSheetCurrentFrameFG: WHITE
|
|
|
449
|
+DopeSheetCurrentFrameBG: BLACK
|
|
|
450
|
+DopeSheetHoverLine: GREY(0.5)
|
|
|
451
|
+
|
|
|
452
|
+DopeSheetHoverFrameFG: BLACK
|
|
|
453
|
+DopeSheetHoverFrameBG: GREY(0.84)
|
|
|
454
|
+DopeSheetIndicatorLine: BLACK
|
|
|
455
|
+DopeSheetIndicatorClickLine: GREY(0.5)
|
|
|
456
|
+DopeSheetIndicatorOverLine: GREY(0.2)
|
|
|
457
|
+DopeSheetKnob: BLACK
|
|
|
458
|
+DopeSheetKnobClick: GREY(0.5)
|
|
|
459
|
+DopeSheetKnobOver: GREY(0.2)
|
|
|
460
|
+DopeSheetKnobPendingKey: SELECTION_BASE
|
|
|
461
|
+DopeSheetKnobOutlier: 1 1 0
|
|
|
462
|
+DopeSheetKeyActive: HSV 88 0.96 0.46
|
|
|
463
|
+DopeSheetKeyPartial2: HSV 88 1.0 0.3
|
|
|
464
|
+DopeSheetKeyPartial: HSV 88 0.96 0.7
|
|
|
465
|
+DopeSheetKeyPending: SELECTION_BASE
|
|
|
466
|
+DopeSheetKeyMuted: GREY(0.2)
|
|
|
467
|
+DopeSheetKeyOverlay: 1 0 0
|
|
|
468
|
+DopeSheetKeyDisabled: 0.5 0 1
|
|
|
469
|
+DopeSheetKeySelected: SELECTION_HIGHLIGHT2
|
|
|
470
|
+DopeSheetKeySelectedBorder: SELECTION_BASE
|
|
|
471
|
+DopeSheetOutsideRangeBG: BACKGROUND
|
|
|
472
|
+DopeSheetSimulation: 0 0.5 1
|
|
|
473
|
+DopeSheetSimulationReset: 1 0.5 0
|
|
|
474
|
+DopeSheetSimulationPlaying: 0.59 0.48 0.71
|
|
|
475
|
+DopeSheetTimeline: GREY(0.7)
|
|
|
476
|
+DopeSheetTimelineAudio: GREY(0.5)
|
|
|
477
|
+DopeSheetTickLarge: GREY(0.3)
|
|
|
478
|
+DopeSheetTickSmall: GREY(0.6)
|
|
|
479
|
+DopeSheetTickSmallAudio: GREY(0.35)
|
|
|
480
|
+DopeSheetTickNumber: GREY(0.5)
|
|
|
481
|
+DopeSheetRangeNumber: GREY(0.3)
|
|
|
482
|
+DopeSheetRowDisabled: GREY(0.86)
|
|
|
483
|
+DopeSheetRowLight: LISTA
|
|
|
484
|
+DopeSheetRowDark: LISTB
|
|
|
485
|
+DopeSheetColLine: GREY(0.9)
|
|
|
486
|
+DopeSheetRowLine: GREY(0.9)
|
|
|
487
|
+DopeSheetViewLock: 1 1 0.5
|
|
|
488
|
+DopeSheetSelection: HSV 60 1.0 0.5
|
|
|
489
|
+DopeSheetSelectionHover: HSV 60 0.5 0.9
|
|
|
490
|
+DopeSheetSelectionActive: HSV 60 0.5 0.9
|
|
|
491
|
+DopeSheetSelectionInactive: HSV 60 0.9 0.7
|
|
|
492
|
+DopeSheetSelectionText: GREY(0)
|
|
|
493
|
+DopeSheetSelectionInactiveLock: 1 0 1
|
|
|
494
|
+DopeSheetSelectionRemove: 1 0 0
|
|
|
495
|
+DopeSheetOverwriteHover: 1 0 0
|
|
|
496
|
+DopeSheetOverwriteActive: 0.7 0 0
|
|
|
497
|
+DopeSheetOverwriteInactive: 0.9 0 0
|
|
|
498
|
+DopeSheetSpreadSheetText: GREY(0)
|
|
|
499
|
+DopeSheetSpreadSheetDisabled: 1 0.9176 0.9569
|
|
|
500
|
+DopeSheetRippleTool: 1 1 0
|
|
|
501
|
+
|
|
|
502
|
+BorderLight: BORDERBASE
|
|
|
503
|
+BorderDark: BLACK
|
|
|
504
|
+
|
|
|
505
|
+AssetBannerBackground: GREY(0.12)
|
|
|
506
|
+AssetUpdateStatusBackground: 0.19 0.28 0.38
|
|
|
507
|
+AssetUpdateStatusText: WHITE
|
|
|
508
|
+OrboltSplashscreenProgressbar: 0.19 0.28 0.38
|
|
|
509
|
+
|
|
|
510
|
+MplayInspectBox: GREY(0.8)
|
|
|
511
|
+MplayInspectBorder: GREY(0.3)
|
|
|
512
|
+MplayInspectText: BLACK
|
|
|
513
|
+MplayColorCorrectWarn: 1 1 0.75
|
|
|
514
|
+//
|
|
|
515
|
+// The following colors are used on the top control panels
|
|
|
516
|
+// within the desktop panes to indicate the current data type.
|
|
|
517
|
+// These are Tints, not colors, so beware of modifying the saturation
|
|
|
518
|
+// or brightness.
|
|
|
519
|
+//
|
|
|
520
|
+ObjectColor: HSV 210 0.05 0.95
|
|
|
521
|
+SopColor: HSV 100 0.05 0.95
|
|
|
522
|
+DopColor: HSV 0 0.05 0.95
|
|
|
523
|
+PopNetColor: HSV 170 0.05 0.95
|
|
|
524
|
+PopColor: HSV 170 0.05 0.95
|
|
|
525
|
+ShopColor: HSV 340 0.05 0.95
|
|
|
526
|
+VopNetColor: HSV 260 0.05 0.95
|
|
|
527
|
+VopColor: HSV 260 0.05 0.95
|
|
|
528
|
+ChopNetColor: HSV 60 0.05 0.95
|
|
|
529
|
+ChopColor: HSV 60 0.05 0.95
|
|
|
530
|
+CopNet2Color: HSV 40 0.05 0.95
|
|
|
531
|
+Cop2Color: HSV 40 0.05 0.95
|
|
|
532
|
+OutputColor: HSV 20 0.05 0.95
|
|
|
533
|
+RootColor: HSV 0 0 1
|
|
|
534
|
+
|
|
|
535
|
+// Channel Editor Colors ---------------------------------------------------
|
|
|
536
|
+//
|
|
|
537
|
+// These colors for for graphical elements in the Channel Editor
|
|
|
538
|
+//
|
|
|
539
|
+ChannelEditorBackground: GREY(0.65) // Background of the graph same as network color
|
|
|
540
|
+ChannelEditorBGOutsideGlobal: 0.706 0.692 0.622 // Background of the graph outside the global time range (orange color mixed at 20% with grey 0.65)
|
|
|
541
|
+
|
|
|
542
|
+ChannelEditorBGOutsidePlayback: 0.678 0.671 0.636 // Background of the graph outside the playback range(orange color mixed at 10% with grey 0.65)
|
|
|
543
|
+ChannelEditorTimebar: BLACK // Color of timebar to be xored on top
|
|
|
544
|
+ChannelEditorGridLine: GREY(0.78) // Graph grid line
|
|
|
545
|
+ChannelEditorGridDashedLine: GREY(0.78) // Graph grid dashed line
|
|
|
546
|
+ChannelEditorHandleDefault: BLACK // Handles
|
|
|
547
|
+ChannelEditorHandleSelected: 1.0 0.88235 0.701 // Selected handle
|
|
|
548
|
+ChannelEditorHandleLocated: 1.00 1.00 0.00 // Handle when mouse is on top
|
|
|
549
|
+ChannelEditorHandleSelectedLocated: 1.00 1.00 1.00 // Selected handle when mouse is on top
|
|
|
550
|
+ChannelEditorTimeText: GREY(0.65) // Color of the bottom time text
|
|
|
551
|
+ChannelEditorStatsText: BLACK // Color of the stats text
|
|
|
552
|
+ChannelEditorViewLock: 1 1 0.5
|
|
|
553
|
+
|
|
|
554
|
+ChannelListCircleOutline: BLACK
|
|
|
555
|
+
|
|
|
556
|
+// Chop Editor Colors ---------------------------------------------------
|
|
|
557
|
+//
|
|
|
558
|
+// These colors for for graphical elements in the Chop Editor
|
|
|
559
|
+//
|
|
|
560
|
+ChopEditorTimeBar: BLACK
|
|
|
561
|
+
|
|
|
562
|
+// Channel Colors ----------------------------------------------------------
|
|
|
563
|
+//
|
|
|
564
|
+// These colors are for coloring channels in various places in Houdini
|
|
|
565
|
+// (eg. the Channel Editor and Channel List panes).
|
|
|
566
|
+//
|
|
|
567
|
+// They are currently divided into 4 groups:
|
|
|
568
|
+// - red colors: for channel names ending in x or r
|
|
|
569
|
+// - green colors: for channel names ending in y or g
|
|
|
570
|
+// - blue colors: for channel names ending in z or b
|
|
|
571
|
+// - other colors: for channel names not ending in letters mentioned above
|
|
|
572
|
+// The channel names ending r, g, or b always use the first entry of each of
|
|
|
573
|
+// their respective color groups.
|
|
|
574
|
+//
|
|
|
575
|
+// Each color group contains an arbitrary number of similar colors, uniquely
|
|
|
576
|
+// determined by their numeric suffix. When determining the color of a
|
|
|
577
|
+// particular channel, both its node and channel name is used. For example,
|
|
|
578
|
+// point1/tx and point1/vx will be both be reds of different hues, which in turn
|
|
|
579
|
+// will also differ from point2/tx and point2/vx.
|
|
|
580
|
+//
|
|
|
581
|
+ChannelColorRed1: hsv 0.0 1.0 1.00 // red
|
|
|
582
|
+ChannelColorRed2: hsv 320.0 1.0 1.00 // before red
|
|
|
583
|
+ChannelColorRed3: hsv 340.0 1.0 1.00
|
|
|
584
|
+ChannelColorRed4: hsv 20.0 1.0 1.00 // after red
|
|
|
585
|
+ChannelColorRed5: hsv 40.0 1.0 1.00
|
|
|
586
|
+ChannelColorGreen1: hsv 120.0 1.0 1.00 // green
|
|
|
587
|
+ChannelColorGreen2: hsv 80.0 1.0 1.00 // before green
|
|
|
588
|
+ChannelColorGreen3: hsv 100.0 1.0 1.00
|
|
|
589
|
+ChannelColorGreen4: hsv 140.0 1.0 1.00 // after green
|
|
|
590
|
+ChannelColorGreen5: hsv 160.0 1.0 1.00
|
|
|
591
|
+ChannelColorBlue1: hsv 240.0 1.0 1.00 // blue
|
|
|
592
|
+ChannelColorBlue2: hsv 200.0 1.0 1.00 // before blue
|
|
|
593
|
+ChannelColorBlue3: hsv 220.0 1.0 1.00
|
|
|
594
|
+ChannelColorBlue4: hsv 260.0 1.0 1.00 // after blue
|
|
|
595
|
+ChannelColorBlue5: hsv 280.0 1.0 1.00
|
|
|
596
|
+ChannelColorOther1: hsv 60.0 1.0 1.00 // Yellow
|
|
|
597
|
+ChannelColorOther2: hsv 180.0 1.0 1.00 // Aqua
|
|
|
598
|
+ChannelColorOther3: hsv 300.0 1.0 1.00 // Purple
|
|
|
599
|
+ChannelColorOther4: hsv 60.0 1.0 0.75 // Dark Yellow
|
|
|
600
|
+ChannelColorOther5: hsv 180.0 1.0 0.75 // Dark Aqua
|
|
|
601
|
+ChannelColorOther6: hsv 300.0 1.0 0.75 // Dark Purple
|
|
|
602
|
+
|
|
|
603
|
+// Geometry group colors ---------------------------------------------------
|
|
|
604
|
+//
|
|
|
605
|
+// These two colors specify opposing corners of a quadrilateral in HSV space.
|
|
|
606
|
+// Colors for geometry groups are sampled from within this quad.
|
|
|
607
|
+//
|
|
|
608
|
+GeoGroupColor1: hsv 90.0 0.3 1.0
|
|
|
609
|
+GeoGroupColor2: hsv 330.0 0.6 1.0
|
|
|
610
|
+
|
|
|
611
|
+// Syntax highlighting in editors and input boxes
|
|
|
612
|
+ParmSyntaxPlainColor: black
|
|
|
613
|
+ParmSyntaxStringColor: #00 66 00
|
|
|
614
|
+ParmSyntaxVarColor: #88 88 00
|
|
|
615
|
+ParmSyntaxFuncColor: #00 66 66
|
|
|
616
|
+ParmSyntaxKeywordColor: #88 00 88
|
|
|
617
|
+ParmSyntaxQuoteColor: #00 00 66
|
|
|
618
|
+ParmSyntaxNumberColor: #00 7f 40
|
|
|
619
|
+ParmSyntaxRefColor: #77 44 00
|
|
|
620
|
+ParmSyntaxCommentColor: #88 88 00
|
|
|
621
|
+ParmSyntaxErrorColor: #ff 00 00
|
|
|
622
|
+ParmParenMatchColor: #00 55 00
|
|
|
623
|
+ParmQuoteMatchColor: #00 ff ff
|
|
|
624
|
+ParmMisMatchColor: #ff 77 77
|
|
|
625
|
+
|
|
|
626
|
+PreEditUnderlineColor: SELECTION_BASE
|
|
|
627
|
+
|
|
|
628
|
+// Old UI Resources ----------------------------------------------------------
|
|
|
629
|
+ForegroundColor: grey80
|
|
|
630
|
+BackgroundColor: grey62
|
|
|
631
|
+PaperColor: EDIT_BG
|
|
|
632
|
+
|
|
|
633
|
+ButtonColor: BACKGROUND
|
|
|
634
|
+ButtonStripColor: BACKGROUND
|
|
|
635
|
+
|
|
|
636
|
+ListTitleColor: grey68
|
|
|
637
|
+ListEntryColor: grey62
|
|
|
638
|
+ListEntrySelectedColor: lightgoldenrod2
|
|
|
639
|
+
|
|
|
640
|
+MenuBarColor: grey75
|
|
|
641
|
+MenuColor: grey70
|
|
|
642
|
+BlueSelectedMenuColor: #20 20 ff
|
|
|
643
|
+
|
|
|
644
|
+SliderColor: grey65
|
|
|
645
|
+SliderThumbColor: grey68
|
|
|
646
|
+InputColor: grey70
|
|
|
647
|
+RadioColor: grey60
|
|
|
648
|
+
|
|
|
649
|
+IconBackgroundColor: grey80
|
|
|
650
|
+IconOutlineColor: grey30
|
|
|
651
|
+IconShadowColor: grey50
|
|
|
652
|
+IconLocatedColor: white
|
|
|
653
|
+
|
|
|
654
|
+DisabledTextColor: grey50
|
|
|
655
|
+DisabledTextDropShadowColor: grey80
|
|
|
656
|
+PopupHelpBackgroundColor: SELECTION_HIGHLIGHT2
|
|
|
657
|
+
|
|
|
658
|
+// New colors for Popup windows (Ex. Anonymous Usage Stats Window)
|
|
|
659
|
+PopupWindowTextColor: white
|
|
|
660
|
+BlueTextLinkColor: #33 66 BB
|
|
|
661
|
+
|
|
|
662
|
+// Note: the luminance levels of most of these colors should be similar
|
|
|
663
|
+// so that none of them stands out too much and so that the text
|
|
|
664
|
+// in the parameter fields will be readable.
|
|
|
665
|
+//
|
|
|
666
|
+
|
|
|
667
|
+// Not Used
|
|
|
668
|
+NormalColor: 0.0 0.0 0.0
|
|
|
669
|
+// Parameter is locked
|
|
|
670
|
+LockedColor: #c4 c4 c4
|
|
|
671
|
+// Pending change
|
|
|
672
|
+PendingColor: #ff ff aa //yellow
|
|
|
673
|
+// Keyframe
|
|
|
674
|
+IsKeyColor: #df ff b6 //green
|
|
|
675
|
+// constant() or channel with no keys
|
|
|
676
|
+IsSoftKeyColor: #d5 ff fe //cyan
|
|
|
677
|
+// Channel, not at a key. (Expression)
|
|
|
678
|
+IsNotKeyColor: #d5 ff fe //cyan
|
|
|
679
|
+// Channel is disabled from dopesheet
|
|
|
680
|
+DisabledColor: #8c a8 bf //steel
|
|
|
681
|
+// Has "lock()" expression
|
|
|
682
|
+ChannelLockedColor: #c6 c6 c6 //gray
|
|
|
683
|
+// Parameter is overridden by chop
|
|
|
684
|
+OverrideColor: #ff eb b5 //peach
|
|
|
685
|
+// Expr language differs from node lang.
|
|
|
686
|
+OtherLanguageColor: #ed d1 ee //purple
|
|
|
687
|
+// Accent for non-default parms
|
|
|
688
|
+NonDefAccentColor: 0.00 0.00 0.00
|
|
|
689
|
+// Accent for !!ch()!! parms
|
|
|
690
|
+ChanRefAccentColor: 0.50 0.90 0.50
|
|
|
691
|
+// Accents are this color when disabled
|
|
|
692
|
+DisabledAccentColor: 0.30 0.30 0.30
|
|
|
693
|
+// Parm color when exluded from take, and auto-take is on.
|
|
|
694
|
+AutoTakeExcluded: 0.86 0.84 0.75
|
|
|
695
|
+
|
|
|
696
|
+ScopedBlend: 0.9 0.1 0.9
|
|
|
697
|
+ScopedBaseColor: GREY(0.7)
|
|
|
698
|
+ScopedColor: SELECTION_BASE
|
|
|
699
|
+ScopedBaseSelectedColor: GREY(1.0)
|
|
|
700
|
+ScopedSelectedColor: GREY(0.5)
|
|
|
701
|
+AutoScopedColor: GREY(0.7)
|
|
|
702
|
+ScopedAlpha: 1.0 1.0 1.0
|
|
|
703
|
+
|
|
|
704
|
+//
|
|
|
705
|
+// Parm border colors indicating that the parm has a handle associated with it:
|
|
|
706
|
+//
|
|
|
707
|
+
|
|
|
708
|
+// handle is invisible, probably XCF
|
|
|
709
|
+InvisibleHandleColor: 0.70 0.00 0.00
|
|
|
710
|
+// handle is visible, eg. xform handle
|
|
|
711
|
+VisibleHandleColor: 0.00 0.50 0.50
|
|
|
712
|
+// handle is active
|
|
|
713
|
+ActiveHandleColor: 1.00 1.00 0.00
|
|
|
714
|
+
|
|
|
715
|
+//
|
|
|
716
|
+// The following are used for the flag buttons in the group and node
|
|
|
717
|
+// tiles and listers.
|
|
|
718
|
+
|
|
|
719
|
+SelectOnColor: 0.75 0.75 0
|
|
|
720
|
+SelectOffColor: 0.56 0.56 0
|
|
|
721
|
+DisplayOnColor: 0.3 0.5 1
|
|
|
722
|
+DisplayOffColor: 0.2 0.3 0.6
|
|
|
723
|
+TemplateOnColor: 1 0.5 1
|
|
|
724
|
+TemplateOffColor: 0.75 0.37 0.75
|
|
|
725
|
+BypassOnColor: 1 0.5 0
|
|
|
726
|
+BypassOffColor: 0.5 0.25 0
|
|
|
727
|
+SelectableOnColor: 0.6 0.35 0.2
|
|
|
728
|
+SelectableOffColor: 0.4 0.2 0.15
|
|
|
729
|
+ExposeOnColor: 1 0 0
|
|
|
730
|
+ExposeOffColor: 0.6 0 0
|
|
|
731
|
+CurrentColor: 0.25 0.85 0.25
|
|
|
732
|
+
|
|
|
733
|
+
|
|
|
734
|
+SplitBarBackground: BACKGROUND
|
|
|
735
|
+SplitBarEdgeColor: GREY(0.36)
|
|
|
736
|
+SplitBarLightColor: GREY(0.432)
|
|
|
737
|
+SplitBarDarkColor: GREY(0.18)
|
|
|
738
|
+
|
|
|
739
|
+SplitBarPaneOutline: 0.59 0.59 0.59
|
|
|
740
|
+SplitBarGrippyColor: 0.08 0.08 0.08
|
|
|
741
|
+SplitBarHighlight: 1 1 1
|
|
|
742
|
+
|
|
|
743
|
+PlayBarOnColor: 0.05 0.8 0.05
|
|
|
744
|
+PlayBarOffColor: 0.25 0.25 0.25
|
|
|
745
|
+PlayBarDisabledColor: 0.4 0.4 0.4
|
|
|
746
|
+PlayBarResetColor: 1 1 0.0
|
|
|
747
|
+PlayBarNoPending: 0 0.8 0
|
|
|
748
|
+PlayBarNoPending2: 0 1 0
|
|
|
749
|
+PlayBarPending: 0.75 0.75 0.5
|
|
|
750
|
+PlayBarPending2: 1 1 0.5
|
|
|
751
|
+PlayBarAudioWaveColor: 0.643 0.643 0.643
|
|
|
752
|
+PlayBarStartEndFieldBG: EDIT_BG_ALT
|
|
|
753
|
+PlayBarGStartEndFieldBG: GREY(0.8)
|
|
|
754
|
+
|
|
|
755
|
+// The following are used for the indicator colours in the info button
|
|
|
756
|
+ErrorFlag: 0.9 0.1 0.1
|
|
|
757
|
+WarningFlag: 1 1 0
|
|
|
758
|
+MessageFlag: 0.8 0.8 0.8
|
|
|
759
|
+FilteredFlag: 0.6 0.6 0.6
|
|
|
760
|
+
|
|
|
761
|
+// The NoSaveFlag color is used in the resource managers for .nosave files
|
|
|
762
|
+NoSaveFlag: 0.0 0.4 0.1
|
|
|
763
|
+
|
|
|
764
|
+// The following colors are for the status bar
|
|
|
765
|
+MessageColor: 0.0 0.0 0.0
|
|
|
766
|
+PromptColor: 0.3 0.4 0.9
|
|
|
767
|
+WarningColor: 0.85 0.25 0.0
|
|
|
768
|
+ErrorColor: 1.0 0.0 0.0
|
|
|
769
|
+
|
|
|
770
|
+// The following color is for the SHOP viewer
|
|
|
771
|
+ShopViewTitleColor 1.0 1.0 0.0
|
|
|
772
|
+
|
|
|
773
|
+// The following colors are for Vop input/output labels
|
|
|
774
|
+VopInOutVectorColor: #367245
|
|
|
775
|
+VopInOutVectorArrayColor: #367054
|
|
|
776
|
+VopInOutVector2Color: #148200
|
|
|
777
|
+VopInOutVector2ArrayColor: #0B4400
|
|
|
778
|
+VopInOutVector4Color: #5A7400
|
|
|
779
|
+VopInOutVector4ArrayColor: #435600
|
|
|
780
|
+VopInOutNormalColor: #5F5F94
|
|
|
781
|
+VopInOutColorColor: #AD18AD
|
|
|
782
|
+VopInOutFloatColor: #317B73
|
|
|
783
|
+VopInOutFloatArrayColor: #134943
|
|
|
784
|
+VopInOutIntColor: #286F9F
|
|
|
785
|
+VopInOutIntArrayColor: #143D52
|
|
|
786
|
+VopInOutStringColor: #7E552E
|
|
|
787
|
+VopInOutStringArrayColor: #482C12
|
|
|
788
|
+VopInOutMatrix2Color: #853FA1
|
|
|
789
|
+VopInOutMatrix2ArrayColor: #442053
|
|
|
790
|
+VopInOutMatrix3Color: #7944AD
|
|
|
791
|
+VopInOutMatrix3ArrayColor: #3C2750
|
|
|
792
|
+VopInOutMatrix4Color: #5444AA
|
|
|
793
|
+VopInOutMatrix4ArrayColor: #332C60
|
|
|
794
|
+VopInOutPointColor: #CF0F95
|
|
|
795
|
+VopInOutBsdfColor: #7F7500
|
|
|
796
|
+VopInOutStructColor: #702921
|
|
|
797
|
+VopInOutMethodColor: #B96F00
|
|
|
798
|
+VopInOutMultiColor: #4D4D4D
|
|
|
799
|
+VopErrorColor: ERROR
|
|
|
800
|
+VopInOutDictColor: #D29628
|
|
|
801
|
+VopInOutDictArrayColor: #B5700A
|
|
|
802
|
+
|
|
|
803
|
+// The colors for SHOP input output labels
|
|
|
804
|
+ShopInOutSurfaceColor: #A45F3D
|
|
|
805
|
+ShopInOutShadowColor: #45456B
|
|
|
806
|
+ShopInOutDisplaceColor: #426EC6
|
|
|
807
|
+ShopInOutGeometryColor: #4A7C4A
|
|
|
808
|
+ShopInOutLightColor: #666642
|
|
|
809
|
+ShopInOutFogColor: #414141
|
|
|
810
|
+ShopInOutPropertiesColor: #5991A4
|
|
|
811
|
+ShopInOutShaderColor: #272727
|
|
|
812
|
+ShopInOutImage3dColor: #307157
|
|
|
813
|
+ShopInOutImage3dArrayColor: #265A4D
|
|
|
814
|
+
|
|
|
815
|
+// The following colors are for Dop input/output labels
|
|
|
816
|
+DopInOutObjectColor: #E1E1E1
|
|
|
817
|
+DopInOutDataColor: #5B985B
|
|
|
818
|
+DopInOutRelDataColor: #638F63
|
|
|
819
|
+DopInOutSolverColor: #8E63B8
|
|
|
820
|
+DopInOutAnyColor: WHITE
|
|
|
821
|
+
|
|
|
822
|
+// The following colors are for Top graph nodes
|
|
|
823
|
+TopInOutColor_file: #919191
|
|
|
824
|
+TopInOutColor_file/image: #55D2C5
|
|
|
825
|
+TopInOutColor_file/geo: #008FEE
|
|
|
826
|
+TopInOutColor_file/csv: #FF6600
|
|
|
827
|
+TopInOutColor_file/movie: #5AAA00
|
|
|
828
|
+TopInOutColor_file/archive: #BEC43F
|
|
|
829
|
+TopInOutColor_nonfile: #D05ADD
|
|
|
830
|
+
|
|
|
831
|
+// The following colors are for simple spreadsheets (ie. tables)
|
|
|
832
|
+SSTableBackgroundColor: 0.9 0.9 0.9
|
|
|
833
|
+SSTableSelectedColor: 0.125 0.125 1.0
|
|
|
834
|
+
|
|
|
835
|
+// The following colors are for parameter spreadsheets
|
|
|
836
|
+ParmSheetEmptyColor: 0.65 0.65 0.65
|
|
|
837
|
+ParmSheetHeaderColor: 0.60 0.60 0.60
|
|
|
838
|
+
|
|
|
839
|
+// The following color is used for buttons that simulate a hyper-text link
|
|
|
840
|
+HyperTextLinkColor: 0.0 0.0 1.0
|
|
|
841
|
+
|
|
|
842
|
+// The following colors are used to highlight the names of operators that have
|
|
|
843
|
+// a given property (e.g. modified parameters)
|
|
|
844
|
+OpNameNoneColor: 0.0 0.0 0.0
|
|
|
845
|
+OpNameCommentsColor: 0.0 0.0 1.0
|
|
|
846
|
+OpNameAnimatedColor: 0.0 0.45 0.0
|
|
|
847
|
+OpNameModifiedColor: 0.7 0.1 0.8
|
|
|
848
|
+OpNameChoppedColor: 1.0 0.5 0.0
|
|
|
849
|
+OpNameSyncedColor: 0.1 0.1 0.6
|
|
|
850
|
+OpNameUnsyncedColor: 0.6 0.1 0.1
|
|
|
851
|
+OpNameSubnetColor: 0.2 0.2 0.5
|
|
|
852
|
+
|
|
|
853
|
+// The following color is used for the text in the parameter title bar that
|
|
|
854
|
+// indicates how many nodes are selected
|
|
|
855
|
+ParmTitleBarNumSelectedColor: 0.125 0.125 1.0
|
|
|
856
|
+
|
|
|
857
|
+// The following color is used for the text in the take label to indicate that
|
|
|
858
|
+// the auto take mode is enabled
|
|
|
859
|
+AutoTakeModeColor: 0.40 0.70 0.40
|
|
|
860
|
+
|
|
|
861
|
+// These colors are used by the operator type manager.
|
|
|
862
|
+OTLUnusedColor: 0.70 0.10 0.10
|
|
|
863
|
+OTLOutOfDateColor: 0.70 0.70 0.10
|
|
|
864
|
+OTLPreferredColor: 0.20 0.70 0.20
|
|
|
865
|
+
|
|
|
866
|
+// These colors are used by the simulation tree view.
|
|
|
867
|
+SIMAltRepColor: 0.20 0.70 0.20
|
|
|
868
|
+SIMObjectColor: 0.00 0.00 0.00
|
|
|
869
|
+SIMDataColor: 0.00 0.00 0.00
|
|
|
870
|
+SIMRelDataColor: 0.00 0.00 0.00
|
|
|
871
|
+SIMRecordColor: 0.00 0.00 0.00
|
|
|
872
|
+SIMAffectorsColor: 0.00 0.00 0.00
|
|
|
873
|
+SIMGroupsColor: 0.00 0.00 0.00
|
|
|
874
|
+SIMEngineColor: 0.00 0.00 0.00
|
|
|
875
|
+SIMEngineInterpColor: 0.70 0.70 0.10
|
|
|
876
|
+SIMAffectorColor: 0.10 0.10 0.60
|
|
|
877
|
+SIMMutualColor: 0.20 0.70 0.20
|
|
|
878
|
+SIMAlmostMutualColor: 0.70 0.70 0.10
|
|
|
879
|
+
|
|
|
880
|
+// These colors are used by the linker tree views.
|
|
|
881
|
+LinkerPartialLinkColor: 0.80 0.80 0.80
|
|
|
882
|
+
|
|
|
883
|
+// The following colors are used by the network editor in list mode
|
|
|
884
|
+OpListHeaderBGColor: 0.7 0.7 0.7
|
|
|
885
|
+OpListSplitterColor: 0.0 0.0 0.0
|
|
|
886
|
+OpListSelectionBGColor: SELECTION_BASE
|
|
|
887
|
+OpListSelectionFGColor: HIGHLIGHT1
|
|
|
888
|
+
|
|
|
889
|
+// These colors are used by the file dependency dialog
|
|
|
890
|
+FileDepAcceptColor: 0.0 0.63 0.0
|
|
|
891
|
+FileDepRejectColor: 0.75 0.0 0.0
|
|
|
892
|
+
|
|
|
893
|
+// Colors for the shaded pick box
|
|
|
894
|
+ShadedPickOutline: 0.9 0.9 0.9
|
|
|
895
|
+ShadedPickInnerLine: 0.7 0.7 0.7
|
|
|
896
|
+ShadedPickFill: 0.5 0.5 0.5
|
|
|
897
|
+
|
|
|
898
|
+// Hotkey Editor keyboard --------------------------------------------
|
|
|
899
|
+
|
|
|
900
|
+KeyCapUnavailableFill: #323232
|
|
|
901
|
+KeyCapUnavailableHover: #424242
|
|
|
902
|
+
|
|
|
903
|
+KeyCapAssignedFill: #515151
|
|
|
904
|
+KeyCapAssignedHover: #616161
|
|
|
905
|
+
|
|
|
906
|
+KeyCapDefaultFill: #858585
|
|
|
907
|
+KeyCapDefaultHover: #959595
|
|
|
908
|
+
|
|
|
909
|
+ModifierKeyOffFill: #292929
|
|
|
910
|
+ModifierKeyOffHover: #393939
|
|
|
911
|
+
|
|
|
912
|
+KeyCapSelectionBorder: WHITE
|
|
|
913
|
+KeyCapSelectionText: WHITE
|
|
|
914
|
+
|
|
|
915
|
+ShiftKeyBorder: #7F5050
|
|
|
916
|
+ShiftKeyFill: #AF7070
|
|
|
917
|
+ShiftKeyHilite: #CF9090
|
|
|
918
|
+
|
|
|
919
|
+CtrlKeyBorder: #436892
|
|
|
920
|
+CtrlKeyFill: #5883B4
|
|
|
921
|
+CtrlKeyHilite: #78A3D4
|
|
|
922
|
+
|
|
|
923
|
+AltKeyBorder: #658245
|
|
|
924
|
+AltKeyFill: #8EA37D
|
|
|
925
|
+AltKeyHilite: #AEC39D
|
|
|
926
|
+
|
|
|
927
|
+CmdKeyBorder: #9A7B49
|
|
|
928
|
+CmdKeyFill: #BBAB28
|
|
|
929
|
+CmdKeyHilite: #DBCB48
|
|
|
930
|
+
|
|
|
931
|
+// Scene Graph Panes --------------------------------------------
|
|
|
932
|
+
|
|
|
933
|
+UsdLocationHasArcs #3E9E2E
|
|
|
934
|
+UsdLocationIsInstance #87CEFA
|
|
|
935
|
+UsdLocationInMaster #7688D9
|
|
|
936
|
+UsdLocationUnloaded #5E2E15
|
|
|
937
|
+UsdLocationLoaded #DE9E2E
|
|
|
938
|
+UsdLayerMuted #9090E0
|
|
|
939
|
+UsdLayerHasOpinion #E07000
|
|
|
940
|
+UsdLayerChildHasOpinion #A04000
|
|
|
941
|
+
|
|
|
942
|
+UsdAttrResolveFallback: #DE9E2E
|
|
|
943
|
+UsdAttrResolveDefault: #87CEFA
|
|
|
944
|
+UsdAttrResolveValueClips: #E696E6
|
|
|
945
|
+UsdAttrResolveTimeSamples: #B1CF99
|
|
|
946
|
+UsdAttrResolveNone: grey50
|
|
|
947
|
+UsdProperty: #E68484
|
|
|
948
|
+UsdComputed: #8484E6
|