mirror of
https://github.com/jpawlowski/hass.tibber_prices.git
synced 2026-03-30 05:13:40 +00:00
29 lines
1.2 KiB
XML
29 lines
1.2 KiB
XML
<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg">
|
|
<!-- Tibber Prices Logo: Lightning bolt + Price tag + T -->
|
|
<defs>
|
|
<linearGradient id="boltGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#00D4FF;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#0099CC;stop-opacity:1" />
|
|
</linearGradient>
|
|
<linearGradient id="priceGradient" x1="0%" y1="0%" x2="100%" y2="100%">
|
|
<stop offset="0%" style="stop-color:#FFD700;stop-opacity:1" />
|
|
<stop offset="100%" style="stop-color:#FFA500;stop-opacity:1" />
|
|
</linearGradient>
|
|
</defs>
|
|
|
|
<!-- Stylized lightning bolt (Tibber inspired) -->
|
|
<path d="M 100 20 L 70 90 L 100 85 L 80 150 L 140 80 L 110 85 Z"
|
|
fill="url(#boltGradient)"
|
|
stroke="none"/>
|
|
|
|
<!-- Price tag circle -->
|
|
<circle cx="145" cy="50" r="35" fill="url(#priceGradient)" stroke="white" stroke-width="4"/>
|
|
|
|
<!-- Currency symbol inside price tag -->
|
|
<text x="145" y="58"
|
|
font-family="Arial, sans-serif"
|
|
font-size="32"
|
|
font-weight="bold"
|
|
fill="white"
|
|
text-anchor="middle">€</text>
|
|
</svg>
|