clt

Configurable Leathercraft Templates

  1. 1
  2. 2
  3. 3
  4. 4
  5. 5
  6. 6
  7. 7
  8. 8
  9. 9
  10. 10
  11. 11
  12. 12
  13. 13
  14. 14
  15. 15
  16. 16
  17. 17
  18. 18
  19. 19
  20. 20
  21. 21
  22. 22
  23. 23
  24. 24
  25. 25
  26. 26
  27. 27
  28. 28
  29. 29
  30. 30
  31. 31
  32. 32
  33. 33
  34. 34
  35. 35
<!--
Copyright 2026 Shota FUJI

This source code and the design it expresses are licensed under
the Creative Commons Attribution 4.0 International License.

SPDX-License-Identifier: CC-BY-4.0
-->
<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 100 100">
	<style>
		#fill {
			fill: black;
		}

		@media (prefers-color-scheme: dark) {
			#fill {
				fill: white;
			}
		}
	</style>
	<mask id="mask" mask-type="luminance">
		<rect fill="white" x="0" y="0" width="100" height="100" />
		<g transform="rotate(33 50 50)">
			<line stroke="black" stroke-width="17" x1="50" y1="0" x2="50" y2="52" />
			<ellipse fill="black" cx="50" cy="42" rx="30" ry="10" />
			<rect fill="black" x="20" y="42" width="60" height="10" />

			<path fill="black" d="M20,51 v26 l9,-5 v-21 Z" />
			<path fill="black" d="M37,51 v26 l9,-5 v-21 Z" />
			<path fill="black" d="M54,51 v26 l9,-5 v-21 Z" />
			<path fill="black" d="M71,51 v26 l9,-5 v-21 Z" />
		</g>
	</mask>
	<circle id="fill" cx="50" cy="50" r="49" mask="url(#mask)" />
</svg>