20 lines
731 B
XML
20 lines
731 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
veilor-os wallpaper (SVG fallback) — 3840x2160 pure black canvas with a
|
|
tiny "veilor" wordmark in the lower-right corner. Wordmark renders at
|
|
#1a1a1a against #000000 — deliberately faint so the desktop reads as
|
|
pure black at normal viewing distance.
|
|
-->
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
width="3840" height="2160"
|
|
viewBox="0 0 3840 2160"
|
|
preserveAspectRatio="xMidYMid slice">
|
|
<rect width="3840" height="2160" fill="#000000"/>
|
|
<text x="3744" y="2064"
|
|
text-anchor="end"
|
|
font-family="Fira Code, Consolas, monospace"
|
|
font-size="36"
|
|
font-weight="300"
|
|
letter-spacing="2"
|
|
fill="#1a1a1a">veilor</text>
|
|
</svg>
|