mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 17:58:31 +02:00
50 lines
1.8 KiB
XML
50 lines
1.8 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE globals SYSTEM "../../../../dtd/globals.dtd">
|
|
|
|
<globals>
|
|
<!--
|
|
define all your needed colors here
|
|
-->
|
|
<colors>
|
|
<color name="clrTransparent">00000000</color>
|
|
<color name="clrRed">FFFF0000</color>
|
|
<color name="clrGreen">FF5FE200</color>
|
|
<color name="clrYellow">FFE2DA00</color>
|
|
<color name="clrBlue">FF007FE2</color>
|
|
<color name="clrWhite">FFFFFFFF</color>
|
|
<color name="clrBlack">FF000000</color>
|
|
<color name="clrGray">FF999999</color>
|
|
<color name="clrGray2">FF777777</color>
|
|
<color name="clrRedTrans">55FF0000</color>
|
|
<color name="clrBlackTrans">99000000</color>
|
|
<color name="clrBlueMenu">FF00284A</color>
|
|
</colors>
|
|
<!--
|
|
these variables can be used everywhere in the templates
|
|
variabls of type int can also be used as conditions, just
|
|
set such a variable to 1 for true and 0 for false
|
|
-->
|
|
<variables>
|
|
</variables>
|
|
<!--
|
|
The three Fonts FontOSD, FontFix and FontSml configured in VDR
|
|
can be used in all template "font" attributes with this tokens:
|
|
{vdrOsd}
|
|
{vdrFix}
|
|
{vdrSml}
|
|
If you like to use further fonts, just define them below.
|
|
Syntax:
|
|
<font name="tokenname">fontname</font>
|
|
These fonts can then also be used in all templates in the "font"
|
|
attribute.
|
|
if an invalid font is used in a template, vdrOsd is used as default.
|
|
-->
|
|
<fonts>
|
|
<font name="light">Source Sans Pro:Light</font>
|
|
<font name="bold">Source Sans Pro:Bold</font>
|
|
<font name="semibold">Source Sans Pro:Semibold</font>
|
|
<font name="regular">Source Sans Pro:Regular</font>
|
|
<font name="digital">DS-Digital:Normal</font>
|
|
</fonts>
|
|
</globals>
|