style resembles original style much better now; dialogs are still too
opaque.
This commit is contained in:
parent
7d25bac87f
commit
3f8c5f59c9
1 changed files with 77 additions and 1 deletions
|
@ -16,7 +16,7 @@
|
|||
</font>
|
||||
|
||||
<colors>
|
||||
<!-- default color qualities for all GUI objects -->
|
||||
<!-- default colors for all GUI objects -->
|
||||
<background>
|
||||
<red type="float">0.8</red>
|
||||
<green type="float">0.8</green>
|
||||
|
@ -60,6 +60,10 @@
|
|||
</misc>
|
||||
|
||||
<!-- GUI object specific colors -->
|
||||
<dialog-background>
|
||||
<alpha type="float">0.4</alpha>
|
||||
</dialog-background>
|
||||
|
||||
<hrule>
|
||||
<red type="float">0.0</red>
|
||||
<green type="float">0.0</green>
|
||||
|
@ -74,6 +78,78 @@
|
|||
<alpha type="float">1.0</alpha>
|
||||
</vrule>
|
||||
|
||||
<checkbox-foreground> <!-- box area -->
|
||||
<red type="float">0.8</red>
|
||||
<green type="float">0.7</green>
|
||||
<blue type="float">0.7</blue>
|
||||
</checkbox-foreground>
|
||||
|
||||
<checkbox-highlight> <!-- box frame -->
|
||||
<red type="float">1</red>
|
||||
<green type="float">0.9</green>
|
||||
<blue type="float">0.9</blue>
|
||||
</checkbox-highlight>
|
||||
|
||||
<radio-foreground> <!-- box area -->
|
||||
<red type="float">0.8</red>
|
||||
<green type="float">0.7</green>
|
||||
<blue type="float">0.7</blue>
|
||||
</radio-foreground>
|
||||
|
||||
<radio-highlight> <!-- box frame -->
|
||||
<red type="float">1</red>
|
||||
<green type="float">0.9</green>
|
||||
<blue type="float">0.9</blue>
|
||||
</radio-highlight>
|
||||
|
||||
<input-background> <!-- dark frame -->
|
||||
<red type="float">0.4</red>
|
||||
<green type="float">0.3</green>
|
||||
<blue type="float">0.3</blue>
|
||||
</input-background>
|
||||
|
||||
<input-foreground> <!-- area -->
|
||||
<red type="float">0.8</red>
|
||||
<green type="float">0.7</green>
|
||||
<blue type="float">0.7</blue>
|
||||
</input-foreground>
|
||||
|
||||
<input-highlight> <!-- light frame -->
|
||||
<red type="float">1.0</red>
|
||||
<green type="float">0.9</green>
|
||||
<blue type="float">0.9</blue>
|
||||
</input-highlight>
|
||||
|
||||
<input-misc> <!-- cursor -->
|
||||
<red type="float">0.1</red>
|
||||
<green type="float">0.1</green>
|
||||
<blue type="float">1.0</blue>
|
||||
</input-misc>
|
||||
|
||||
<combo-background> <!-- dark frame -->
|
||||
<red type="float">0.4</red>
|
||||
<green type="float">0.3</green>
|
||||
<blue type="float">0.3</blue>
|
||||
</combo-background>
|
||||
|
||||
<combo-foreground> <!-- area -->
|
||||
<red type="float">0.8</red>
|
||||
<green type="float">0.7</green>
|
||||
<blue type="float">0.7</blue>
|
||||
</combo-foreground>
|
||||
|
||||
<combo-highlight> <!-- light frame -->
|
||||
<red type="float">1.0</red>
|
||||
<green type="float">0.9</green>
|
||||
<blue type="float">0.9</blue>
|
||||
</combo-highlight>
|
||||
|
||||
<combo-misc> <!-- cursor -->
|
||||
<red type="float">0.1</red>
|
||||
<green type="float">0.1</green>
|
||||
<blue type="float">1.0</blue>
|
||||
</combo-misc>
|
||||
|
||||
<!-- splash screen font color -->
|
||||
<splash>
|
||||
<red type="float">1.0</red>
|
||||
|
|
Loading…
Add table
Reference in a new issue