summaryrefslogtreecommitdiff
path: root/themes/CodeIT/assets/svg/version.template.svg
diff options
context:
space:
mode:
authorChristoph Cullmann <cullmann@kde.org>2022-08-14 19:01:21 +0200
committerChristoph Cullmann <cullmann@kde.org>2022-08-14 19:01:21 +0200
commit51fb029ca27d67d7cd67352cdede45e5b25868f7 (patch)
tree6d8e34b2abdc757310ffe11189e926d017417bae /themes/CodeIT/assets/svg/version.template.svg
parent260b6803e78609e16ad3d59792f1681d9df0f1e4 (diff)
switch back to LoveIt, other theme is deprectated
Diffstat (limited to 'themes/CodeIT/assets/svg/version.template.svg')
-rw-r--r--themes/CodeIT/assets/svg/version.template.svg20
1 files changed, 0 insertions, 20 deletions
diff --git a/themes/CodeIT/assets/svg/version.template.svg b/themes/CodeIT/assets/svg/version.template.svg
deleted file mode 100644
index 0a05791..0000000
--- a/themes/CodeIT/assets/svg/version.template.svg
+++ /dev/null
@@ -1,20 +0,0 @@
-{{- /* 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>