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
<!--
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>
		#graphics {
			fill: black;
			stroke: black;

			@media (prefers-color-scheme: dark) {
				fill: white;
				stroke: white;
				--color: white;
			}
		}
	</style>
	<mask id="mask" mask-type="luminance">
		<rect fill="white" x="0" y="0" width="100" height="100" />
		<path fill="none" stroke="black" stroke-width="7" d="M70,45 l10,-5 l10,5" />
		<path fill="none" stroke="black" stroke-width="7" d="M0,45 l10,5 l10,-5" />
	</mask>
	<g id="graphics" stroke-width="10">
		<circle mask="url(#mask)" fill="none" stroke-width="10" cx="47" cy="45" r="35" />
		<line fill="none" x1="95" y1="93" x2="70" y2="68" />
		<path fill="none" stroke-width="7" d="M67,53 l15,-8 l10,14" />
		<path fill="none" stroke-width="7" d="M1,32 l10,14 l15,-8" />
	</g>
</svg>