38 lines
2.0 KiB
Plaintext
38 lines
2.0 KiB
Plaintext
|
<svg width="64" height="64" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||
|
<!-- Martian background (reddish-orange) -->
|
||
|
<rect width="64" height="64" fill="#B22222" />
|
||
|
|
||
|
<!-- Calendar grid (white, tilted 15 degrees) -->
|
||
|
<g transform="rotate(15 32 32)">
|
||
|
<rect x="20" y="15" width="24" height="24" fill="none" stroke="#FFFFFF" stroke-width="2" />
|
||
|
<!-- Horizontal lines -->
|
||
|
<line x1="20" y1="21" x2="44" y2="21" stroke="#FFFFFF" stroke-width="1" />
|
||
|
<line x1="20" y1="27" x2="44" y2="27" stroke="#FFFFFF" stroke-width="1" />
|
||
|
<line x1="20" y1="33" x2="44" y2="33" stroke="#FFFFFF" stroke-width="1" />
|
||
|
<line x1="20" y1="39" x2="44" y2="39" stroke="#FFFFFF" stroke-width="1" />
|
||
|
<!-- Vertical lines -->
|
||
|
<line x1="26" y1="15" x2="26" y2="39" stroke="#FFFFFF" stroke-width="1" />
|
||
|
<line x1="32" y1="15" x2="32" y2="39" stroke="#FFFFFF" stroke-width="1" />
|
||
|
<line x1="38" y1="15" x2="38" y2="39" stroke="#FFFFFF" stroke-width="1" />
|
||
|
<!-- Date "21" in the center square -->
|
||
|
<text x="32" y="34" fill="#000000" font-family="Arial" font-size="12" font-weight="bold" text-anchor="middle" dominant-baseline="middle">21</text>
|
||
|
</g>
|
||
|
|
||
|
<!-- Mars silhouette (red circle with subtle craters) -->
|
||
|
<circle cx="50" cy="14" r="7" fill="#FF4500" />
|
||
|
<circle cx="48" cy="12" r="1" fill="#8B0000" /> <!-- Crater 1 -->
|
||
|
<circle cx="50" cy="15" r="1" fill="#8B0000" /> <!-- Crater 2 -->
|
||
|
|
||
|
<!-- FreeSched branding ("FS" in white, bottom-left) -->
|
||
|
<text x="8" y="58" fill="#FFFFFF" font-family="Roboto" font-size="8" font-weight="bold">FS</text>
|
||
|
|
||
|
<!-- Optional subtle glow around calendar for visibility -->
|
||
|
<filter id="glow">
|
||
|
<feGaussianBlur stdDeviation="1" result="coloredBlur"/>
|
||
|
<feMerge>
|
||
|
<feMergeNode in="coloredBlur"/>
|
||
|
<feMergeNode in="SourceGraphic"/>
|
||
|
</feMerge>
|
||
|
</filter>
|
||
|
<rect x="20" y="15" width="24" height="24" fill="none" stroke="#FFFFFF" stroke-width="2" filter="url(#glow)" />
|
||
|
</svg>
|