- simple style file, that is supposed to eventually define the old fgfs
style by means of the new "theme engine". Currently there are some differences, though.
This commit is contained in:
parent
f2d7f7d9c0
commit
350386e4f5
1 changed files with 84 additions and 0 deletions
84
gui/style.xml
Normal file
84
gui/style.xml
Normal file
|
@ -0,0 +1,84 @@
|
|||
<?xml version="1.0"?>
|
||||
|
||||
<PropertyList>
|
||||
<!-- possible font names:
|
||||
"default", "FIXED_8x13", "FIXED_9x15", "TIMES_10", "TIMES_24",
|
||||
"HELVETICA_10", "HELVETICA_12", "HELVETICA_14", "HELVETICA_18",
|
||||
"VERA_12B", and all font file names from $FG_ROOT/Fonts/, such as
|
||||
"helvetica_bold.txf". "size" and "slant" take only effect on
|
||||
texture fonts.
|
||||
-->
|
||||
|
||||
<font>
|
||||
<name type="string">Helvetica.txf</name>
|
||||
<size type="float">15</size>
|
||||
<slant type="float">0</slant>
|
||||
</font>
|
||||
|
||||
<colors>
|
||||
<!-- default color qualities for all GUI objects -->
|
||||
<background>
|
||||
<red type="float">0.8</red>
|
||||
<green type="float">0.8</green>
|
||||
<blue type="float">0.9</blue>
|
||||
<alpha type="float">0.85</alpha>
|
||||
</background>
|
||||
|
||||
<foreground>
|
||||
<red type="float">0.8</red>
|
||||
<green type="float">0.8</green>
|
||||
<blue type="float">0.9</blue>
|
||||
<alpha type="float">0.85</alpha>
|
||||
</foreground>
|
||||
|
||||
<highlight>
|
||||
<red type="float">1.0</red>
|
||||
<green type="float">1.0</green>
|
||||
<blue type="float">1.0</blue>
|
||||
<alpha type="float">1.0</alpha>
|
||||
</highlight>
|
||||
|
||||
<label>
|
||||
<red type="float">0.0</red>
|
||||
<green type="float">0.0</green>
|
||||
<blue type="float">0.0</blue>
|
||||
<alpha type="float">1.0</alpha>
|
||||
</label>
|
||||
|
||||
<legend>
|
||||
<red type="float">0.0</red>
|
||||
<green type="float">0.0</green>
|
||||
<blue type="float">0.0</blue>
|
||||
<alpha type="float">1.0</alpha>
|
||||
</legend>
|
||||
|
||||
<misc>
|
||||
<red type="float">0.0</red>
|
||||
<green type="float">0.0</green>
|
||||
<blue type="float">0.0</blue>
|
||||
<alpha type="float">1.0</alpha>
|
||||
</misc>
|
||||
|
||||
<!-- GUI object specific colors -->
|
||||
<hrule>
|
||||
<red type="float">0.0</red>
|
||||
<green type="float">0.0</green>
|
||||
<blue type="float">0.0</blue>
|
||||
<alpha type="float">1.0</alpha>
|
||||
</hrule>
|
||||
|
||||
<vrule>
|
||||
<red type="float">0.0</red>
|
||||
<green type="float">0.0</green>
|
||||
<blue type="float">0.0</blue>
|
||||
<alpha type="float">1.0</alpha>
|
||||
</vrule>
|
||||
|
||||
<!-- splash screen font color -->
|
||||
<splash>
|
||||
<red type="float">1.0</red>
|
||||
<green type="float">0.9</green>
|
||||
<blue type="float">0.0</blue>
|
||||
</splash>
|
||||
</colors>
|
||||
</PropertyList>
|
Loading…
Add table
Reference in a new issue