summaryrefslogtreecommitdiff
path: root/themes/LoveIt/assets/svg/version.template.svg
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2021-02-18 21:44:01 +0100
committerChristoph Cullmann <cullmann@kde.org>2021-02-18 21:44:01 +0100
commite9ec93a471d9a753db01b682e75c52b32adf16f2 (patch)
tree5f6d9a2b7d90852965b6d24f9db6a9198570c03b /themes/LoveIt/assets/svg/version.template.svg
parentbcafaafff80184537a3116de5341a8caa24d63f4 (diff)
use LoveIt theme, self hosted
Diffstat (limited to 'themes/LoveIt/assets/svg/version.template.svg')
-rw-r--r--themes/LoveIt/assets/svg/version.template.svg20
1 files changed, 20 insertions, 0 deletions
diff --git a/themes/LoveIt/assets/svg/version.template.svg b/themes/LoveIt/assets/svg/version.template.svg
new file mode 100644
index 0000000..0a05791
--- /dev/null
+++ b/themes/LoveIt/assets/svg/version.template.svg
@@ -0,0 +1,20 @@
+{{- /* https://img.shields.io/badge/$label-$version-$color?style=flat-square&labelColor=403c3d */ -}}
+{{- $labelLength := strings.RuneCount .label | mul 64 | add 100 -}}
+{{- $versionLength := strings.RuneCount .version | mul 60 -}}
+{{- $width := add $labelLength $versionLength | add 200 -}}
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 {{ $width }} 200">
+ <g shape-rendering="crispEdges">
+ {{- $x1 := add $labelLength 100 -}}
+ {{- $x2 := add $versionLength 100 -}}
+ <path fill="#403c3d" d="M0 0h{{ $x1 }}v200H0z"/>
+ <path fill="#{{ .color }}" d="M{{ $x1 }} 0h{{ $x2 }}v200H{{ $x1 }}z"/>
+ </g>
+ <g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110">
+ <text x="{{ div $labelLength 2 | add 60 }}" y="140" textLength="{{ $labelLength }}">
+ {{- .label -}}
+ </text>
+ <text x="{{ div $versionLength 2 | add $labelLength | add 140 }}" y="140" textLength="{{ $versionLength }}">
+ {{- .version -}}
+ </text>
+ </g>
+</svg>