@knitli/docs-components 1.1.2 → 1.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +6 -6
- package/dist/assets/logos/Thread_vector_mono_aubergine.svg +41 -0
- package/dist/assets/logos/Thread_vector_mono_copper.svg +41 -0
- package/dist/assets/logos/Thread_vector_mono_parchment.svg +41 -0
- package/dist/assets/logos/codeweaver-primary.svg +103 -0
- package/dist/assets/logos/codeweaver-reverse.svg +103 -0
- package/dist/assets/logos/headline_logo.webp +0 -0
- package/dist/assets/logos/headline_logo_dark.png +0 -0
- package/dist/assets/logos/headline_logo_dark.webp +0 -0
- package/dist/assets/logos/index.d.ts +36 -0
- package/dist/assets/logos/index.d.ts.map +1 -0
- package/dist/assets/logos/index.js +27 -0
- package/dist/assets/logos/knitli_logo.svg +143 -0
- package/dist/assets/logos/knitli_wordmark.svg +118 -0
- package/dist/assets/logos/recoco-med.webp +0 -0
- package/dist/assets/logos/recoco-sm.webp +0 -0
- package/dist/assets/logos/recoco-xl.webp +0 -0
- package/dist/assets/styles/codeweaver-theme.css +570 -0
- package/dist/assets/styles/global.css +166 -0
- package/dist/assets/styles/index.d.ts +15 -0
- package/dist/assets/styles/index.d.ts.map +1 -0
- package/dist/assets/styles/index.js +14 -0
- package/dist/assets/styles/knitli-theme.css +215 -0
- package/dist/assets/styles/textures.css +668 -0
- package/dist/assets/styles/typography.css +262 -0
- package/dist/assets/styles/variables.css +238 -0
- package/dist/index.d.ts +40 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +36 -0
- package/dist/styles/index.d.ts +2 -0
- package/dist/styles/index.d.ts.map +1 -0
- package/dist/styles/index.js +2 -0
- package/dist/types/index.d.ts +35 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/index.js +7 -0
- package/package.json +49 -48
- package/scripts/copy-assets.mjs +37 -0
- package/scripts/copy-dist-assets.mjs +30 -0
- package/src/assets/asset-types.d.ts +29 -0
- package/src/assets/logos/Thread_vector_mono_aubergine.svg +41 -0
- package/src/assets/logos/Thread_vector_mono_copper.svg +41 -0
- package/src/assets/logos/Thread_vector_mono_parchment.svg +41 -0
- package/src/assets/logos/codeweaver-primary.svg +103 -0
- package/src/assets/logos/codeweaver-reverse.svg +103 -0
- package/src/assets/logos/headline_logo.webp +0 -0
- package/src/assets/logos/headline_logo_dark.png +0 -0
- package/src/assets/logos/headline_logo_dark.webp +0 -0
- package/src/assets/logos/index.ts +43 -0
- package/src/assets/logos/knitli_logo.svg +143 -0
- package/src/assets/logos/knitli_wordmark.svg +118 -0
- package/src/assets/logos/recoco-med.webp +0 -0
- package/src/assets/logos/recoco-sm.webp +0 -0
- package/src/assets/logos/recoco-xl.webp +0 -0
- package/src/assets/styles/codeweaver-theme.css +570 -0
- package/src/assets/styles/global.css +166 -0
- package/src/assets/styles/index.ts +26 -0
- package/src/assets/styles/knitli-theme.css +215 -0
- package/src/assets/styles/textures.css +668 -0
- package/src/assets/styles/typography.css +262 -0
- package/src/assets/styles/variables.css +238 -0
- package/src/components/DocsBreadcrumb.astro +74 -74
- package/src/components/Footer.astro +252 -216
- package/src/components/PageFrame.astro +118 -111
- package/src/index.d.ts +32 -0
- package/src/index.ts +46 -6
- package/src/styles/custom.css +73 -0
- package/src/styles/custom.d.css.ts +8 -0
- package/src/styles/index.ts +3 -0
- package/src/types/index.ts +2 -45
- package/src/assets/logos/README.md +0 -180
- package/src/styles/docs-theme.css +0 -682
- package/src/styles/variables.css +0 -200
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. Dates are d
|
|
|
4
4
|
|
|
5
5
|
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
|
|
6
6
|
|
|
7
|
+
#### 1.1.3
|
|
8
|
+
|
|
9
|
+
- chore: Updated Recoco references to use consistent casing.
|
|
10
|
+
- feat: Bundled knitli shared assets.
|
|
11
|
+
- feat: Add custom.css.
|
|
12
|
+
|
|
7
13
|
#### 1.1.2
|
|
8
14
|
|
|
9
15
|
- fix: Move dependencies to dev dependencies to avoid npm install issues
|
package/README.md
CHANGED
|
@@ -52,7 +52,7 @@ Branded header with Knitli logo, product navigation, and breadcrumbs.
|
|
|
52
52
|
|
|
53
53
|
```typescript
|
|
54
54
|
interface Props {
|
|
55
|
-
currentProduct?: "
|
|
55
|
+
currentProduct?: "Recoco" | "CodeWeaver" | "Thread"; // Current product being documented
|
|
56
56
|
currentPath?: string; // Current URL path
|
|
57
57
|
productUrl?: string; // URL to product docs home
|
|
58
58
|
showBreadcrumb?: boolean; // Show breadcrumb navigation (default: true)
|
|
@@ -77,9 +77,9 @@ const { pathname } = Astro.url;
|
|
|
77
77
|
---
|
|
78
78
|
|
|
79
79
|
<DocsHeader
|
|
80
|
-
currentProduct="
|
|
80
|
+
currentProduct="Recoco"
|
|
81
81
|
currentPath={pathname}
|
|
82
|
-
productUrl="/
|
|
82
|
+
productUrl="/Recoco"
|
|
83
83
|
showBreadcrumb={true}
|
|
84
84
|
/>
|
|
85
85
|
```
|
|
@@ -121,7 +121,7 @@ Optional standalone breadcrumb component for product-specific navigation.
|
|
|
121
121
|
|
|
122
122
|
```typescript
|
|
123
123
|
interface Props {
|
|
124
|
-
product?: "
|
|
124
|
+
product?: "Recoco" | "CodeWeaver" | "Thread"; // Product name
|
|
125
125
|
productUrl?: string; // URL to product docs home
|
|
126
126
|
path?: string; // Current path within product docs
|
|
127
127
|
variant?: "default" | "compact"; // Visual variant (default: 'default')
|
|
@@ -143,8 +143,8 @@ import DocsBreadcrumb from '@knitli/docs-components/DocsBreadcrumb.astro';
|
|
|
143
143
|
---
|
|
144
144
|
|
|
145
145
|
<DocsBreadcrumb
|
|
146
|
-
product="
|
|
147
|
-
productUrl="/
|
|
146
|
+
product="Recoco"
|
|
147
|
+
productUrl="/Recoco"
|
|
148
148
|
path="/getting-started/installation"
|
|
149
149
|
variant="default"
|
|
150
150
|
/>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg1"
|
|
7
|
+
width="1000"
|
|
8
|
+
height="1000"
|
|
9
|
+
viewBox="0 0 1000 1000"
|
|
10
|
+
sodipodi:docname="Thread_vector_mono_aubergine.svg"
|
|
11
|
+
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs1" />
|
|
18
|
+
<sodipodi:namedview
|
|
19
|
+
id="namedview1"
|
|
20
|
+
pagecolor="#ffffff"
|
|
21
|
+
bordercolor="#cccccc"
|
|
22
|
+
borderopacity="1"
|
|
23
|
+
inkscape:showpageshadow="0"
|
|
24
|
+
inkscape:pageopacity="1"
|
|
25
|
+
inkscape:pagecheckerboard="0"
|
|
26
|
+
inkscape:deskcolor="#d1d1d1"
|
|
27
|
+
inkscape:zoom="0.29577872"
|
|
28
|
+
inkscape:cx="1147.8175"
|
|
29
|
+
inkscape:cy="187.64027"
|
|
30
|
+
inkscape:window-width="2560"
|
|
31
|
+
inkscape:window-height="1529"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg1" />
|
|
36
|
+
<path
|
|
37
|
+
style="fill:#1e061b;fill-opacity:1;stroke-width:1.21"
|
|
38
|
+
d="m 353.02735,859.99485 c -23.26796,-19.26635 -34.27025,-31.64183 -48.5817,-54.64473 -3.51634,-5.65163 -6.94619,-10.62124 -7.62204,-11.04354 -0.67598,-0.42243 -1.46446,-1.74896 -1.75228,-2.94795 -0.28781,-1.19888 -2.14876,-5.22976 -4.13557,-8.9575 C 216.7157,643.14625 261.74712,427.6563 397.2057,273.86508 l 13.14957,-14.92908 4.65897,2.02302 c 9.65011,4.19029 38.53894,27.05886 56.70668,44.88934 4.62113,4.53532 9.92304,9.70573 11.78206,11.48981 4.65639,4.46858 4.71199,4.25634 -3.45508,13.19564 -40.6844,44.53095 -74.11103,99.92794 -95.52242,158.30644 -38.07142,103.80184 -32.42419,201.33175 15.84755,273.69358 53.14577,79.66806 167.43563,91.26259 236.83928,24.02691 3.4461,-3.33838 6.77721,-6.33716 7.40247,-6.66414 0.62537,-0.32685 2.00566,-1.71155 3.06733,-3.077 1.06192,-1.36556 5.67838,-6.88247 10.25908,-12.25993 30.18278,-35.4323 53.20109,-86.84272 62.66877,-139.9675 2.87276,-16.11992 3.26125,-12.43694 1.18539,11.24125 -12.13196,138.39303 -85.17774,238.56578 -192.07834,263.41037 -20.19457,4.69335 -55.85382,6.92631 -66.40802,4.15818 -1.55272,-0.40715 -5.82912,-1.06716 -9.5032,-1.46667 -31.4835,-3.42284 -77.27666,-22.48044 -100.77844,-41.94045 z M 297.05109,790.8816 c 0.17632,-0.28212 0.0896,-0.65734 -0.19245,-0.83366 -0.28226,-0.17633 -0.65734,-0.0896 -0.83366,0.19245 -0.17634,0.28224 -0.0896,0.65745 0.19245,0.83378 0.28212,0.17633 0.65733,0.0896 0.83366,-0.19257 z m 106.19727,-19.24892 c 0.17634,-0.28211 0.0896,-0.65733 -0.19257,-0.83366 -0.28211,-0.17632 -0.65732,-0.0896 -0.83365,0.19245 -0.17632,0.28225 -0.0896,0.65734 0.19246,0.83366 0.28223,0.17634 0.65745,0.0896 0.83376,-0.19245 z M 358.34373,626.57515 c 0.17632,-0.28219 0.0895,-0.65735 -0.19245,-0.83368 -0.28212,-0.17632 -0.65734,-0.0897 -0.83366,0.19249 -0.17633,0.28216 -0.0896,0.65733 0.19245,0.83366 0.28224,0.17633 0.65733,0.0897 0.83366,-0.19247 z m 361.20255,17.15289 c -0.14124,-0.61138 -0.64144,-0.4959 -1.1117,0.2566 -0.47012,0.75251 -0.35465,1.25271 0.25673,1.11159 0.61127,-0.14119 0.99598,-0.75689 0.85497,-1.36819 z M 462.85584,794.04881 c 5.57478,1.24304 11.92325,2.2217 14.10749,2.1746 2.18437,-0.0471 5.75643,0.018 7.93812,0.14456 60.94131,3.5316 119.89466,-67.22479 129.05291,-154.89024 0.50017,-4.78824 1.09007,-8.99492 1.31077,-9.34816 0.22072,-0.35323 14.99707,-4.28227 32.83621,-8.73122 17.83915,-4.44889 37.78356,-9.88318 44.32076,-12.07621 6.53732,-2.19302 12.43273,-3.85967 13.10105,-3.70361 1.7379,0.40573 -0.15698,3.00527 -2.74043,3.75954 -1.8474,0.5394 -1.78797,0.60222 0.38861,0.41022 2.85877,-0.25203 2.85258,-0.12337 -0.95818,19.82201 -15.87368,83.08336 -81.79255,170.56621 -132.68053,176.08421 -1.96653,0.2132 -3.768,0.6956 -4.0032,1.07192 -0.95924,1.53525 -22.32066,5.32859 -32.72432,5.81124 -25.35517,1.17633 -53.63341,-6.12831 -74.42754,-19.22529 l -5.65778,-3.56402 z M 213.25032,535.67675 C 108.0024,465.02719 56.67911,359.17049 79.342095,259.48468 90.331502,211.14657 119.81824,166.67724 160.88908,136.50266 c 157.47963,-115.699558 425.69826,21.52617 522.7602,267.45412 1.51898,3.8485 5.1547,13.03999 8.07958,20.42555 8.54752,21.5839 9.23353,25.20672 5.13145,27.09929 -1.84854,0.85274 -6.27372,3.07293 -9.83385,4.93359 -13.48123,7.04619 -39.5631,16.62681 -59.97425,22.03009 -4.85173,1.2844 -11.78572,3.21163 -15.40885,4.28282 -8.41494,2.48783 -9.1835,1.68296 -13.79534,-14.44879 -2.32956,-8.14821 -13.58338,-35.82872 -18.12449,-44.58005 -2.77996,-5.35711 -6.11582,-12.15151 -7.41324,-15.09872 -4.67175,-10.61295 -28.93229,-51.46866 -34.32979,-57.81259 -0.9725,-1.14305 -1.30722,-2.30583 -0.74408,-2.58405 0.56338,-0.27814 -0.002,-1.15744 -1.2551,-1.95387 -1.25388,-0.79632 -5.04989,-5.23472 -8.43598,-9.86269 C 428.00679,200.34018 250.6509,153.68795 166.7901,241.49321 c -2.81624,2.94869 -6.5954,6.76485 -8.39816,8.48037 -12.98224,12.35397 -35.07449,56.66124 -33.81337,67.81462 0.0994,0.87895 -0.19354,2.96943 -0.65084,4.64549 -1.488,5.45316 -2.72255,21.27274 -2.4825,31.81089 1.47014,64.53463 39.45146,134.04064 101.3766,185.51936 9.12297,7.58397 10.56825,9.57724 3.3862,4.66988 -2.70395,-1.84753 -8.53492,-5.78819 -12.95771,-8.75707 z m 390.82519,-58.03426 c 0.17632,-0.28218 0.0896,-0.65732 -0.19257,-0.83367 -0.28214,-0.17632 -0.65734,-0.0898 -0.83366,0.19247 -0.17634,0.2822 -0.0896,0.65734 0.19245,0.83367 0.28224,0.17633 0.65745,0.0897 0.83378,-0.19247 z m -375.23964,45.65069 c -56.60728,-50.27699 -89.27721,-109.6354 -91.96206,-167.08737 -0.49389,-10.56752 1.31681,-25.87264 3.25367,-27.5024 1.2439,-1.04669 1.23711,-1.26312 -0.0235,-0.74728 -2.16925,0.88772 2.16194,-16.08383 7.78394,-30.50096 9.22269,-23.65093 34.25528,-51.84855 56.82596,-64.01087 7.79751,-4.20179 8.32953,-4.11607 3.07602,0.49529 -16.76891,14.72001 -31.25578,51.05252 -28.20846,70.74546 0.22681,1.46557 -0.28635,3.00977 -1.14037,3.43158 -0.93274,0.46064 -0.95926,0.76974 -0.0657,0.77417 0.8176,0.004 1.52127,1.61643 1.56362,3.58314 0.48069,22.31674 13.99453,53.66428 34.95222,81.07665 4.54272,5.94186 7.01019,10.06453 5.93332,9.91328 -1.01399,-0.1424 -0.70162,0.11771 0.69403,0.57791 2.19496,0.72388 8.91414,7.08788 20.03737,18.97803 1.64676,1.76022 7.96987,7.0538 14.05147,11.76352 6.08161,4.70971 11.47436,9.00884 11.98382,9.55363 0.5097,0.54485 -2.34058,11.04904 -6.33345,23.34277 -3.9931,12.29365 -9.54695,31.97107 -12.34215,43.72749 -5.97549,25.13323 -5.48851,24.84501 -20.07927,11.88598 z M 218.77616,402.39024 c 0.17633,-0.2822 0.0896,-0.65736 -0.19257,-0.83368 -0.28212,-0.17633 -0.65734,-0.0897 -0.83366,0.19247 -0.17633,0.28218 -0.0896,0.65734 0.19245,0.83367 0.28225,0.17633 0.65745,0.0897 0.83378,-0.19246 z m 162.25279,198.61857 c -0.2897,-17.26673 14.24341,-88.33253 19.92291,-97.42171 0.11416,-0.18347 2.53141,0.31583 5.37072,1.10952 23.74373,6.63737 94.1939,12.5415 121.18765,10.15623 1.77266,-0.15668 4.6728,-0.34206 6.44461,-0.41201 2.80806,-0.11086 16.52566,-1.21528 30.82936,-2.482 30.24575,-2.67871 76.02665,-14.0926 113.04108,-28.1829 142.77379,-54.34985 210.22444,-196.2506 138.63502,-291.65626 -19.65441,-26.19298 -65.67981,-55.24916 -93.42506,-58.97994 -1.44779,-0.19469 -6.35913,-1.06887 -10.91391,-1.94262 -8.40133,-1.61161 -10.01045,-1.8355 -24.28467,-3.37878 -42.71736,-4.61847 -110.54149,6.65512 -144.49211,24.01721 -5.83203,2.98251 -5.83583,2.08258 -0.006,-1.43053 69.94616,-42.15034 170.53615,-59.044918 242.11625,-40.66466 171.53713,44.04712 208.49336,257.8377 66.44062,384.3571 -35.24769,31.39338 -58.22367,47.65935 -92.59916,65.55628 -32.36199,16.84854 -62.42608,28.63735 -98.85593,38.7636 -40.34046,11.21334 -117.76447,22.47471 -120.22765,17.48716 -0.39182,-0.79341 -0.69693,-0.7585 -0.70116,0.0802 -0.006,1.39782 -20.7897,2.47229 -41.78001,2.15997 -29.58546,-0.44021 -80.35732,-5.98569 -105.11919,-11.48148 l -11.53153,-2.55938 z m 51.49806,-86.30161 c 0.13864,-0.22181 -0.29277,-1.12609 -0.95858,-2.00947 -0.69428,-0.92109 -1.21361,-1.00644 -1.21756,-0.20008 -0.007,1.35154 1.65691,3.04064 2.17614,2.20955 z m 43.16426,3.99048 c 0.17633,-0.28219 0.0895,-0.65734 -0.19245,-0.83366 -0.28211,-0.17632 -0.65733,-0.0898 -0.83365,0.19246 -0.17634,0.28219 -0.0896,0.65734 0.19245,0.83366 0.28223,0.17634 0.65732,0.0898 0.83365,-0.19246 z M 813.51492,384.50624 c 0.17634,-0.28217 0.0896,-0.65734 -0.19257,-0.83367 -0.28212,-0.17632 -0.65733,-0.0897 -0.83366,0.19246 -0.17632,0.28221 -0.0896,0.65736 0.19245,0.83369 0.28225,0.17633 0.65746,0.0897 0.83378,-0.19248 z M 669.85944,109.01783 c -0.14113,-0.61138 -0.75678,-0.9961 -1.36817,-0.85497 -0.61139,0.14119 -0.49579,0.64138 0.25661,1.11157 0.75251,0.4702 1.25271,0.35473 1.11156,-0.2566 z m 52.61215,501.10586 c 0.17634,-0.28218 0.55154,-0.3688 0.83378,-0.19246 0.28212,0.17632 0.36878,0.55148 0.19245,0.83366 -0.17632,0.2822 -0.55154,0.36881 -0.83366,0.19248 -0.28223,-0.17633 -0.36889,-0.55149 -0.19257,-0.83368 z M 600.06409,230.60822 c -3.60072,-4.70857 -15.4666,-17.90667 -24.83183,-27.6199 -5.68144,-5.8925 -22.58474,-21.43691 -29.67541,-27.28974 -5.07867,-4.19207 -5.07192,-4.07669 -0.37432,-6.35651 131.70839,-63.91957 280.91909,-8.03704 283.64485,106.23102 0.25501,10.6846 -0.34648,10.89334 -4.0037,1.38778 -15.29034,-39.74892 -59.68112,-67.93153 -104.34451,-66.24573 -3.0534,0.11523 -7.80932,0.0294 -10.56889,-0.19048 -19.07977,-1.52224 -65.60741,10.16764 -94.39191,23.71553 -8.7554,4.12087 -9.69437,3.90024 -15.45429,-3.63162 z m 209.33124,-8.47842 c 0.17633,-0.28219 0.0895,-0.65735 -0.19246,-0.83367 -0.28224,-0.17633 -0.65743,-0.0897 -0.83378,0.19246 -0.17632,0.28219 -0.0896,0.65735 0.19258,0.83367 0.28213,0.17634 0.65733,0.0897 0.83366,-0.19246 z"
|
|
39
|
+
id="path1"
|
|
40
|
+
inkscape:label="mono-auburgine" />
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg1"
|
|
7
|
+
width="1000"
|
|
8
|
+
height="1000"
|
|
9
|
+
viewBox="0 0 1000 1000"
|
|
10
|
+
sodipodi:docname="Thread_vector_mono_copper.svg"
|
|
11
|
+
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs1" />
|
|
18
|
+
<sodipodi:namedview
|
|
19
|
+
id="namedview1"
|
|
20
|
+
pagecolor="#ffffff"
|
|
21
|
+
bordercolor="#cccccc"
|
|
22
|
+
borderopacity="1"
|
|
23
|
+
inkscape:showpageshadow="0"
|
|
24
|
+
inkscape:pageopacity="1"
|
|
25
|
+
inkscape:pagecheckerboard="0"
|
|
26
|
+
inkscape:deskcolor="#d1d1d1"
|
|
27
|
+
inkscape:zoom="0.29577872"
|
|
28
|
+
inkscape:cx="1147.8175"
|
|
29
|
+
inkscape:cy="187.64027"
|
|
30
|
+
inkscape:window-width="2560"
|
|
31
|
+
inkscape:window-height="1529"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg1" />
|
|
36
|
+
<path
|
|
37
|
+
style="fill:#b56c30;fill-opacity:1;stroke-width:1.21"
|
|
38
|
+
d="m 353.02735,859.99485 c -23.26796,-19.26635 -34.27025,-31.64183 -48.5817,-54.64473 -3.51634,-5.65163 -6.94619,-10.62124 -7.62204,-11.04354 -0.67598,-0.42243 -1.46446,-1.74896 -1.75228,-2.94795 -0.28781,-1.19888 -2.14876,-5.22976 -4.13557,-8.9575 C 216.7157,643.14625 261.74712,427.6563 397.2057,273.86508 l 13.14957,-14.92908 4.65897,2.02302 c 9.65011,4.19029 38.53894,27.05886 56.70668,44.88934 4.62113,4.53532 9.92304,9.70573 11.78206,11.48981 4.65639,4.46858 4.71199,4.25634 -3.45508,13.19564 -40.6844,44.53095 -74.11103,99.92794 -95.52242,158.30644 -38.07142,103.80184 -32.42419,201.33175 15.84755,273.69358 53.14577,79.66806 167.43563,91.26259 236.83928,24.02691 3.4461,-3.33838 6.77721,-6.33716 7.40247,-6.66414 0.62537,-0.32685 2.00566,-1.71155 3.06733,-3.077 1.06192,-1.36556 5.67838,-6.88247 10.25908,-12.25993 30.18278,-35.4323 53.20109,-86.84272 62.66877,-139.9675 2.87276,-16.11992 3.26125,-12.43694 1.18539,11.24125 -12.13196,138.39303 -85.17774,238.56578 -192.07834,263.41037 -20.19457,4.69335 -55.85382,6.92631 -66.40802,4.15818 -1.55272,-0.40715 -5.82912,-1.06716 -9.5032,-1.46667 -31.4835,-3.42284 -77.27666,-22.48044 -100.77844,-41.94045 z M 297.05109,790.8816 c 0.17632,-0.28212 0.0896,-0.65734 -0.19245,-0.83366 -0.28226,-0.17633 -0.65734,-0.0896 -0.83366,0.19245 -0.17634,0.28224 -0.0896,0.65745 0.19245,0.83378 0.28212,0.17633 0.65733,0.0896 0.83366,-0.19257 z m 106.19727,-19.24892 c 0.17634,-0.28211 0.0896,-0.65733 -0.19257,-0.83366 -0.28211,-0.17632 -0.65732,-0.0896 -0.83365,0.19245 -0.17632,0.28225 -0.0896,0.65734 0.19246,0.83366 0.28223,0.17634 0.65745,0.0896 0.83376,-0.19245 z M 358.34373,626.57515 c 0.17632,-0.28219 0.0895,-0.65735 -0.19245,-0.83368 -0.28212,-0.17632 -0.65734,-0.0897 -0.83366,0.19249 -0.17633,0.28216 -0.0896,0.65733 0.19245,0.83366 0.28224,0.17633 0.65733,0.0897 0.83366,-0.19247 z m 361.20255,17.15289 c -0.14124,-0.61138 -0.64144,-0.4959 -1.1117,0.2566 -0.47012,0.75251 -0.35465,1.25271 0.25673,1.11159 0.61127,-0.14119 0.99598,-0.75689 0.85497,-1.36819 z M 462.85584,794.04881 c 5.57478,1.24304 11.92325,2.2217 14.10749,2.1746 2.18437,-0.0471 5.75643,0.018 7.93812,0.14456 60.94131,3.5316 119.89466,-67.22479 129.05291,-154.89024 0.50017,-4.78824 1.09007,-8.99492 1.31077,-9.34816 0.22072,-0.35323 14.99707,-4.28227 32.83621,-8.73122 17.83915,-4.44889 37.78356,-9.88318 44.32076,-12.07621 6.53732,-2.19302 12.43273,-3.85967 13.10105,-3.70361 1.7379,0.40573 -0.15698,3.00527 -2.74043,3.75954 -1.8474,0.5394 -1.78797,0.60222 0.38861,0.41022 2.85877,-0.25203 2.85258,-0.12337 -0.95818,19.82201 -15.87368,83.08336 -81.79255,170.56621 -132.68053,176.08421 -1.96653,0.2132 -3.768,0.6956 -4.0032,1.07192 -0.95924,1.53525 -22.32066,5.32859 -32.72432,5.81124 -25.35517,1.17633 -53.63341,-6.12831 -74.42754,-19.22529 l -5.65778,-3.56402 z M 213.25032,535.67675 C 108.0024,465.02719 56.67911,359.17049 79.342095,259.48468 90.331502,211.14657 119.81824,166.67724 160.88908,136.50266 c 157.47963,-115.699558 425.69826,21.52617 522.7602,267.45412 1.51898,3.8485 5.1547,13.03999 8.07958,20.42555 8.54752,21.5839 9.23353,25.20672 5.13145,27.09929 -1.84854,0.85274 -6.27372,3.07293 -9.83385,4.93359 -13.48123,7.04619 -39.5631,16.62681 -59.97425,22.03009 -4.85173,1.2844 -11.78572,3.21163 -15.40885,4.28282 -8.41494,2.48783 -9.1835,1.68296 -13.79534,-14.44879 -2.32956,-8.14821 -13.58338,-35.82872 -18.12449,-44.58005 -2.77996,-5.35711 -6.11582,-12.15151 -7.41324,-15.09872 -4.67175,-10.61295 -28.93229,-51.46866 -34.32979,-57.81259 -0.9725,-1.14305 -1.30722,-2.30583 -0.74408,-2.58405 0.56338,-0.27814 -0.002,-1.15744 -1.2551,-1.95387 -1.25388,-0.79632 -5.04989,-5.23472 -8.43598,-9.86269 C 428.00679,200.34018 250.6509,153.68795 166.7901,241.49321 c -2.81624,2.94869 -6.5954,6.76485 -8.39816,8.48037 -12.98224,12.35397 -35.07449,56.66124 -33.81337,67.81462 0.0994,0.87895 -0.19354,2.96943 -0.65084,4.64549 -1.488,5.45316 -2.72255,21.27274 -2.4825,31.81089 1.47014,64.53463 39.45146,134.04064 101.3766,185.51936 9.12297,7.58397 10.56825,9.57724 3.3862,4.66988 -2.70395,-1.84753 -8.53492,-5.78819 -12.95771,-8.75707 z m 390.82519,-58.03426 c 0.17632,-0.28218 0.0896,-0.65732 -0.19257,-0.83367 -0.28214,-0.17632 -0.65734,-0.0898 -0.83366,0.19247 -0.17634,0.2822 -0.0896,0.65734 0.19245,0.83367 0.28224,0.17633 0.65745,0.0897 0.83378,-0.19247 z m -375.23964,45.65069 c -56.60728,-50.27699 -89.27721,-109.6354 -91.96206,-167.08737 -0.49389,-10.56752 1.31681,-25.87264 3.25367,-27.5024 1.2439,-1.04669 1.23711,-1.26312 -0.0235,-0.74728 -2.16925,0.88772 2.16194,-16.08383 7.78394,-30.50096 9.22269,-23.65093 34.25528,-51.84855 56.82596,-64.01087 7.79751,-4.20179 8.32953,-4.11607 3.07602,0.49529 -16.76891,14.72001 -31.25578,51.05252 -28.20846,70.74546 0.22681,1.46557 -0.28635,3.00977 -1.14037,3.43158 -0.93274,0.46064 -0.95926,0.76974 -0.0657,0.77417 0.8176,0.004 1.52127,1.61643 1.56362,3.58314 0.48069,22.31674 13.99453,53.66428 34.95222,81.07665 4.54272,5.94186 7.01019,10.06453 5.93332,9.91328 -1.01399,-0.1424 -0.70162,0.11771 0.69403,0.57791 2.19496,0.72388 8.91414,7.08788 20.03737,18.97803 1.64676,1.76022 7.96987,7.0538 14.05147,11.76352 6.08161,4.70971 11.47436,9.00884 11.98382,9.55363 0.5097,0.54485 -2.34058,11.04904 -6.33345,23.34277 -3.9931,12.29365 -9.54695,31.97107 -12.34215,43.72749 -5.97549,25.13323 -5.48851,24.84501 -20.07927,11.88598 z M 218.77616,402.39024 c 0.17633,-0.2822 0.0896,-0.65736 -0.19257,-0.83368 -0.28212,-0.17633 -0.65734,-0.0897 -0.83366,0.19247 -0.17633,0.28218 -0.0896,0.65734 0.19245,0.83367 0.28225,0.17633 0.65745,0.0897 0.83378,-0.19246 z m 162.25279,198.61857 c -0.2897,-17.26673 14.24341,-88.33253 19.92291,-97.42171 0.11416,-0.18347 2.53141,0.31583 5.37072,1.10952 23.74373,6.63737 94.1939,12.5415 121.18765,10.15623 1.77266,-0.15668 4.6728,-0.34206 6.44461,-0.41201 2.80806,-0.11086 16.52566,-1.21528 30.82936,-2.482 30.24575,-2.67871 76.02665,-14.0926 113.04108,-28.1829 142.77379,-54.34985 210.22444,-196.2506 138.63502,-291.65626 -19.65441,-26.19298 -65.67981,-55.24916 -93.42506,-58.97994 -1.44779,-0.19469 -6.35913,-1.06887 -10.91391,-1.94262 -8.40133,-1.61161 -10.01045,-1.8355 -24.28467,-3.37878 -42.71736,-4.61847 -110.54149,6.65512 -144.49211,24.01721 -5.83203,2.98251 -5.83583,2.08258 -0.006,-1.43053 69.94616,-42.15034 170.53615,-59.044918 242.11625,-40.66466 171.53713,44.04712 208.49336,257.8377 66.44062,384.3571 -35.24769,31.39338 -58.22367,47.65935 -92.59916,65.55628 -32.36199,16.84854 -62.42608,28.63735 -98.85593,38.7636 -40.34046,11.21334 -117.76447,22.47471 -120.22765,17.48716 -0.39182,-0.79341 -0.69693,-0.7585 -0.70116,0.0802 -0.006,1.39782 -20.7897,2.47229 -41.78001,2.15997 -29.58546,-0.44021 -80.35732,-5.98569 -105.11919,-11.48148 l -11.53153,-2.55938 z m 51.49806,-86.30161 c 0.13864,-0.22181 -0.29277,-1.12609 -0.95858,-2.00947 -0.69428,-0.92109 -1.21361,-1.00644 -1.21756,-0.20008 -0.007,1.35154 1.65691,3.04064 2.17614,2.20955 z m 43.16426,3.99048 c 0.17633,-0.28219 0.0895,-0.65734 -0.19245,-0.83366 -0.28211,-0.17632 -0.65733,-0.0898 -0.83365,0.19246 -0.17634,0.28219 -0.0896,0.65734 0.19245,0.83366 0.28223,0.17634 0.65732,0.0898 0.83365,-0.19246 z M 813.51492,384.50624 c 0.17634,-0.28217 0.0896,-0.65734 -0.19257,-0.83367 -0.28212,-0.17632 -0.65733,-0.0897 -0.83366,0.19246 -0.17632,0.28221 -0.0896,0.65736 0.19245,0.83369 0.28225,0.17633 0.65746,0.0897 0.83378,-0.19248 z M 669.85944,109.01783 c -0.14113,-0.61138 -0.75678,-0.9961 -1.36817,-0.85497 -0.61139,0.14119 -0.49579,0.64138 0.25661,1.11157 0.75251,0.4702 1.25271,0.35473 1.11156,-0.2566 z m 52.61215,501.10586 c 0.17634,-0.28218 0.55154,-0.3688 0.83378,-0.19246 0.28212,0.17632 0.36878,0.55148 0.19245,0.83366 -0.17632,0.2822 -0.55154,0.36881 -0.83366,0.19248 -0.28223,-0.17633 -0.36889,-0.55149 -0.19257,-0.83368 z M 600.06409,230.60822 c -3.60072,-4.70857 -15.4666,-17.90667 -24.83183,-27.6199 -5.68144,-5.8925 -22.58474,-21.43691 -29.67541,-27.28974 -5.07867,-4.19207 -5.07192,-4.07669 -0.37432,-6.35651 131.70839,-63.91957 280.91909,-8.03704 283.64485,106.23102 0.25501,10.6846 -0.34648,10.89334 -4.0037,1.38778 -15.29034,-39.74892 -59.68112,-67.93153 -104.34451,-66.24573 -3.0534,0.11523 -7.80932,0.0294 -10.56889,-0.19048 -19.07977,-1.52224 -65.60741,10.16764 -94.39191,23.71553 -8.7554,4.12087 -9.69437,3.90024 -15.45429,-3.63162 z m 209.33124,-8.47842 c 0.17633,-0.28219 0.0895,-0.65735 -0.19246,-0.83367 -0.28224,-0.17633 -0.65743,-0.0897 -0.83378,0.19246 -0.17632,0.28219 -0.0896,0.65735 0.19258,0.83367 0.28213,0.17634 0.65733,0.0897 0.83366,-0.19246 z"
|
|
39
|
+
id="path1"
|
|
40
|
+
inkscape:label="mono-auburgine" />
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg1"
|
|
7
|
+
width="1000"
|
|
8
|
+
height="1000"
|
|
9
|
+
viewBox="0 0 1000 1000"
|
|
10
|
+
sodipodi:docname="Thread_vector_mono_parchment.svg"
|
|
11
|
+
inkscape:version="1.4.3 (0d15f75, 2025-12-25)"
|
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
13
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs1" />
|
|
18
|
+
<sodipodi:namedview
|
|
19
|
+
id="namedview1"
|
|
20
|
+
pagecolor="#1e061b"
|
|
21
|
+
bordercolor="#cccccc"
|
|
22
|
+
borderopacity="1"
|
|
23
|
+
inkscape:showpageshadow="0"
|
|
24
|
+
inkscape:pageopacity="1"
|
|
25
|
+
inkscape:pagecheckerboard="0"
|
|
26
|
+
inkscape:deskcolor="#d1d1d1"
|
|
27
|
+
inkscape:zoom="0.29577872"
|
|
28
|
+
inkscape:cx="1147.8175"
|
|
29
|
+
inkscape:cy="184.25937"
|
|
30
|
+
inkscape:window-width="2560"
|
|
31
|
+
inkscape:window-height="1529"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg1" />
|
|
36
|
+
<path
|
|
37
|
+
style="fill:#f2ece7;fill-opacity:1;stroke-width:1.21"
|
|
38
|
+
d="m 353.02735,859.99485 c -23.26796,-19.26635 -34.27025,-31.64183 -48.5817,-54.64473 -3.51634,-5.65163 -6.94619,-10.62124 -7.62204,-11.04354 -0.67598,-0.42243 -1.46446,-1.74896 -1.75228,-2.94795 -0.28781,-1.19888 -2.14876,-5.22976 -4.13557,-8.9575 C 216.7157,643.14625 261.74712,427.6563 397.2057,273.86508 l 13.14957,-14.92908 4.65897,2.02302 c 9.65011,4.19029 38.53894,27.05886 56.70668,44.88934 4.62113,4.53532 9.92304,9.70573 11.78206,11.48981 4.65639,4.46858 4.71199,4.25634 -3.45508,13.19564 -40.6844,44.53095 -74.11103,99.92794 -95.52242,158.30644 -38.07142,103.80184 -32.42419,201.33175 15.84755,273.69358 53.14577,79.66806 167.43563,91.26259 236.83928,24.02691 3.4461,-3.33838 6.77721,-6.33716 7.40247,-6.66414 0.62537,-0.32685 2.00566,-1.71155 3.06733,-3.077 1.06192,-1.36556 5.67838,-6.88247 10.25908,-12.25993 30.18278,-35.4323 53.20109,-86.84272 62.66877,-139.9675 2.87276,-16.11992 3.26125,-12.43694 1.18539,11.24125 -12.13196,138.39303 -85.17774,238.56578 -192.07834,263.41037 -20.19457,4.69335 -55.85382,6.92631 -66.40802,4.15818 -1.55272,-0.40715 -5.82912,-1.06716 -9.5032,-1.46667 -31.4835,-3.42284 -77.27666,-22.48044 -100.77844,-41.94045 z M 297.05109,790.8816 c 0.17632,-0.28212 0.0896,-0.65734 -0.19245,-0.83366 -0.28226,-0.17633 -0.65734,-0.0896 -0.83366,0.19245 -0.17634,0.28224 -0.0896,0.65745 0.19245,0.83378 0.28212,0.17633 0.65733,0.0896 0.83366,-0.19257 z m 106.19727,-19.24892 c 0.17634,-0.28211 0.0896,-0.65733 -0.19257,-0.83366 -0.28211,-0.17632 -0.65732,-0.0896 -0.83365,0.19245 -0.17632,0.28225 -0.0896,0.65734 0.19246,0.83366 0.28223,0.17634 0.65745,0.0896 0.83376,-0.19245 z M 358.34373,626.57515 c 0.17632,-0.28219 0.0895,-0.65735 -0.19245,-0.83368 -0.28212,-0.17632 -0.65734,-0.0897 -0.83366,0.19249 -0.17633,0.28216 -0.0896,0.65733 0.19245,0.83366 0.28224,0.17633 0.65733,0.0897 0.83366,-0.19247 z m 361.20255,17.15289 c -0.14124,-0.61138 -0.64144,-0.4959 -1.1117,0.2566 -0.47012,0.75251 -0.35465,1.25271 0.25673,1.11159 0.61127,-0.14119 0.99598,-0.75689 0.85497,-1.36819 z M 462.85584,794.04881 c 5.57478,1.24304 11.92325,2.2217 14.10749,2.1746 2.18437,-0.0471 5.75643,0.018 7.93812,0.14456 60.94131,3.5316 119.89466,-67.22479 129.05291,-154.89024 0.50017,-4.78824 1.09007,-8.99492 1.31077,-9.34816 0.22072,-0.35323 14.99707,-4.28227 32.83621,-8.73122 17.83915,-4.44889 37.78356,-9.88318 44.32076,-12.07621 6.53732,-2.19302 12.43273,-3.85967 13.10105,-3.70361 1.7379,0.40573 -0.15698,3.00527 -2.74043,3.75954 -1.8474,0.5394 -1.78797,0.60222 0.38861,0.41022 2.85877,-0.25203 2.85258,-0.12337 -0.95818,19.82201 -15.87368,83.08336 -81.79255,170.56621 -132.68053,176.08421 -1.96653,0.2132 -3.768,0.6956 -4.0032,1.07192 -0.95924,1.53525 -22.32066,5.32859 -32.72432,5.81124 -25.35517,1.17633 -53.63341,-6.12831 -74.42754,-19.22529 l -5.65778,-3.56402 z M 213.25032,535.67675 C 108.0024,465.02719 56.67911,359.17049 79.342095,259.48468 90.331502,211.14657 119.81824,166.67724 160.88908,136.50266 c 157.47963,-115.699558 425.69826,21.52617 522.7602,267.45412 1.51898,3.8485 5.1547,13.03999 8.07958,20.42555 8.54752,21.5839 9.23353,25.20672 5.13145,27.09929 -1.84854,0.85274 -6.27372,3.07293 -9.83385,4.93359 -13.48123,7.04619 -39.5631,16.62681 -59.97425,22.03009 -4.85173,1.2844 -11.78572,3.21163 -15.40885,4.28282 -8.41494,2.48783 -9.1835,1.68296 -13.79534,-14.44879 -2.32956,-8.14821 -13.58338,-35.82872 -18.12449,-44.58005 -2.77996,-5.35711 -6.11582,-12.15151 -7.41324,-15.09872 -4.67175,-10.61295 -28.93229,-51.46866 -34.32979,-57.81259 -0.9725,-1.14305 -1.30722,-2.30583 -0.74408,-2.58405 0.56338,-0.27814 -0.002,-1.15744 -1.2551,-1.95387 -1.25388,-0.79632 -5.04989,-5.23472 -8.43598,-9.86269 C 428.00679,200.34018 250.6509,153.68795 166.7901,241.49321 c -2.81624,2.94869 -6.5954,6.76485 -8.39816,8.48037 -12.98224,12.35397 -35.07449,56.66124 -33.81337,67.81462 0.0994,0.87895 -0.19354,2.96943 -0.65084,4.64549 -1.488,5.45316 -2.72255,21.27274 -2.4825,31.81089 1.47014,64.53463 39.45146,134.04064 101.3766,185.51936 9.12297,7.58397 10.56825,9.57724 3.3862,4.66988 -2.70395,-1.84753 -8.53492,-5.78819 -12.95771,-8.75707 z m 390.82519,-58.03426 c 0.17632,-0.28218 0.0896,-0.65732 -0.19257,-0.83367 -0.28214,-0.17632 -0.65734,-0.0898 -0.83366,0.19247 -0.17634,0.2822 -0.0896,0.65734 0.19245,0.83367 0.28224,0.17633 0.65745,0.0897 0.83378,-0.19247 z m -375.23964,45.65069 c -56.60728,-50.27699 -89.27721,-109.6354 -91.96206,-167.08737 -0.49389,-10.56752 1.31681,-25.87264 3.25367,-27.5024 1.2439,-1.04669 1.23711,-1.26312 -0.0235,-0.74728 -2.16925,0.88772 2.16194,-16.08383 7.78394,-30.50096 9.22269,-23.65093 34.25528,-51.84855 56.82596,-64.01087 7.79751,-4.20179 8.32953,-4.11607 3.07602,0.49529 -16.76891,14.72001 -31.25578,51.05252 -28.20846,70.74546 0.22681,1.46557 -0.28635,3.00977 -1.14037,3.43158 -0.93274,0.46064 -0.95926,0.76974 -0.0657,0.77417 0.8176,0.004 1.52127,1.61643 1.56362,3.58314 0.48069,22.31674 13.99453,53.66428 34.95222,81.07665 4.54272,5.94186 7.01019,10.06453 5.93332,9.91328 -1.01399,-0.1424 -0.70162,0.11771 0.69403,0.57791 2.19496,0.72388 8.91414,7.08788 20.03737,18.97803 1.64676,1.76022 7.96987,7.0538 14.05147,11.76352 6.08161,4.70971 11.47436,9.00884 11.98382,9.55363 0.5097,0.54485 -2.34058,11.04904 -6.33345,23.34277 -3.9931,12.29365 -9.54695,31.97107 -12.34215,43.72749 -5.97549,25.13323 -5.48851,24.84501 -20.07927,11.88598 z M 218.77616,402.39024 c 0.17633,-0.2822 0.0896,-0.65736 -0.19257,-0.83368 -0.28212,-0.17633 -0.65734,-0.0897 -0.83366,0.19247 -0.17633,0.28218 -0.0896,0.65734 0.19245,0.83367 0.28225,0.17633 0.65745,0.0897 0.83378,-0.19246 z m 162.25279,198.61857 c -0.2897,-17.26673 14.24341,-88.33253 19.92291,-97.42171 0.11416,-0.18347 2.53141,0.31583 5.37072,1.10952 23.74373,6.63737 94.1939,12.5415 121.18765,10.15623 1.77266,-0.15668 4.6728,-0.34206 6.44461,-0.41201 2.80806,-0.11086 16.52566,-1.21528 30.82936,-2.482 30.24575,-2.67871 76.02665,-14.0926 113.04108,-28.1829 142.77379,-54.34985 210.22444,-196.2506 138.63502,-291.65626 -19.65441,-26.19298 -65.67981,-55.24916 -93.42506,-58.97994 -1.44779,-0.19469 -6.35913,-1.06887 -10.91391,-1.94262 -8.40133,-1.61161 -10.01045,-1.8355 -24.28467,-3.37878 -42.71736,-4.61847 -110.54149,6.65512 -144.49211,24.01721 -5.83203,2.98251 -5.83583,2.08258 -0.006,-1.43053 69.94616,-42.15034 170.53615,-59.044918 242.11625,-40.66466 171.53713,44.04712 208.49336,257.8377 66.44062,384.3571 -35.24769,31.39338 -58.22367,47.65935 -92.59916,65.55628 -32.36199,16.84854 -62.42608,28.63735 -98.85593,38.7636 -40.34046,11.21334 -117.76447,22.47471 -120.22765,17.48716 -0.39182,-0.79341 -0.69693,-0.7585 -0.70116,0.0802 -0.006,1.39782 -20.7897,2.47229 -41.78001,2.15997 -29.58546,-0.44021 -80.35732,-5.98569 -105.11919,-11.48148 l -11.53153,-2.55938 z m 51.49806,-86.30161 c 0.13864,-0.22181 -0.29277,-1.12609 -0.95858,-2.00947 -0.69428,-0.92109 -1.21361,-1.00644 -1.21756,-0.20008 -0.007,1.35154 1.65691,3.04064 2.17614,2.20955 z m 43.16426,3.99048 c 0.17633,-0.28219 0.0895,-0.65734 -0.19245,-0.83366 -0.28211,-0.17632 -0.65733,-0.0898 -0.83365,0.19246 -0.17634,0.28219 -0.0896,0.65734 0.19245,0.83366 0.28223,0.17634 0.65732,0.0898 0.83365,-0.19246 z M 813.51492,384.50624 c 0.17634,-0.28217 0.0896,-0.65734 -0.19257,-0.83367 -0.28212,-0.17632 -0.65733,-0.0897 -0.83366,0.19246 -0.17632,0.28221 -0.0896,0.65736 0.19245,0.83369 0.28225,0.17633 0.65746,0.0897 0.83378,-0.19248 z M 669.85944,109.01783 c -0.14113,-0.61138 -0.75678,-0.9961 -1.36817,-0.85497 -0.61139,0.14119 -0.49579,0.64138 0.25661,1.11157 0.75251,0.4702 1.25271,0.35473 1.11156,-0.2566 z m 52.61215,501.10586 c 0.17634,-0.28218 0.55154,-0.3688 0.83378,-0.19246 0.28212,0.17632 0.36878,0.55148 0.19245,0.83366 -0.17632,0.2822 -0.55154,0.36881 -0.83366,0.19248 -0.28223,-0.17633 -0.36889,-0.55149 -0.19257,-0.83368 z M 600.06409,230.60822 c -3.60072,-4.70857 -15.4666,-17.90667 -24.83183,-27.6199 -5.68144,-5.8925 -22.58474,-21.43691 -29.67541,-27.28974 -5.07867,-4.19207 -5.07192,-4.07669 -0.37432,-6.35651 131.70839,-63.91957 280.91909,-8.03704 283.64485,106.23102 0.25501,10.6846 -0.34648,10.89334 -4.0037,1.38778 -15.29034,-39.74892 -59.68112,-67.93153 -104.34451,-66.24573 -3.0534,0.11523 -7.80932,0.0294 -10.56889,-0.19048 -19.07977,-1.52224 -65.60741,10.16764 -94.39191,23.71553 -8.7554,4.12087 -9.69437,3.90024 -15.45429,-3.63162 z m 209.33124,-8.47842 c 0.17633,-0.28219 0.0895,-0.65735 -0.19246,-0.83367 -0.28224,-0.17633 -0.65743,-0.0897 -0.83378,0.19246 -0.17632,0.28219 -0.0896,0.65735 0.19258,0.83367 0.28213,0.17634 0.65733,0.0897 0.83366,-0.19246 z"
|
|
39
|
+
id="path1"
|
|
40
|
+
inkscape:label="mono-parchment" />
|
|
41
|
+
</svg>
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg1"
|
|
7
|
+
width="750"
|
|
8
|
+
height="750"
|
|
9
|
+
viewBox="0 0 750.00001 750"
|
|
10
|
+
sodipodi:docname="codeweave-referencer.svg"
|
|
11
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
12
|
+
inkscape:export-filename="codeweaver.jpg"
|
|
13
|
+
inkscape:export-xdpi="96"
|
|
14
|
+
inkscape:export-ydpi="96"
|
|
15
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
16
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
17
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
20
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
21
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
22
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
23
|
+
<title
|
|
24
|
+
id="title6">CodeWeaver Weaver Logo</title>
|
|
25
|
+
<defs
|
|
26
|
+
id="defs1">
|
|
27
|
+
<color-profile
|
|
28
|
+
name="sRGB-display-profile-with-display-hardware-configuration-data-derived-from-calibration"
|
|
29
|
+
xlink:href="../../../WINDOWS/system32/spool/drivers/color/CalibratedDisplayProfile-1.icc"
|
|
30
|
+
id="color-profile2" />
|
|
31
|
+
</defs>
|
|
32
|
+
<sodipodi:namedview
|
|
33
|
+
id="namedview1"
|
|
34
|
+
pagecolor="#f7f3eb"
|
|
35
|
+
bordercolor="#000000"
|
|
36
|
+
borderopacity="0.25"
|
|
37
|
+
inkscape:showpageshadow="2"
|
|
38
|
+
inkscape:pageopacity="0.0"
|
|
39
|
+
inkscape:pagecheckerboard="0"
|
|
40
|
+
inkscape:deskcolor="#d1d1d1"
|
|
41
|
+
inkscape:zoom="1"
|
|
42
|
+
inkscape:cx="566"
|
|
43
|
+
inkscape:cy="388.5"
|
|
44
|
+
inkscape:window-width="2560"
|
|
45
|
+
inkscape:window-height="1529"
|
|
46
|
+
inkscape:window-x="-8"
|
|
47
|
+
inkscape:window-y="-8"
|
|
48
|
+
inkscape:window-maximized="1"
|
|
49
|
+
inkscape:current-layer="path2"
|
|
50
|
+
inkscape:export-bgcolor="#f7f3eb62" />
|
|
51
|
+
<g
|
|
52
|
+
inkscape:groupmode="layer"
|
|
53
|
+
inkscape:label="Image"
|
|
54
|
+
id="g1"
|
|
55
|
+
transform="translate(-45.078745,-92.411427)">
|
|
56
|
+
<path
|
|
57
|
+
style="fill:#455b6b;fill-opacity:1;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill"
|
|
58
|
+
d="m 682.37263,358.6511 c -0.58508,13.59241 -6.32501,26.82385 -9.34875,40 -7.04834,30.7135 -12.14698,64.20789 -2.62574,95 17.409,56.30176 80.80402,103.08606 66.08716,167 -10.59277,46.00336 -51.64337,75.70752 -96.11267,84.60034 -6.34216,1.26825 -24.3335,5.34326 -15.39661,15.98071 7.2555,8.63611 32.4867,-0.31103 41.39661,-2.87194 41.17377,-11.83429 77.55615,-43.7804 89.57251,-85.70911 9.2915,-32.42072 3.86664,-65.77991 -12.43439,-95 -17.37976,-31.15369 -43.82086,-57.95081 -53.70984,-93 -8.21704,-29.12354 -1.03747,-60.5 6.456,-89 3.75604,-14.28534 8.99237,-29.09839 9.11572,-44 13.70642,-0.58997 28.35992,-2.94061 42,-4.71838 5.23328,-0.68207 11.63477,-1.27723 10.83258,-8.27857 -1.0141,-8.85101 -20.85284,-15.9917 -27.83258,-20.00305 -29.03668,-16.68787 -59.27332,-31.4314 -88,-48.60419 -13.88879,-8.30273 -20.28694,-22.98524 -31.89508,-34.39581 -12.01013,-11.80573 -21.42896,-26.59454 -34.10492,-37.71375 -57.52417,-50.45947 -140.59857,-61.49646 -211,-33.08563 -16.43027,6.6305 -32.12195,15.80335 -46,26.80249 -14.00595,11.10053 -26.88095,23.79816 -37.76465,37.99689 -50.83551,66.3194 -49.85245,150.96362 -66.44601,229 -11.35941,53.42114 -31.25591,104.60803 -58.36804,152 -21.93079,38.33496 -47.39428,74.2655 -74.631167,109 -5.71602,7.28949 -13.0032,14.71582 -17.221447,23 -2.17998,4.28125 -1.82891,10.01868 3.475297,11.56635 11.84199,3.45538 29.800437,0.76019 41.956017,-0.39661 26.58286,-2.52973 52.80876,-4.96045 79,-10.74536 62.88638,-13.88983 125.24854,-34.3498 182,-65.11573 49.2475,-26.69793 93.23175,-60.23321 118.75311,-111.30865 23.51575,-47.06165 25.48346,-100.57953 44.69672,-149 23.36223,-63.38184 62.39226,-87.28583 124.96438,-85.51472 -2.82042,2.53808 -47.01158,-10.37025 -76.10476,52.51472 -8.84613,19.12085 -15.77075,40.85785 -17.21997,62 -1.52472,22.24329 1.3443,44.75659 -0.17896,67 -3.04687,44.49176 -14.06842,88.84692 -37.96069,127 -33.03223,52.74854 -85.01331,92.25952 -144.94983,109.29016 -22.83151,6.48743 -46.30203,9.70984 -70,9.70984 -5.59619,0 -22.49036,-2.80359 -25.96759,2.43365 -3.98721,6.00531 6.03668,10.00525 9.96759,11.69367 13.61124,5.84637 28.37747,9.32703 43,11.44446 49.59094,7.18097 102.97806,-4.41248 146,-29.58338 70.08502,-41.00464 120.83429,-115.19763 131.71759,-195.9884 8.41974,-62.50293 -16.79004,-140.48755 40.28241,-185.99615 7.34698,-5.85834 15.30176,-11.36323 24,-15.00385 m -118,-108 c -16.72528,-4.81805 -31.26367,-11.14111 -49,-12.83026 -73.58258,-7.00763 -140.17197,26.56189 -173.24384,93.83026 -6.87985,13.99365 -11.63443,28.99921 -15.74536,44 -1.52997,5.58289 -4.75781,14.14502 -3.60339,19.94135 1.05527,5.2984 9.47101,4.65435 13.59259,5.34417 12.75299,2.13452 25.65201,6.87488 37,13.02313 31.46594,17.04804 58.20261,45.21406 69.25385,79.69135 16.01068,49.94958 -10.23554,99.39294 -48.25385,131.24615 -46.68646,39.11567 -105.77573,62.13617 -164,77.9051 -27.67554,7.49536 -57.20589,14.84875 -86,14.84875 16.95084,-25.65143 37.30475,-48.72607 53.57562,-75 27.87943,-45.01923 48.09882,-95.8772 61.5401,-147 21.61124,-82.19647 16.61484,-184.15137 79.89893,-249 42.94501,-44.00671 111.05414,-57.97681 168.98535,-38.66669 20.14246,6.71405 49.02112,20.80274 56,42.66669 m -65,25.32562 c 36.146,-6.08258 45.31494,47.57361 9,53.23377 -33.28278,5.18756 -42.41846,-47.61017 -9,-53.23377 z"
|
|
59
|
+
id="path1"
|
|
60
|
+
sodipodi:nodetypes="csssssssssscssssssssssssssssssscsssssssssssscccsssssssscsssscsss" />
|
|
61
|
+
<g
|
|
62
|
+
id="path2"
|
|
63
|
+
style="display:inline;opacity:1">
|
|
64
|
+
<path
|
|
65
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#b56c30;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
66
|
+
d="m 738.40363,350.19133 c 11.72326,0.99273 26.91253,-6.59593 16.73205,-18.14197 C 738.768,321.74075 714.70264,309.45977 711.74326,307.75897 682.54893,290.9805 671.77839,285.08336 643.2473,268.02749 630.37255,260.33096 618.47997,245.60901 608.96371,232.71967 597.86208,217.68301 584.9606,204.88471 571.9996,193.51548 535.28585,161.31064 489.51456,149.98111 442.03683,149.23575 c -28.48665,-0.44722 -51.90272,3.52393 -78.80803,14.3817 -16.79791,6.77886 -30.15672,15.78502 -44.33663,27.0234 -14.23447,11.28164 -27.34526,24.73387 -38.45508,39.2276 -51.85039,67.64339 -53.01721,150.52054 -69.48169,227.94991 -11.26989,53.00014 -29.76321,104.79914 -56.67774,151.8457 -21.80305,38.11168 -46.64929,73.88646 -73.806644,108.51953 -5.5114,7.02854 -12.26379,13.56959 -16.888671,22.65235 -1.457231,2.86185 -0.786702,6.31596 0.01922,9.62282 0.292951,1.20204 2.343326,-0.91896 2.910847,-1.77467 1.192514,-1.79808 0.976274,-2.79789 1.698844,-4.21729 3.81161,-7.48561 10.88404,-14.79722 16.80468,-22.34766 27.316434,-34.83593 52.898514,-70.92418 74.957034,-109.48242 27.30974,-47.73738 47.35967,-99.31216 58.8086,-153.1543 16.72263,-78.64339 15.8864,-162.40303 65.70703,-227.39844 10.65757,-13.90373 23.29678,-26.3755 37.07422,-37.29492 13.57618,-10.75989 28.95103,-19.74637 45.01367,-26.22851 25.89576,-10.45036 52.12729,-16.86904 79.53891,-16.43765 45.68604,0.71897 92.13487,17.95292 127.32632,48.82241 12.39093,10.86919 24.96461,23.07612 34.95718,36.39836 9.3601,12.47907 18.13819,25.63688 33.04102,34.54581 28.92226,17.28971 57.76731,33.27885 86.64633,49.87611 4.02037,2.31056 25.71226,10.63135 22.7999,19.68949 -2.91236,9.05814 -32.02462,7.73534 -45.35458,8.94922 -3.06487,0.2791 -2.06014,0.0211 -2.07813,2.15039 -0.11577,13.98659 -5.23127,27.6932 -9.04687,42.20508 -7.51729,28.59058 -15.58627,60.10687 -7,90.53906 10.25029,36.32976 36.80213,62.92723 53.8164,93.42578 15.85394,28.41867 19.56169,61.49844 10.58399,92.82422 -11.57551,40.39043 -46.40961,72.85765 -86.34785,84.33681 -4.68015,1.34519 -22.50746,8.9605 -31.43033,7.83912 -3.65939,-0.4599 -16.25778,-13.81811 -10.34682,-3.92007 8.23529,13.79017 29.8949,2.34039 42.3971,-1.35611 42.4093,-12.18941 78.48527,-42.99546 90.94248,-86.46244 9.6053,-33.51566 2.87338,-64.574 -13.87474,-94.59552 -17.74524,-31.80882 -44.19153,-60.05755 -53.7192,-93.82617 -7.84781,-27.81489 -0.45583,-60.12983 7.01382,-88.53925 3.40368,-12.94521 8.64652,-27.99666 9.1445,-42.45519 m -50.00162,17.95733 c -29.63149,23.62765 -37.9722,56.02896 -39.88476,89.52539 -1.91256,33.49644 2.24278,68.5546 -1.86719,99.06446 C 603.12544,638.59857 553.30516,712.63237 484.30891,753 c -42.23908,24.71287 -94.6439,33.84304 -143.65625,31.07617 -31.19616,-1.7611 -58.08891,-23.04394 -54.12376,-17.22965 8.61303,12.62972 38.11744,20.18333 52.97728,22.33512 50.59821,7.32683 104.787,-4.46092 148.59179,-30.08984 71.1738,-41.64165 118.98111,-117.5132 130.04079,-199.61336 4.30977,-31.99308 -0.37435,-68.23964 1.48123,-100.7384 1.8556,-32.49876 12.27419,-63.61142 39.71515,-85.49238 5.27506,-4.20623 15.99307,-10.97634 21.69721,-14.22313 -9.3108,3.77361 -17.95567,5.52854 -25.44805,11.50281 z"
|
|
67
|
+
id="path3"
|
|
68
|
+
sodipodi:nodetypes="ccsssssssssssssscssssssssssscscsssssssssssscssssssssssscs" />
|
|
69
|
+
<path
|
|
70
|
+
style="baseline-shift:baseline;display:none;overflow:visible;vector-effect:none;fill:#0f1a2c;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
71
|
+
d="m 666.37263,337.6511 c -8.00665,7.20514 -20.90955,10.64459 -30,17.03625 -19.05249,13.39618 -34.90912,32.82117 -44.69055,53.96375 -8.84613,19.12085 -15.77075,40.85785 -17.21997,62 -1.52472,22.24329 1.3443,44.75659 -0.17896,67 -3.04687,44.49176 -14.06842,88.84692 -37.96069,127 -33.03223,52.74854 -85.01331,92.25952 -144.94983,109.29016 -22.83151,6.48743 -46.30203,9.70984 -70,9.70984 -5.59619,0 -22.49036,-2.80359 -25.96759,2.43365 -3.98721,6.00531 6.03668,10.00525 9.96759,11.69367 13.61124,5.84637 28.37747,9.32703 43,11.44446 49.59094,7.18097 102.97806,-4.41248 146,-29.58338 70.08502,-41.00464 120.83429,-115.19763 131.71759,-195.9884 8.41974,-62.50293 -16.79004,-140.48755 40.28241,-185.99615 7.34698,-5.85834 15.30176,-11.36323 24,-15.00385 -0.58508,13.59241 -6.32501,26.82385 -9.34875,40 -7.04834,30.7135 -12.14698,64.20789 -2.62574,95 17.409,56.30176 80.80402,103.08606 66.08716,167 -10.59277,46.00336 -51.64337,75.70752 -96.11267,84.60034 -6.34216,1.26825 -24.3335,5.34326 -15.39661,15.98071 7.2555,8.63611 32.4867,-0.31103 41.39661,-2.87194 41.17377,-11.83429 77.55615,-43.7804 89.57251,-85.70911 9.2915,-32.42072 3.86664,-65.77991 -12.43439,-95 -17.37976,-31.15369 -43.82086,-57.95081 -53.70984,-93 -8.21704,-29.12354 -1.03747,-60.5 6.456,-89 3.75604,-14.28534 8.99237,-29.09839 9.11572,-44 13.70642,-0.58997 28.35992,-2.94061 42,-4.71838 5.23328,-0.68207 11.63477,-1.27723 10.83258,-8.27857 -1.0141,-8.85101 -20.85284,-15.9917 -27.83258,-20.00305 -29.03668,-16.68787 -59.27332,-31.4314 -88,-48.60419 -13.88879,-8.30273 -22.40826,-21.7478 -31.89508,-34.39581 -10.10516,-13.47235 -21.42896,-26.59454 -34.10492,-37.71375 -57.52417,-50.45947 -140.59857,-61.49646 -211,-33.08563 -16.43027,6.6305 -32.12195,15.80335 -46,26.80249 -14.00595,11.10053 -26.88095,23.79816 -37.76465,37.99689 -50.83551,66.3194 -49.85245,150.96362 -66.44601,229 -11.35941,53.42114 -31.25591,104.60803 -58.36804,152 -21.93079,38.33496 -47.39428,74.2655 -74.631167,109 -5.71602,7.28949 -13.0032,14.71582 -17.221447,23 -2.17998,4.28125 -1.82891,10.01868 3.475297,11.56635 11.84199,3.45538 29.800437,0.76019 41.956017,-0.39661 26.58286,-2.52973 52.80876,-4.96045 79,-10.74536 62.88638,-13.88983 125.24854,-34.3498 182,-65.11573 49.2475,-26.69793 93.23175,-60.23321 118.75311,-111.30865 23.51575,-47.06165 25.48346,-100.57953 44.69672,-149 12.52789,-31.57239 33.26367,-59.06708 60.55017,-79.37036 18.36987,-13.66864 39.73804,-24.62964 63,-24.62964 m -94,-63 c -16.72528,-4.81805 -31.26367,-11.14111 -49,-12.83026 -73.58258,-7.00763 -140.17197,26.56189 -173.24384,93.83026 -6.87985,13.99365 -11.63443,28.99921 -15.74536,44 -1.52997,5.58289 -4.75781,14.14502 -3.60339,19.94135 1.05527,5.2984 9.47101,4.65435 13.59259,5.34417 12.75299,2.13452 25.65201,6.87488 37,13.02313 31.46594,17.04804 58.20261,45.21406 69.25385,79.69135 16.01068,49.94958 -10.23554,99.39294 -48.25385,131.24615 -46.68646,39.11567 -105.77573,62.13617 -164,77.9051 -27.67554,7.49536 -57.20589,14.84875 -86,14.84875 16.95084,-25.65143 37.30475,-48.72607 53.57562,-75 27.87943,-45.01923 48.09882,-95.8772 61.5401,-147 21.61124,-82.19647 16.61484,-184.15137 79.89893,-249 42.94501,-44.00671 111.05414,-57.97681 168.98535,-38.66669 20.14246,6.71405 49.02112,20.80274 56,42.66669 m -65,25.32562 c 36.146,-6.08258 45.31494,47.57361 9,53.23377 -33.28278,5.18756 -42.41846,-47.61017 -9,-53.23377 z"
|
|
72
|
+
id="path4" />
|
|
73
|
+
</g>
|
|
74
|
+
</g>
|
|
75
|
+
<metadata
|
|
76
|
+
id="metadata6">
|
|
77
|
+
<rdf:RDF>
|
|
78
|
+
<cc:Work
|
|
79
|
+
rdf:about="">
|
|
80
|
+
<dc:title>CodeWeaver Weaver Logo</dc:title>
|
|
81
|
+
<dc:date>11/25/2025</dc:date>
|
|
82
|
+
<dc:creator>
|
|
83
|
+
<cc:Agent>
|
|
84
|
+
<dc:title>Adam Poulemanos</dc:title>
|
|
85
|
+
</cc:Agent>
|
|
86
|
+
</dc:creator>
|
|
87
|
+
<dc:rights>
|
|
88
|
+
<cc:Agent>
|
|
89
|
+
<dc:title>(c) 2025 Knitli Inc.</dc:title>
|
|
90
|
+
</cc:Agent>
|
|
91
|
+
</dc:rights>
|
|
92
|
+
<dc:subject>
|
|
93
|
+
<rdf:Bag>
|
|
94
|
+
<rdf:li>logo</rdf:li>
|
|
95
|
+
<rdf:li>codeweaver</rdf:li>
|
|
96
|
+
<rdf:li>knitli</rdf:li>
|
|
97
|
+
</rdf:Bag>
|
|
98
|
+
</dc:subject>
|
|
99
|
+
<dc:description>An abstract depiction of a Southern Masked Weaver holding a thread in its beak</dc:description>
|
|
100
|
+
</cc:Work>
|
|
101
|
+
</rdf:RDF>
|
|
102
|
+
</metadata>
|
|
103
|
+
</svg>
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
3
|
+
|
|
4
|
+
<svg
|
|
5
|
+
version="1.1"
|
|
6
|
+
id="svg1"
|
|
7
|
+
width="750"
|
|
8
|
+
height="750"
|
|
9
|
+
viewBox="0 0 750.00001 750"
|
|
10
|
+
sodipodi:docname="codeweaver-reverse.svg"
|
|
11
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
12
|
+
inkscape:export-filename="C:\Users\bm-sv\Downloads\codeweaver-reverse.webp"
|
|
13
|
+
inkscape:export-xdpi="32.768002"
|
|
14
|
+
inkscape:export-ydpi="32.768002"
|
|
15
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
16
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
17
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
18
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
19
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
20
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
21
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
22
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
23
|
+
<title
|
|
24
|
+
id="title6">CodeWeaver Weaver Logo</title>
|
|
25
|
+
<defs
|
|
26
|
+
id="defs1">
|
|
27
|
+
<color-profile
|
|
28
|
+
name="sRGB-display-profile-with-display-hardware-configuration-data-derived-from-calibration"
|
|
29
|
+
xlink:href="../../../WINDOWS/system32/spool/drivers/color/CalibratedDisplayProfile-1.icc"
|
|
30
|
+
id="color-profile2" />
|
|
31
|
+
</defs>
|
|
32
|
+
<sodipodi:namedview
|
|
33
|
+
id="namedview1"
|
|
34
|
+
pagecolor="#f7f3eb"
|
|
35
|
+
bordercolor="#000000"
|
|
36
|
+
borderopacity="0.25"
|
|
37
|
+
inkscape:showpageshadow="2"
|
|
38
|
+
inkscape:pageopacity="0.0"
|
|
39
|
+
inkscape:pagecheckerboard="0"
|
|
40
|
+
inkscape:deskcolor="#d1d1d1"
|
|
41
|
+
inkscape:zoom="1"
|
|
42
|
+
inkscape:cx="565.5"
|
|
43
|
+
inkscape:cy="388.5"
|
|
44
|
+
inkscape:window-width="2560"
|
|
45
|
+
inkscape:window-height="1529"
|
|
46
|
+
inkscape:window-x="-8"
|
|
47
|
+
inkscape:window-y="-8"
|
|
48
|
+
inkscape:window-maximized="1"
|
|
49
|
+
inkscape:current-layer="g1"
|
|
50
|
+
inkscape:export-bgcolor="#f7f3eb00" />
|
|
51
|
+
<g
|
|
52
|
+
inkscape:groupmode="layer"
|
|
53
|
+
inkscape:label="Image"
|
|
54
|
+
id="g1"
|
|
55
|
+
transform="translate(-45.078745,-92.411427)">
|
|
56
|
+
<path
|
|
57
|
+
style="fill:#b56c30;fill-opacity:1;stroke:none;stroke-width:8;stroke-linecap:round;stroke-linejoin:round;stroke-dasharray:none;stroke-opacity:1;paint-order:stroke markers fill"
|
|
58
|
+
d="m 682.37263,358.6511 c -0.58508,13.59241 -6.32501,26.82385 -9.34875,40 -7.04834,30.7135 -12.14698,64.20789 -2.62574,95 17.409,56.30176 80.80402,103.08606 66.08716,167 -10.59277,46.00336 -51.64337,75.70752 -96.11267,84.60034 -6.34216,1.26825 -24.3335,5.34326 -15.39661,15.98071 7.2555,8.63611 32.4867,-0.31103 41.39661,-2.87194 41.17377,-11.83429 77.55615,-43.7804 89.57251,-85.70911 9.2915,-32.42072 3.86664,-65.77991 -12.43439,-95 -17.37976,-31.15369 -43.82086,-57.95081 -53.70984,-93 -8.21704,-29.12354 -1.03747,-60.5 6.456,-89 3.75604,-14.28534 8.99237,-29.09839 9.11572,-44 13.70642,-0.58997 28.35992,-2.94061 42,-4.71838 5.23328,-0.68207 11.63477,-1.27723 10.83258,-8.27857 -1.0141,-8.85101 -20.85284,-15.9917 -27.83258,-20.00305 -29.03668,-16.68787 -59.27332,-31.4314 -88,-48.60419 -13.88879,-8.30273 -20.28694,-22.98524 -31.89508,-34.39581 -12.01013,-11.80573 -21.42896,-26.59454 -34.10492,-37.71375 -57.52417,-50.45947 -140.59857,-61.49646 -211,-33.08563 -16.43027,6.6305 -32.12195,15.80335 -46,26.80249 -14.00595,11.10053 -26.88095,23.79816 -37.76465,37.99689 -50.83551,66.3194 -49.85245,150.96362 -66.44601,229 -11.35941,53.42114 -31.25591,104.60803 -58.36804,152 -21.93079,38.33496 -47.39428,74.2655 -74.631167,109 -5.71602,7.28949 -13.0032,14.71582 -17.221447,23 -2.17998,4.28125 -1.82891,10.01868 3.475297,11.56635 11.84199,3.45538 29.800437,0.76019 41.956017,-0.39661 26.58286,-2.52973 52.80876,-4.96045 79,-10.74536 62.88638,-13.88983 125.24854,-34.3498 182,-65.11573 49.2475,-26.69793 93.23175,-60.23321 118.75311,-111.30865 23.51575,-47.06165 25.48346,-100.57953 44.69672,-149 23.36223,-63.38184 62.39226,-87.28583 124.96438,-85.51472 -2.82042,2.53808 -47.01158,-10.37025 -76.10476,52.51472 -8.84613,19.12085 -15.77075,40.85785 -17.21997,62 -1.52472,22.24329 1.3443,44.75659 -0.17896,67 -3.04687,44.49176 -14.06842,88.84692 -37.96069,127 -33.03223,52.74854 -85.01331,92.25952 -144.94983,109.29016 -22.83151,6.48743 -46.30203,9.70984 -70,9.70984 -5.59619,0 -22.49036,-2.80359 -25.96759,2.43365 -3.98721,6.00531 6.03668,10.00525 9.96759,11.69367 13.61124,5.84637 28.37747,9.32703 43,11.44446 49.59094,7.18097 102.97806,-4.41248 146,-29.58338 70.08502,-41.00464 120.83429,-115.19763 131.71759,-195.9884 8.41974,-62.50293 -16.79004,-140.48755 40.28241,-185.99615 7.34698,-5.85834 15.30176,-11.36323 24,-15.00385 m -118,-108 c -16.72528,-4.81805 -31.26367,-11.14111 -49,-12.83026 -73.58258,-7.00763 -140.17197,26.56189 -173.24384,93.83026 -6.87985,13.99365 -11.63443,28.99921 -15.74536,44 -1.52997,5.58289 -4.75781,14.14502 -3.60339,19.94135 1.05527,5.2984 9.47101,4.65435 13.59259,5.34417 12.75299,2.13452 25.65201,6.87488 37,13.02313 31.46594,17.04804 58.20261,45.21406 69.25385,79.69135 16.01068,49.94958 -10.23554,99.39294 -48.25385,131.24615 -46.68646,39.11567 -105.77573,62.13617 -164,77.9051 -27.67554,7.49536 -57.20589,14.84875 -86,14.84875 16.95084,-25.65143 37.30475,-48.72607 53.57562,-75 27.87943,-45.01923 48.09882,-95.8772 61.5401,-147 21.61124,-82.19647 16.61484,-184.15137 79.89893,-249 42.94501,-44.00671 111.05414,-57.97681 168.98535,-38.66669 20.14246,6.71405 49.02112,20.80274 56,42.66669 m -65,25.32562 c 36.146,-6.08258 45.31494,47.57361 9,53.23377 -33.28278,5.18756 -42.41846,-47.61017 -9,-53.23377 z"
|
|
59
|
+
id="path1"
|
|
60
|
+
sodipodi:nodetypes="csssssssssscssssssssssssssssssscsssssssssssscccsssssssscsssscsss" />
|
|
61
|
+
<g
|
|
62
|
+
id="path2"
|
|
63
|
+
style="display:inline;opacity:1">
|
|
64
|
+
<path
|
|
65
|
+
style="baseline-shift:baseline;display:inline;overflow:visible;opacity:1;vector-effect:none;fill:#455b6b;fill-opacity:1;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
66
|
+
d="m 738.40363,350.19133 c 11.72326,0.99273 26.91253,-6.59593 16.73205,-18.14197 C 738.768,321.74075 714.70264,309.45977 711.74326,307.75897 682.54893,290.9805 671.77839,285.08336 643.2473,268.02749 630.37255,260.33096 618.47997,245.60901 608.96371,232.71967 597.86208,217.68301 584.9606,204.88471 571.9996,193.51548 535.28585,161.31064 489.51456,149.98111 442.03683,149.23575 c -28.48665,-0.44722 -51.90272,3.52393 -78.80803,14.3817 -16.79791,6.77886 -30.15672,15.78502 -44.33663,27.0234 -14.23447,11.28164 -27.34526,24.73387 -38.45508,39.2276 -51.85039,67.64339 -53.01721,150.52054 -69.48169,227.94991 -11.26989,53.00014 -29.76321,104.79914 -56.67774,151.8457 -21.80305,38.11168 -46.64929,73.88646 -73.806644,108.51953 -5.5114,7.02854 -12.26379,13.56959 -16.888671,22.65235 -1.457231,2.86185 -0.786702,6.31596 0.01922,9.62282 0.292951,1.20204 2.343326,-0.91896 2.910847,-1.77467 1.192514,-1.79808 0.976274,-2.79789 1.698844,-4.21729 3.81161,-7.48561 10.88404,-14.79722 16.80468,-22.34766 27.316434,-34.83593 52.898514,-70.92418 74.957034,-109.48242 27.30974,-47.73738 47.35967,-99.31216 58.8086,-153.1543 16.72263,-78.64339 15.8864,-162.40303 65.70703,-227.39844 10.65757,-13.90373 23.29678,-26.3755 37.07422,-37.29492 13.57618,-10.75989 28.95103,-19.74637 45.01367,-26.22851 25.89576,-10.45036 52.12729,-16.86904 79.53891,-16.43765 45.68604,0.71897 92.13487,17.95292 127.32632,48.82241 12.39093,10.86919 24.96461,23.07612 34.95718,36.39836 9.3601,12.47907 18.13819,25.63688 33.04102,34.54581 28.92226,17.28971 57.76731,33.27885 86.64633,49.87611 4.02037,2.31056 25.71226,10.63135 22.7999,19.68949 -2.91236,9.05814 -32.02462,7.73534 -45.35458,8.94922 -3.06487,0.2791 -2.06014,0.0211 -2.07813,2.15039 -0.11577,13.98659 -5.23127,27.6932 -9.04687,42.20508 -7.51729,28.59058 -15.58627,60.10687 -7,90.53906 10.25029,36.32976 36.80213,62.92723 53.8164,93.42578 15.85394,28.41867 19.56169,61.49844 10.58399,92.82422 -11.57551,40.39043 -46.40961,72.85765 -86.34785,84.33681 -4.68015,1.34519 -22.50746,8.9605 -31.43033,7.83912 -3.65939,-0.4599 -16.25778,-13.81811 -10.34682,-3.92007 8.23529,13.79017 29.8949,2.34039 42.3971,-1.35611 42.4093,-12.18941 78.48527,-42.99546 90.94248,-86.46244 9.6053,-33.51566 2.87338,-64.574 -13.87474,-94.59552 -17.74524,-31.80882 -44.19153,-60.05755 -53.7192,-93.82617 -7.84781,-27.81489 -0.45583,-60.12983 7.01382,-88.53925 3.40368,-12.94521 8.64652,-27.99666 9.1445,-42.45519 m -50.00162,17.95733 c -29.63149,23.62765 -37.9722,56.02896 -39.88476,89.52539 -1.91256,33.49644 2.24278,68.5546 -1.86719,99.06446 C 603.12544,638.59857 553.30516,712.63237 484.30891,753 c -42.23908,24.71287 -94.6439,33.84304 -143.65625,31.07617 -31.19616,-1.7611 -58.08891,-23.04394 -54.12376,-17.22965 8.61303,12.62972 38.11744,20.18333 52.97728,22.33512 50.59821,7.32683 104.787,-4.46092 148.59179,-30.08984 71.1738,-41.64165 118.98111,-117.5132 130.04079,-199.61336 4.30977,-31.99308 -0.37435,-68.23964 1.48123,-100.7384 1.8556,-32.49876 12.27419,-63.61142 39.71515,-85.49238 5.27506,-4.20623 15.99307,-10.97634 21.69721,-14.22313 -9.3108,3.77361 -17.95567,5.52854 -25.44805,11.50281 z"
|
|
67
|
+
id="path3"
|
|
68
|
+
sodipodi:nodetypes="ccsssssssssssssscssssssssssscscsssssssssssscssssssssssscs" />
|
|
69
|
+
<path
|
|
70
|
+
style="baseline-shift:baseline;display:none;overflow:visible;vector-effect:none;fill:#0f1a2c;stroke-linecap:round;stroke-linejoin:round;paint-order:stroke markers fill;enable-background:accumulate;stop-color:#000000;stop-opacity:1"
|
|
71
|
+
d="m 666.37263,337.6511 c -8.00665,7.20514 -20.90955,10.64459 -30,17.03625 -19.05249,13.39618 -34.90912,32.82117 -44.69055,53.96375 -8.84613,19.12085 -15.77075,40.85785 -17.21997,62 -1.52472,22.24329 1.3443,44.75659 -0.17896,67 -3.04687,44.49176 -14.06842,88.84692 -37.96069,127 -33.03223,52.74854 -85.01331,92.25952 -144.94983,109.29016 -22.83151,6.48743 -46.30203,9.70984 -70,9.70984 -5.59619,0 -22.49036,-2.80359 -25.96759,2.43365 -3.98721,6.00531 6.03668,10.00525 9.96759,11.69367 13.61124,5.84637 28.37747,9.32703 43,11.44446 49.59094,7.18097 102.97806,-4.41248 146,-29.58338 70.08502,-41.00464 120.83429,-115.19763 131.71759,-195.9884 8.41974,-62.50293 -16.79004,-140.48755 40.28241,-185.99615 7.34698,-5.85834 15.30176,-11.36323 24,-15.00385 -0.58508,13.59241 -6.32501,26.82385 -9.34875,40 -7.04834,30.7135 -12.14698,64.20789 -2.62574,95 17.409,56.30176 80.80402,103.08606 66.08716,167 -10.59277,46.00336 -51.64337,75.70752 -96.11267,84.60034 -6.34216,1.26825 -24.3335,5.34326 -15.39661,15.98071 7.2555,8.63611 32.4867,-0.31103 41.39661,-2.87194 41.17377,-11.83429 77.55615,-43.7804 89.57251,-85.70911 9.2915,-32.42072 3.86664,-65.77991 -12.43439,-95 -17.37976,-31.15369 -43.82086,-57.95081 -53.70984,-93 -8.21704,-29.12354 -1.03747,-60.5 6.456,-89 3.75604,-14.28534 8.99237,-29.09839 9.11572,-44 13.70642,-0.58997 28.35992,-2.94061 42,-4.71838 5.23328,-0.68207 11.63477,-1.27723 10.83258,-8.27857 -1.0141,-8.85101 -20.85284,-15.9917 -27.83258,-20.00305 -29.03668,-16.68787 -59.27332,-31.4314 -88,-48.60419 -13.88879,-8.30273 -22.40826,-21.7478 -31.89508,-34.39581 -10.10516,-13.47235 -21.42896,-26.59454 -34.10492,-37.71375 -57.52417,-50.45947 -140.59857,-61.49646 -211,-33.08563 -16.43027,6.6305 -32.12195,15.80335 -46,26.80249 -14.00595,11.10053 -26.88095,23.79816 -37.76465,37.99689 -50.83551,66.3194 -49.85245,150.96362 -66.44601,229 -11.35941,53.42114 -31.25591,104.60803 -58.36804,152 -21.93079,38.33496 -47.39428,74.2655 -74.631167,109 -5.71602,7.28949 -13.0032,14.71582 -17.221447,23 -2.17998,4.28125 -1.82891,10.01868 3.475297,11.56635 11.84199,3.45538 29.800437,0.76019 41.956017,-0.39661 26.58286,-2.52973 52.80876,-4.96045 79,-10.74536 62.88638,-13.88983 125.24854,-34.3498 182,-65.11573 49.2475,-26.69793 93.23175,-60.23321 118.75311,-111.30865 23.51575,-47.06165 25.48346,-100.57953 44.69672,-149 12.52789,-31.57239 33.26367,-59.06708 60.55017,-79.37036 18.36987,-13.66864 39.73804,-24.62964 63,-24.62964 m -94,-63 c -16.72528,-4.81805 -31.26367,-11.14111 -49,-12.83026 -73.58258,-7.00763 -140.17197,26.56189 -173.24384,93.83026 -6.87985,13.99365 -11.63443,28.99921 -15.74536,44 -1.52997,5.58289 -4.75781,14.14502 -3.60339,19.94135 1.05527,5.2984 9.47101,4.65435 13.59259,5.34417 12.75299,2.13452 25.65201,6.87488 37,13.02313 31.46594,17.04804 58.20261,45.21406 69.25385,79.69135 16.01068,49.94958 -10.23554,99.39294 -48.25385,131.24615 -46.68646,39.11567 -105.77573,62.13617 -164,77.9051 -27.67554,7.49536 -57.20589,14.84875 -86,14.84875 16.95084,-25.65143 37.30475,-48.72607 53.57562,-75 27.87943,-45.01923 48.09882,-95.8772 61.5401,-147 21.61124,-82.19647 16.61484,-184.15137 79.89893,-249 42.94501,-44.00671 111.05414,-57.97681 168.98535,-38.66669 20.14246,6.71405 49.02112,20.80274 56,42.66669 m -65,25.32562 c 36.146,-6.08258 45.31494,47.57361 9,53.23377 -33.28278,5.18756 -42.41846,-47.61017 -9,-53.23377 z"
|
|
72
|
+
id="path4" />
|
|
73
|
+
</g>
|
|
74
|
+
</g>
|
|
75
|
+
<metadata
|
|
76
|
+
id="metadata6">
|
|
77
|
+
<rdf:RDF>
|
|
78
|
+
<cc:Work
|
|
79
|
+
rdf:about="">
|
|
80
|
+
<dc:title>CodeWeaver Weaver Logo</dc:title>
|
|
81
|
+
<dc:date>11/25/2025</dc:date>
|
|
82
|
+
<dc:creator>
|
|
83
|
+
<cc:Agent>
|
|
84
|
+
<dc:title>Adam Poulemanos</dc:title>
|
|
85
|
+
</cc:Agent>
|
|
86
|
+
</dc:creator>
|
|
87
|
+
<dc:rights>
|
|
88
|
+
<cc:Agent>
|
|
89
|
+
<dc:title>(c) 2025 Knitli Inc.</dc:title>
|
|
90
|
+
</cc:Agent>
|
|
91
|
+
</dc:rights>
|
|
92
|
+
<dc:subject>
|
|
93
|
+
<rdf:Bag>
|
|
94
|
+
<rdf:li>logo</rdf:li>
|
|
95
|
+
<rdf:li>codeweaver</rdf:li>
|
|
96
|
+
<rdf:li>knitli</rdf:li>
|
|
97
|
+
</rdf:Bag>
|
|
98
|
+
</dc:subject>
|
|
99
|
+
<dc:description>An abstract depiction of a Southern Masked Weaver holding a thread in its beak</dc:description>
|
|
100
|
+
</cc:Work>
|
|
101
|
+
</rdf:RDF>
|
|
102
|
+
</metadata>
|
|
103
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import codeweaverPrimarySvg from "./codeweaver-primary.svg";
|
|
2
|
+
import codeweaverReverseSvg from "./codeweaver-reverse.svg";
|
|
3
|
+
import headlineLogoWebp from "./headline_logo.webp";
|
|
4
|
+
import headlineLogoDarkWebp from "./headline_logo_dark.webp";
|
|
5
|
+
import knitliLogoSvg from "./knitli_logo.svg";
|
|
6
|
+
import knitliWordmarkSvg from "./knitli_wordmark.svg";
|
|
7
|
+
import recocoLogoWebpMED from "./recoco-med.webp";
|
|
8
|
+
import recocoLogoWebpSM from "./recoco-sm.webp";
|
|
9
|
+
import recocoLogoWebpXL from "./recoco-xl.webp";
|
|
10
|
+
import threadLogoLightSvg from "./Thread_vector_mono_aubergine.svg";
|
|
11
|
+
import threadLogoDarkSvg from "./Thread_vector_mono_parchment.svg";
|
|
12
|
+
export declare const knitliLogo: string;
|
|
13
|
+
export declare const headlineLogoDark: string;
|
|
14
|
+
export declare const headlineLogoLight: string;
|
|
15
|
+
export declare const codeweaverPrimary: string;
|
|
16
|
+
export declare const codeweaverReverse: string;
|
|
17
|
+
export declare const knitliWordmark: string;
|
|
18
|
+
export declare const recocoLogoXl: string;
|
|
19
|
+
export declare const recocoLogoMed: string;
|
|
20
|
+
export declare const recocoLogoSm: string;
|
|
21
|
+
export declare const threadLogoDark: string;
|
|
22
|
+
export declare const threadLogoLight: string;
|
|
23
|
+
export type LogoAssets = {
|
|
24
|
+
knitliLogo: typeof knitliLogoSvg;
|
|
25
|
+
headlineLogoDark: typeof headlineLogoDarkWebp;
|
|
26
|
+
headlineLogoLight: typeof headlineLogoWebp;
|
|
27
|
+
codeweaverPrimary: typeof codeweaverPrimarySvg;
|
|
28
|
+
codeweaverReverse: typeof codeweaverReverseSvg;
|
|
29
|
+
knitliWordmark: typeof knitliWordmarkSvg;
|
|
30
|
+
recocoLogoXl: typeof recocoLogoWebpXL;
|
|
31
|
+
recocoLogoMed: typeof recocoLogoWebpMED;
|
|
32
|
+
recocoLogoSm: typeof recocoLogoWebpSM;
|
|
33
|
+
threadLogoDark: typeof threadLogoDarkSvg;
|
|
34
|
+
threadLogoLight: typeof threadLogoLightSvg;
|
|
35
|
+
};
|
|
36
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/assets/logos/index.ts"],"names":[],"mappings":"AAMA,OAAO,oBAAoB,MAAM,0BAA0B,CAAC;AAC5D,OAAO,oBAAoB,MAAM,0BAA0B,CAAC;AAC5D,OAAO,gBAAgB,MAAM,sBAAsB,CAAC;AACpD,OAAO,oBAAoB,MAAM,2BAA2B,CAAC;AAC7D,OAAO,aAAa,MAAM,mBAAmB,CAAC;AAC9C,OAAO,iBAAiB,MAAM,uBAAuB,CAAC;AACtD,OAAO,iBAAiB,MAAM,mBAAmB,CAAC;AAClD,OAAO,gBAAgB,MAAM,kBAAkB,CAAC;AAChD,OAAO,gBAAgB,MAAM,kBAAkB,CAAC;AAChD,OAAO,kBAAkB,MAAM,oCAAoC,CAAC;AACpE,OAAO,iBAAiB,MAAM,oCAAoC,CAAC;AAEnE,eAAO,MAAM,UAAU,QAAgB,CAAC;AACxC,eAAO,MAAM,gBAAgB,QAAuB,CAAC;AACrD,eAAO,MAAM,iBAAiB,QAAmB,CAAC;AAClD,eAAO,MAAM,iBAAiB,QAAuB,CAAC;AACtD,eAAO,MAAM,iBAAiB,QAAuB,CAAC;AACtD,eAAO,MAAM,cAAc,QAAoB,CAAC;AAChD,eAAO,MAAM,YAAY,QAAmB,CAAC;AAC7C,eAAO,MAAM,aAAa,QAAoB,CAAC;AAC/C,eAAO,MAAM,YAAY,QAAmB,CAAC;AAC7C,eAAO,MAAM,cAAc,QAAoB,CAAC;AAChD,eAAO,MAAM,eAAe,QAAqB,CAAC;AAElD,MAAM,MAAM,UAAU,GAAG;IACvB,UAAU,EAAE,OAAO,aAAa,CAAC;IACjC,gBAAgB,EAAE,OAAO,oBAAoB,CAAC;IAC9C,iBAAiB,EAAE,OAAO,gBAAgB,CAAC;IAC3C,iBAAiB,EAAE,OAAO,oBAAoB,CAAC;IAC/C,iBAAiB,EAAE,OAAO,oBAAoB,CAAC;IAC/C,cAAc,EAAE,OAAO,iBAAiB,CAAC;IACzC,YAAY,EAAE,OAAO,gBAAgB,CAAC;IACtC,aAAa,EAAE,OAAO,iBAAiB,CAAC;IACxC,YAAY,EAAE,OAAO,gBAAgB,CAAC;IACtC,cAAc,EAAE,OAAO,iBAAiB,CAAC;IACzC,eAAe,EAAE,OAAO,kBAAkB,CAAC;CAC5C,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
// SPDX-FileCopyrightText: 2025 Knitli Inc.
|
|
2
|
+
// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
3
|
+
//
|
|
4
|
+
// Local logo asset exports - files are copied from @knitli/shared-layouts during build.
|
|
5
|
+
// Do not edit paths here; run `bun run copy-assets` to refresh from source.
|
|
6
|
+
import codeweaverPrimarySvg from "./codeweaver-primary.svg";
|
|
7
|
+
import codeweaverReverseSvg from "./codeweaver-reverse.svg";
|
|
8
|
+
import headlineLogoWebp from "./headline_logo.webp";
|
|
9
|
+
import headlineLogoDarkWebp from "./headline_logo_dark.webp";
|
|
10
|
+
import knitliLogoSvg from "./knitli_logo.svg";
|
|
11
|
+
import knitliWordmarkSvg from "./knitli_wordmark.svg";
|
|
12
|
+
import recocoLogoWebpMED from "./recoco-med.webp";
|
|
13
|
+
import recocoLogoWebpSM from "./recoco-sm.webp";
|
|
14
|
+
import recocoLogoWebpXL from "./recoco-xl.webp";
|
|
15
|
+
import threadLogoLightSvg from "./Thread_vector_mono_aubergine.svg";
|
|
16
|
+
import threadLogoDarkSvg from "./Thread_vector_mono_parchment.svg";
|
|
17
|
+
export const knitliLogo = knitliLogoSvg;
|
|
18
|
+
export const headlineLogoDark = headlineLogoDarkWebp;
|
|
19
|
+
export const headlineLogoLight = headlineLogoWebp;
|
|
20
|
+
export const codeweaverPrimary = codeweaverPrimarySvg;
|
|
21
|
+
export const codeweaverReverse = codeweaverReverseSvg;
|
|
22
|
+
export const knitliWordmark = knitliWordmarkSvg;
|
|
23
|
+
export const recocoLogoXl = recocoLogoWebpXL;
|
|
24
|
+
export const recocoLogoMed = recocoLogoWebpMED;
|
|
25
|
+
export const recocoLogoSm = recocoLogoWebpSM;
|
|
26
|
+
export const threadLogoDark = threadLogoDarkSvg;
|
|
27
|
+
export const threadLogoLight = threadLogoLightSvg;
|