diff options
| author | Yuval Adam <_@yuv.al> | 2025-03-07 13:12:43 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2025-03-07 13:12:43 +0100 |
| commit | a6fac18fb89d7268ac5ce1026f3bffd2e9f275a7 (patch) | |
| tree | 08d2763d51951557da24399464941f9581dfb657 /public/img | |
| parent | a5e22c91da6d4e0fdf8505229fc2fa2ee0808d94 (diff) | |
Initial fatter design and copy
Diffstat (limited to 'public/img')
| -rw-r--r-- | public/img/morse-pattern.svg | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/public/img/morse-pattern.svg b/public/img/morse-pattern.svg new file mode 100644 index 0000000..d7eacb3 --- /dev/null +++ b/public/img/morse-pattern.svg @@ -0,0 +1,29 @@ +<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"> + <defs> + <pattern id="morse-pattern" patternUnits="userSpaceOnUse" width="100" height="100"> + <!-- Dots --> + <circle cx="10" cy="10" r="2" fill="#ffffff" /> + <circle cx="50" cy="10" r="2" fill="#ffffff" /> + <circle cx="90" cy="10" r="2" fill="#ffffff" /> + <circle cx="10" cy="50" r="2" fill="#ffffff" /> + <circle cx="50" cy="50" r="2" fill="#ffffff" /> + <circle cx="90" cy="50" r="2" fill="#ffffff" /> + <circle cx="10" cy="90" r="2" fill="#ffffff" /> + <circle cx="50" cy="90" r="2" fill="#ffffff" /> + <circle cx="90" cy="90" r="2" fill="#ffffff" /> + + <!-- Dashes --> + <rect x="20" y="30" width="15" height="3" fill="#ffffff" /> + <rect x="60" y="30" width="15" height="3" fill="#ffffff" /> + <rect x="20" y="70" width="15" height="3" fill="#ffffff" /> + <rect x="60" y="70" width="15" height="3" fill="#ffffff" /> + + <!-- Diagonal dashes --> + <rect x="25" y="15" width="15" height="3" transform="rotate(45 25 15)" fill="#ffffff" /> + <rect x="75" y="65" width="15" height="3" transform="rotate(45 75 65)" fill="#ffffff" /> + <rect x="25" y="65" width="15" height="3" transform="rotate(-45 25 65)" fill="#ffffff" /> + <rect x="75" y="15" width="15" height="3" transform="rotate(-45 75 15)" fill="#ffffff" /> + </pattern> + </defs> + <rect width="100" height="100" fill="url(#morse-pattern)" /> +</svg> |
