blob: 672cd131c161dd036cb0a275f0fe986b4518cfdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?xml version="1.0" encoding="UTF-8"?>
<svg version="1.1" width="@WIDTH@" height="@HEIGHT@">
<defs>
<mask id="m">
<rect x="0" y="0" width="@WIDTH@" height="@HEIGHT@" style="fill:white" />
<text x="@LAYOUT_X@" y="@LAYOUT_Y@" style="@LAYOUT_FONT@;fill:black">@LAYOUT@</text>
</mask>
</defs>
<rect x="0" y="0" width="@WIDTH@" height="@HEIGHT@" rx="@RADIUS@" mask="url(#m)" style="fill:@COLOUR@" />
</svg>
|