@knitli/docs-components 1.2.1 → 1.3.2
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/dist/assets/favicon/index.js +8 -10
- package/dist/assets/logos/index.js +25 -21
- package/dist/assets/styles/index.js +12 -14
- package/dist/data/products.js +17 -32
- package/dist/index.js +39 -44
- package/dist/styles/index.js +7 -4
- package/dist/types/index.js +1 -7
- package/package.json +12 -5
- package/dist/assets/favicon/android-chrome-192x192.png +0 -0
- package/dist/assets/favicon/android-chrome-512x512.png +0 -0
- package/dist/assets/favicon/apple-touch-icon.png +0 -0
- package/dist/assets/favicon/favicon-16x16.png +0 -0
- package/dist/assets/favicon/favicon-32x32.png +0 -0
- package/dist/assets/favicon/favicon.ico +0 -0
- package/dist/assets/favicon/favicon.svg +0 -86
- package/dist/assets/favicon/index.d.ts +0 -7
- package/dist/assets/favicon/index.d.ts.map +0 -1
- package/dist/assets/favicon/social.webp +0 -0
- package/dist/assets/logos/Thread_vector_mono_aubergine.svg +0 -41
- package/dist/assets/logos/Thread_vector_mono_copper.svg +0 -41
- package/dist/assets/logos/Thread_vector_mono_parchment.svg +0 -41
- package/dist/assets/logos/codeweaver-primary.svg +0 -103
- package/dist/assets/logos/codeweaver-reverse.svg +0 -103
- 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 +0 -29
- package/dist/assets/logos/index.d.ts.map +0 -1
- package/dist/assets/logos/knitli_logo.svg +0 -143
- package/dist/assets/logos/knitli_wordmark.svg +0 -118
- package/dist/assets/logos/recoco-lg.webp +0 -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/logos/recoco-xs.webp +0 -0
- package/dist/assets/styles/codeweaver-theme.css +0 -570
- package/dist/assets/styles/global.css +0 -166
- package/dist/assets/styles/index.d.ts +0 -15
- package/dist/assets/styles/index.d.ts.map +0 -1
- package/dist/assets/styles/knitli-theme.css +0 -215
- package/dist/assets/styles/textures.css +0 -668
- package/dist/assets/styles/typography.css +0 -262
- package/dist/assets/styles/variables.css +0 -238
- package/dist/data/products.d.ts +0 -44
- package/dist/data/products.d.ts.map +0 -1
- package/dist/data/products.json +0 -45
- package/dist/index.d.ts +0 -55
- package/dist/index.d.ts.map +0 -1
- package/dist/styles/custom.css +0 -73
- package/dist/styles/index.d.ts +0 -2
- package/dist/styles/index.d.ts.map +0 -1
- package/dist/templates/AstroConfigTemplate.d.mts +0 -3
- package/dist/templates/AstroConfigTemplate.d.mts.map +0 -1
- package/dist/templates/AstroConfigTemplate.mjs +0 -305
- package/dist/types/index.d.ts +0 -31
- package/dist/types/index.d.ts.map +0 -1
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
export const faviconIco = join(__dirname, "favicon.ico");
|
|
10
|
-
export const faviconSvg = join(__dirname, "favicon.svg");
|
|
1
|
+
import { dirname, join } from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'node:url';
|
|
3
|
+
|
|
4
|
+
const __dirname$1 = dirname(fileURLToPath(import.meta.url));
|
|
5
|
+
const faviconIco = join(__dirname$1, "favicon.ico");
|
|
6
|
+
const faviconSvg = join(__dirname$1, "favicon.svg");
|
|
7
|
+
|
|
8
|
+
export { faviconIco, faviconSvg };
|
|
@@ -1,21 +1,25 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
import { dirname, join } from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'node:url';
|
|
3
|
+
|
|
4
|
+
const __dirname$1 = dirname(fileURLToPath(import.meta.url));
|
|
5
|
+
const knitliLogo = join(__dirname$1, "knitli_logo.svg");
|
|
6
|
+
const headlineLogoLight = join(__dirname$1, "headline_logo.webp");
|
|
7
|
+
const headlineLogoDark = join(__dirname$1, "headline_logo_dark.webp");
|
|
8
|
+
const codeweaverPrimary = join(__dirname$1, "codeweaver-primary.svg");
|
|
9
|
+
const codeweaverReverse = join(__dirname$1, "codeweaver-reverse.svg");
|
|
10
|
+
const knitliWordmark = join(__dirname$1, "knitli_wordmark.svg");
|
|
11
|
+
const recocoLogoXl = join(__dirname$1, "recoco-xl.webp");
|
|
12
|
+
const recocoLogoLg = join(__dirname$1, "recoco-lg.webp");
|
|
13
|
+
const recocoLogoMed = join(__dirname$1, "recoco-med.webp");
|
|
14
|
+
const recocoLogoSm = join(__dirname$1, "recoco-sm.webp");
|
|
15
|
+
const recocoLogoXs = join(__dirname$1, "recoco-xs.webp");
|
|
16
|
+
const threadLogoDark = join(
|
|
17
|
+
__dirname$1,
|
|
18
|
+
"Thread_vector_mono_parchment.svg"
|
|
19
|
+
);
|
|
20
|
+
const threadLogoLight = join(
|
|
21
|
+
__dirname$1,
|
|
22
|
+
"Thread_vector_mono_aubergine.svg"
|
|
23
|
+
);
|
|
24
|
+
|
|
25
|
+
export { codeweaverPrimary, codeweaverReverse, headlineLogoDark, headlineLogoLight, knitliLogo, knitliWordmark, recocoLogoLg, recocoLogoMed, recocoLogoSm, recocoLogoXl, recocoLogoXs, threadLogoDark, threadLogoLight };
|
|
@@ -1,14 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
export
|
|
13
|
-
export const typography = join(__dirname, "typography.css");
|
|
14
|
-
export const variables = join(__dirname, "variables.css");
|
|
1
|
+
import { dirname, join } from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'node:url';
|
|
3
|
+
|
|
4
|
+
const __dirname$1 = dirname(fileURLToPath(import.meta.url));
|
|
5
|
+
const codeweaverTheme = join(__dirname$1, "codeweaver-theme.css");
|
|
6
|
+
const globalStyles = join(__dirname$1, "global.css");
|
|
7
|
+
const knitliTheme = join(__dirname$1, "knitli-theme.css");
|
|
8
|
+
const textures = join(__dirname$1, "textures.css");
|
|
9
|
+
const typography = join(__dirname$1, "typography.css");
|
|
10
|
+
const variables = join(__dirname$1, "variables.css");
|
|
11
|
+
|
|
12
|
+
export { codeweaverTheme, globalStyles, knitliTheme, textures, typography, variables };
|
package/dist/data/products.js
CHANGED
|
@@ -1,38 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// Product catalog — single source of truth for all Knitli product metadata.
|
|
7
|
-
// Edit products.json to add, remove, reorder, or update products.
|
|
8
|
-
import catalogData from "./products.json" with { type: "json" };
|
|
9
|
-
/** All products from the catalog */
|
|
10
|
-
export const products = catalogData;
|
|
11
|
-
/** Products marked as featured (or not explicitly unfeatured), sorted by order */
|
|
12
|
-
export function featuredProducts() {
|
|
13
|
-
return products
|
|
14
|
-
.filter((p) => p.featured !== false)
|
|
15
|
-
.sort((a, b) => a.order - b.order);
|
|
1
|
+
const catalogData = /* #__PURE__ */ JSON.parse("[{\"slug\":\"recoco\",\"name\":\"Recoco\",\"tagline\":\"Intelligent data pipelines\",\"description\":\"Build intelligent data pipelines and ETL workflows. Only process changed data.\",\"highlight\":\"Pure Rust, minimal dependencies, maximum efficiency.\",\"status\":\"available\",\"docsUrl\":\"/recoco/\",\"external\":false,\"logo\":\"recocoLogoSm\",\"darkLogo\":\"recocoLogoSm\",\"order\":1,\"featured\":true},{\"slug\":\"codeweaver\",\"name\":\"CodeWeaver\",\"tagline\":\"AI code context engine\",\"description\":\"Your AI code assistants can do better.\",\"highlight\":\"CodeWeaver gives AI agents tailored code context and project understanding, stopping hallucinations, cutting token waste, and supercharging your AI coding workflows.\",\"footnote\":\"Now in Alpha.\",\"status\":\"coming-soon\",\"external\":false,\"logo\":\"codeweaverPrimary\",\"darkLogo\":\"codeweaverReverse\",\"order\":2,\"featured\":true},{\"slug\":\"thread\",\"name\":\"Thread\",\"tagline\":\"Ultra-fast codebase analysis\",\"description\":\"An ultra-fast, Rust-native, codebase analysis platform.\",\"highlight\":\"Real-time code understanding and navigation for the largest codebases. Delivers 50x+ speed improvements over comparable tools with minimal resource usage. Works locally, on the edge, or in the cloud.\",\"footnote\":\"Limited features available now, full release coming soon.\",\"status\":\"available\",\"docsUrl\":\"https://docs.rs/thread\",\"external\":true,\"logo\":\"threadLogoLight\",\"darkLogo\":\"threadLogoDark\",\"order\":3,\"featured\":true}]");
|
|
2
|
+
|
|
3
|
+
const products = catalogData;
|
|
4
|
+
function featuredProducts() {
|
|
5
|
+
return products.filter((p) => p.featured !== false).sort((a, b) => a.order - b.order);
|
|
16
6
|
}
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
return products.filter((p) => p.status !== "coming-soon");
|
|
7
|
+
function availableProducts() {
|
|
8
|
+
return products.filter((p) => p.status !== "coming-soon");
|
|
20
9
|
}
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
return products.find((p) => p.slug === slug);
|
|
10
|
+
function getProduct(slug) {
|
|
11
|
+
return products.find((p) => p.slug === slug);
|
|
24
12
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
return products.find((p) => p.name === name);
|
|
13
|
+
function getProductByName(name) {
|
|
14
|
+
return products.find((p) => p.name === name);
|
|
28
15
|
}
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
return products.map((p) => p.name);
|
|
16
|
+
function productNames() {
|
|
17
|
+
return products.map((p) => p.name);
|
|
32
18
|
}
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
return products
|
|
36
|
-
.filter((p) => p.docsUrl && !p.external && p.status !== "coming-soon")
|
|
37
|
-
.map((p) => `${baseUrl}/${p.slug}/sitemap-index.xml`);
|
|
19
|
+
function getProductSitemaps(baseUrl = "https://docs.knitli.com") {
|
|
20
|
+
return products.filter((p) => p.docsUrl && !p.external && p.status !== "coming-soon").map((p) => `${baseUrl}/${p.slug}/sitemap-index.xml`);
|
|
38
21
|
}
|
|
22
|
+
|
|
23
|
+
export { availableProducts, featuredProducts, getProduct, getProductByName, getProductSitemaps, productNames, products };
|
package/dist/index.js
CHANGED
|
@@ -1,48 +1,43 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
threadLogoLight,
|
|
27
|
-
headlineLogoDark,
|
|
28
|
-
headlineLogoLight,
|
|
29
|
-
knitliWordmark,
|
|
30
|
-
faviconIco,
|
|
31
|
-
faviconSvg,
|
|
32
|
-
docsStyle,
|
|
1
|
+
export { availableProducts, featuredProducts, getProduct, getProductByName, getProductSitemaps, productNames, products } from './data/products.js';
|
|
2
|
+
import { faviconSvg, faviconIco } from './assets/favicon/index.js';
|
|
3
|
+
import { knitliWordmark, headlineLogoLight, headlineLogoDark, threadLogoLight, threadLogoDark, codeweaverReverse, codeweaverPrimary, recocoLogoXl, recocoLogoXs, recocoLogoLg, recocoLogoSm, recocoLogoMed, knitliLogo } from './assets/logos/index.js';
|
|
4
|
+
import { variables, codeweaverTheme } from './assets/styles/index.js';
|
|
5
|
+
import { docsStyle } from './styles/index.js';
|
|
6
|
+
|
|
7
|
+
const DocsAssets = {
|
|
8
|
+
knitliLogo,
|
|
9
|
+
recocoLogoMed,
|
|
10
|
+
recocoLogoSm,
|
|
11
|
+
recocoLogoLg,
|
|
12
|
+
recocoLogoXs,
|
|
13
|
+
recocoLogoXl,
|
|
14
|
+
codeweaverPrimary,
|
|
15
|
+
codeweaverReverse,
|
|
16
|
+
codeweaverTheme,
|
|
17
|
+
variables,
|
|
18
|
+
threadLogoDark,
|
|
19
|
+
threadLogoLight,
|
|
20
|
+
headlineLogoDark,
|
|
21
|
+
headlineLogoLight,
|
|
22
|
+
knitliWordmark,
|
|
23
|
+
faviconIco,
|
|
24
|
+
faviconSvg,
|
|
25
|
+
docsStyle
|
|
33
26
|
};
|
|
34
27
|
const components = {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
28
|
+
DocsBreadcrumb: async () => await import('./components/DocsBreadcrumb.astro'),
|
|
29
|
+
DocsFooter: async () => await import('./components/Footer.astro'),
|
|
30
|
+
PageFrame: async () => await import('./components/PageFrame.astro'),
|
|
31
|
+
Contributors: async () => await import('./components/Contributors.astro'),
|
|
32
|
+
AllContributors: async () => await import('./components/AllContributors.astro'),
|
|
33
|
+
SeoMeta: async () => await import('./components/SeoMeta.astro'),
|
|
34
|
+
ProductCard: async () => await import('./components/ProductCard.astro'),
|
|
35
|
+
ProductGrid: async () => await import('./components/ProductGrid.astro'),
|
|
36
|
+
ProductShowcase: async () => await import('./components/ProductShowcase.astro')
|
|
44
37
|
};
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
38
|
+
const index = {
|
|
39
|
+
...components,
|
|
40
|
+
DocsAssets
|
|
48
41
|
};
|
|
42
|
+
|
|
43
|
+
export { DocsAssets, index as default };
|
package/dist/styles/index.js
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
import { dirname, join } from
|
|
2
|
-
import { fileURLToPath } from
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { dirname, join } from 'node:path';
|
|
2
|
+
import { fileURLToPath } from 'node:url';
|
|
3
|
+
|
|
4
|
+
const __dirname$1 = dirname(fileURLToPath(import.meta.url));
|
|
5
|
+
const docsStyle = join(__dirname$1, "custom.css");
|
|
6
|
+
|
|
7
|
+
export { docsStyle };
|
package/dist/types/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@knitli/docs-components",
|
|
3
|
-
"version": "1.2
|
|
3
|
+
"version": "1.3.2",
|
|
4
4
|
"description": "Shared branded components for Knitli documentation sites",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"knitli",
|
|
@@ -22,7 +22,10 @@
|
|
|
22
22
|
"#style/*": "./src/styles/*.css"
|
|
23
23
|
},
|
|
24
24
|
"exports": {
|
|
25
|
-
".":
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
27
|
+
"import": "./dist/index.js"
|
|
28
|
+
},
|
|
26
29
|
"./DocsBreadcrumb.astro": "./src/components/DocsBreadcrumb.astro",
|
|
27
30
|
"./Footer.astro": "./src/components/Footer.astro",
|
|
28
31
|
"./PageFrame.astro": "./src/components/PageFrame.astro",
|
|
@@ -32,7 +35,10 @@
|
|
|
32
35
|
"./ProductCard.astro": "./src/components/ProductCard.astro",
|
|
33
36
|
"./ProductGrid.astro": "./src/components/ProductGrid.astro",
|
|
34
37
|
"./ProductShowcase.astro": "./src/components/ProductShowcase.astro",
|
|
35
|
-
"./products":
|
|
38
|
+
"./products": {
|
|
39
|
+
"types": "./dist/data/products.d.ts",
|
|
40
|
+
"import": "./dist/data/products.js"
|
|
41
|
+
},
|
|
36
42
|
"./custom.css": "./src/styles/custom.css",
|
|
37
43
|
"./assets/logos/*": "./src/assets/logos/*",
|
|
38
44
|
"./assets/styles/*": "./src/assets/styles/*"
|
|
@@ -47,9 +53,10 @@
|
|
|
47
53
|
"CHANGELOG.md"
|
|
48
54
|
],
|
|
49
55
|
"scripts": {
|
|
50
|
-
"build": "
|
|
56
|
+
"build": "vite build && tsc -p tsconfig.build.json --noCheck",
|
|
51
57
|
"copy-assets": "bun run scripts/copy-assets.mjs",
|
|
52
|
-
"prepublishOnly": "bun run copy-assets && bun run build"
|
|
58
|
+
"prepublishOnly": "bun run copy-assets && bun run build",
|
|
59
|
+
"deploy": "npm publish --access public"
|
|
53
60
|
},
|
|
54
61
|
"dependencies": {
|
|
55
62
|
"astro-contributors": "catalog:astro-plugins",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,86 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
-
<svg
|
|
3
|
-
id="Layer_1"
|
|
4
|
-
data-name="Layer 1"
|
|
5
|
-
viewBox="0 0 400.00001 399.99999"
|
|
6
|
-
version="1.1"
|
|
7
|
-
sodipodi:docname="favicon.svg"
|
|
8
|
-
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
9
|
-
width="400"
|
|
10
|
-
height="400"
|
|
11
|
-
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
-
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
-
xmlns:svg="http://www.w3.org/2000/svg"
|
|
15
|
-
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
16
|
-
xmlns:cc="http://creativecommons.org/ns#"
|
|
17
|
-
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
18
|
-
<title
|
|
19
|
-
id="title1">knitli favicon</title>
|
|
20
|
-
<sodipodi:namedview
|
|
21
|
-
id="namedview1"
|
|
22
|
-
pagecolor="#000000"
|
|
23
|
-
bordercolor="#ffffff"
|
|
24
|
-
borderopacity="1"
|
|
25
|
-
inkscape:showpageshadow="false"
|
|
26
|
-
inkscape:pageopacity="0"
|
|
27
|
-
inkscape:pagecheckerboard="1"
|
|
28
|
-
inkscape:deskcolor="#505050"
|
|
29
|
-
inkscape:zoom="3.6830872"
|
|
30
|
-
inkscape:cx="168.60855"
|
|
31
|
-
inkscape:cy="197.79602"
|
|
32
|
-
inkscape:window-width="2560"
|
|
33
|
-
inkscape:window-height="1529"
|
|
34
|
-
inkscape:window-x="-8"
|
|
35
|
-
inkscape:window-y="-8"
|
|
36
|
-
inkscape:window-maximized="1"
|
|
37
|
-
inkscape:current-layer="Layer_1" />
|
|
38
|
-
<defs
|
|
39
|
-
id="defs1">
|
|
40
|
-
<style
|
|
41
|
-
id="style1">
|
|
42
|
-
.cls-1 {
|
|
43
|
-
fill: #ea5932;
|
|
44
|
-
}
|
|
45
|
-
</style>
|
|
46
|
-
</defs>
|
|
47
|
-
<metadata
|
|
48
|
-
id="metadata1">
|
|
49
|
-
<rdf:RDF>
|
|
50
|
-
<cc:Work
|
|
51
|
-
rdf:about="">
|
|
52
|
-
<dc:creator>Knitli Inc.</dc:creator>
|
|
53
|
-
<dc:publisher>Knitli Inc.</dc:publisher>
|
|
54
|
-
<dc:rights>© 2025 Knitli Inc. All Rights Reserved.<cc:Agent>
|
|
55
|
-
<dc:title>knitli official favicon</dc:title>
|
|
56
|
-
</cc:Agent>
|
|
57
|
-
</dc:rights>
|
|
58
|
-
<dc:description>official knitli favicon</dc:description>
|
|
59
|
-
<dc:subject>Brand Identity</dc:subject>
|
|
60
|
-
<dc:type>Image</dc:type>
|
|
61
|
-
<dc:language>en</dc:language>
|
|
62
|
-
<dc:format>image/svg+xml</dc:format>
|
|
63
|
-
<dc:source>Signcraft (DesignCrowd) / SleighVisual (99Designs)</dc:source>
|
|
64
|
-
<dc:coverage>all</dc:coverage>
|
|
65
|
-
<dc:contributor>Design: Adam/Signcraft (DesignCrowd username), Owned: Knitli Inc.</dc:contributor>
|
|
66
|
-
<dc:relation>original reference design</dc:relation>
|
|
67
|
-
<dc:date>2025-04-07</dc:date>
|
|
68
|
-
<dc:identifier>952316bb-88e4-4e75-aeec-a81e3dddc965</dc:identifier>
|
|
69
|
-
<dc:title>knitli favicon</dc:title>
|
|
70
|
-
</cc:Work>
|
|
71
|
-
</rdf:RDF>
|
|
72
|
-
</metadata>
|
|
73
|
-
<path
|
|
74
|
-
style="fill:#1e061b"
|
|
75
|
-
d="M 0,0 H 400 V 400 H 0 Z"
|
|
76
|
-
id="rect1" />
|
|
77
|
-
<path
|
|
78
|
-
style="fill:#ea5932;fill-opacity:1"
|
|
79
|
-
d="m 362.23,157.08392 c -7.41,-2.72 -15.31,-4.08 -23.45,-4.08 -25.16,0 -47.42,12.37 -62.01,23.11 -3.66,-4.58 -6.91,-9.5 -9.98,-14.71 -2.97,-5.27 -5.61,-10.54 -7.75,-16 16.6,-7.27 38.43,-20.36 51.02,-42.15 4.08,-7.049996 6.84,-14.569996 8.19,-22.349996 3.43,-19.64 -5.15,-39.12 -21.44,-48.54 -16.25,-9.37 -37.44,-7.08 -52.74,5.7 -6.04,5.05 -11.17,11.2 -15.25,18.28 -12.57,21.78 -13,47.209996 -11,65.249996 -5.83,0.89 -11.78,1.32 -17.83,1.31 -6.05,0 -12,-0.42 -17.83,-1.31 2,-18.04 1.57,-43.479996 -11,-65.249996 -4.09,-7.08 -9.21,-13.23 -15.25,-18.28 -15.3,-12.78 -36.49,-15.07 -52.74,-5.7 -16.290001,9.42 -24.860001,28.91 -21.440001,48.54 1.35,7.78 4.12,15.3 8.19,22.349996 12.590001,21.79 34.420001,34.88 51.020001,42.15 -2.14,5.46 -4.78,10.73 -7.75,16 -3.07,5.21 -6.32,10.13 -9.98,14.71 -14.6,-10.74 -36.850001,-23.1 -62.010001,-23.11 -8.14,0 -16.04,1.36 -23.45,4.08 -18.72,6.85 -31.3100002,24.02 -31.3200002,42.83 0,18.76 12.5900002,35.97 31.3100002,42.82 7.39,2.71 15.28,4.07 23.46,4.07 25.14,0 47.380001,-12.34 62.010001,-23.1 3.69,4.6 7.03,9.54 10.05,14.79 3.04,5.24 5.64,10.61 7.78,16.1 -16.63,7.29 -38.44,20.38 -51.010001,42.15 -4.09,7.08 -6.86,14.59 -8.2,22.35 -3.42,19.64 5.19,39.14 21.430001,48.53 16.3,9.4 37.46,7.08 52.76,-5.71 6.06,-5.06 11.19,-11.21 15.26,-18.27 12.57,-21.8 13,-47.25 10.99,-65.26 5.79,-0.88 11.68,-1.23 17.73,-1.29 6.05,0.06 11.93,0.41 17.73,1.29 -2,18.01 -1.58,43.46 10.99,65.26 4.07,7.05 9.2,13.21 15.26,18.27 15.29,12.78 36.46,15.1 52.76,5.71 16.24,-9.39 24.85,-28.89 21.43,-48.53 -1.35,-7.76 -4.11,-15.27 -8.2,-22.35 -12.57,-21.77 -34.38,-34.86 -51.01,-42.15 2.14,-5.5 4.75,-10.86 7.78,-16.1 3.02,-5.25 6.37,-10.18 10.05,-14.79 14.63,10.76 36.87,23.1 62.01,23.1 8.18,0 16.06,-1.36 23.46,-4.07 18.72,-6.86 31.3,-24.07 31.31,-42.82 -0.01,-18.82 -12.6,-35.98 -31.32,-42.84 z m -301.050001,55.07 c -4.09,0 -7.96,-0.66 -11.52,-1.96 -4.88,-1.79 -8.55,-6.21 -8.55,-10.28 0.02,-4.06 3.68,-8.5 8.54,-10.28 3.58,-1.3 7.46,-1.97 11.53,-1.97 10.85,0.01 23.42,4.43 35.61,12.24 -12.22,7.83 -24.77,12.25 -35.61,12.24 z M 119.93,85.903924 c -2.04,-3.52 -3.4,-7.21 -4.06,-10.96 -0.9,-5.1 1.12,-10.49 4.63,-12.54 3.53,-2.04 9.19,-1.06 13.18,2.27 2.91,2.44 5.42,5.45 7.46,9 5.42,9.38 7.87,22.46 7.2,36.959996 -12.86,-6.65 -22.97,-15.329996 -28.4,-24.719996 z m 21.31,240.439996 c -2.03,3.53 -4.55,6.55 -7.46,9 -3.97,3.33 -9.64,4.28 -13.17,2.26 -3.53,-2.04 -5.52,-7.43 -4.63,-12.55 0.66,-3.74 2.02,-7.42 4.07,-10.96 5.41,-9.39 15.52,-18.05 28.41,-24.71 0.67,14.46 -1.79,27.56 -7.21,36.96 z m 95.47,-105.17 c -4.38,7.52 -8.07,15.34 -11.04,23.4 -8.44,-1.45 -17,-2.12 -25.68,-2.13 -8.69,0.01 -17.25,0.68 -25.68,2.13 -2.96,-8.06 -6.65,-15.88 -11.04,-23.4 -4.32,-7.56 -9.25,-14.66 -14.75,-21.26 5.48,-6.58 10.33,-13.66 14.69,-21.18 4.34,-7.53 8.04,-15.28 11,-23.31 8.46,1.46 17.08,2.18 25.78,2.14 8.71,0.03 17.32,-0.68 25.78,-2.14 2.96,8.03 6.66,15.78 11,23.31 4.35,7.52 9.21,14.6 14.69,21.18 -5.5,6.6 -10.42,13.7 -14.75,21.26 z m 43.23,92.92 c 2.05,3.54 3.41,7.22 4.07,10.96 0.89,5.12 -1.1,10.51 -4.63,12.55 -3.53,2.02 -9.2,1.07 -13.17,-2.26 -2.92,-2.45 -5.44,-5.47 -7.46,-9 -5.41,-9.4 -7.87,-22.5 -7.21,-36.96 12.89,6.67 22.99,15.33 28.41,24.71 z m -28.29,-203.47 c -0.67,-14.499996 1.78,-27.569996 7.2,-36.959996 2.04,-3.55 4.55,-6.56 7.46,-9 3.99,-3.33 9.65,-4.3 13.18,-2.27 3.51,2.05 5.52,7.43 4.63,12.54 -0.66,3.75 -2.02,7.44 -4.06,10.96 -5.43,9.39 -15.55,18.069996 -28.4,24.719996 z m 98.67,99.57 c -3.57,1.3 -7.43,1.96 -11.52,1.96 -10.84,0 -23.39,-4.41 -35.61,-12.24 12.19,-7.81 24.77,-12.23 35.61,-12.24 4.07,0 7.95,0.66 11.53,1.97 4.87,1.78 8.53,6.21 8.54,10.28 0,4.07 -3.67,8.5 -8.55,10.28 z"
|
|
80
|
-
id="path1" />
|
|
81
|
-
<path
|
|
82
|
-
class="cls-1"
|
|
83
|
-
d="m 362.23,157.08392 c -7.41,-2.72 -15.31,-4.08 -23.45,-4.08 -25.16,0 -47.42,12.37 -62.01,23.11 -3.66,-4.58 -6.91,-9.5 -9.98,-14.71 -2.97,-5.27 -5.61,-10.54 -7.75,-16 16.6,-7.27 38.43,-20.36 51.02,-42.15 4.08,-7.049996 6.84,-14.569996 8.19,-22.349996 3.43,-19.64 -5.15,-39.12 -21.44,-48.54 -16.25,-9.37 -37.44,-7.08 -52.74,5.7 -6.04,5.05 -11.17,11.2 -15.25,18.28 -12.57,21.78 -13,47.209996 -11,65.249996 -5.83,0.89 -11.78,1.32 -17.83,1.31 -6.05,0 -12,-0.42 -17.83,-1.31 2,-18.04 1.57,-43.479996 -11,-65.249996 -4.09,-7.08 -9.21,-13.23 -15.25,-18.28 -15.3,-12.78 -36.49,-15.07 -52.74,-5.7 -16.290001,9.42 -24.860001,28.91 -21.440001,48.54 1.35,7.78 4.12,15.3 8.19,22.349996 12.590001,21.79 34.420001,34.88 51.020001,42.15 -2.14,5.46 -4.78,10.73 -7.75,16 -3.07,5.21 -6.32,10.13 -9.98,14.71 -14.6,-10.74 -36.850001,-23.1 -62.010001,-23.11 -8.14,0 -16.04,1.36 -23.45,4.08 -18.72,6.85 -31.3100002,24.02 -31.3200002,42.83 0,18.76 12.5900002,35.97 31.3100002,42.82 7.39,2.71 15.28,4.07 23.46,4.07 25.14,0 47.380001,-12.34 62.010001,-23.1 3.69,4.6 7.03,9.54 10.05,14.79 3.04,5.24 5.64,10.61 7.78,16.1 -16.63,7.29 -38.44,20.38 -51.010001,42.15 -4.09,7.08 -6.86,14.59 -8.2,22.35 -3.42,19.64 5.19,39.14 21.430001,48.53 16.3,9.4 37.46,7.08 52.76,-5.71 6.06,-5.06 11.19,-11.21 15.26,-18.27 12.57,-21.8 13,-47.25 10.99,-65.26 5.79,-0.88 11.68,-1.23 17.73,-1.29 6.05,0.06 11.93,0.41 17.73,1.29 -2,18.01 -1.58,43.46 10.99,65.26 4.07,7.05 9.2,13.21 15.26,18.27 15.29,12.78 36.46,15.1 52.76,5.71 16.24,-9.39 24.85,-28.89 21.43,-48.53 -1.35,-7.76 -4.11,-15.27 -8.2,-22.35 -12.57,-21.77 -34.38,-34.86 -51.01,-42.15 2.14,-5.5 4.75,-10.86 7.78,-16.1 3.02,-5.25 6.37,-10.18 10.05,-14.79 14.63,10.76 36.87,23.1 62.01,23.1 8.18,0 16.06,-1.36 23.46,-4.07 18.72,-6.86 31.3,-24.07 31.31,-42.82 -0.01,-18.82 -12.6,-35.98 -31.32,-42.84 z m -301.050001,55.07 c -4.09,0 -7.96,-0.66 -11.52,-1.96 -4.88,-1.79 -8.55,-6.21 -8.55,-10.28 0.02,-4.06 3.68,-8.5 8.54,-10.28 3.58,-1.3 7.46,-1.97 11.53,-1.97 10.85,0.01 23.42,4.43 35.61,12.24 -12.22,7.83 -24.77,12.25 -35.61,12.24 z M 119.93,85.903924 c -2.04,-3.52 -3.4,-7.21 -4.06,-10.96 -0.9,-5.1 1.12,-10.49 4.63,-12.54 3.53,-2.04 9.19,-1.06 13.18,2.27 2.91,2.44 5.42,5.45 7.46,9 5.42,9.38 7.87,22.46 7.2,36.959996 -12.86,-6.65 -22.97,-15.329996 -28.4,-24.719996 z m 21.31,240.439996 c -2.03,3.53 -4.55,6.55 -7.46,9 -3.97,3.33 -9.64,4.28 -13.17,2.26 -3.53,-2.04 -5.52,-7.43 -4.63,-12.55 0.66,-3.74 2.02,-7.42 4.07,-10.96 5.41,-9.39 15.52,-18.05 28.41,-24.71 0.67,14.46 -1.79,27.56 -7.21,36.96 z m 95.47,-105.17 c -4.38,7.52 -8.07,15.34 -11.04,23.4 -8.44,-1.45 -17,-2.12 -25.68,-2.13 -8.69,0.01 -17.25,0.68 -25.68,2.13 -2.96,-8.06 -6.65,-15.88 -11.04,-23.4 -4.32,-7.56 -9.25,-14.66 -14.75,-21.26 5.48,-6.58 10.33,-13.66 14.69,-21.18 4.34,-7.53 8.04,-15.28 11,-23.31 8.46,1.46 17.08,2.18 25.78,2.14 8.71,0.03 17.32,-0.68 25.78,-2.14 2.96,8.03 6.66,15.78 11,23.31 4.35,7.52 9.21,14.6 14.69,21.18 -5.5,6.6 -10.42,13.7 -14.75,21.26 z m 43.23,92.92 c 2.05,3.54 3.41,7.22 4.07,10.96 0.89,5.12 -1.1,10.51 -4.63,12.55 -3.53,2.02 -9.2,1.07 -13.17,-2.26 -2.92,-2.45 -5.44,-5.47 -7.46,-9 -5.41,-9.4 -7.87,-22.5 -7.21,-36.96 12.89,6.67 22.99,15.33 28.41,24.71 z m -28.29,-203.47 c -0.67,-14.499996 1.78,-27.569996 7.2,-36.959996 2.04,-3.55 4.55,-6.56 7.46,-9 3.99,-3.33 9.65,-4.3 13.18,-2.27 3.51,2.05 5.52,7.43 4.63,12.54 -0.66,3.75 -2.02,7.44 -4.06,10.96 -5.43,9.39 -15.55,18.069996 -28.4,24.719996 z m 98.67,99.57 c -3.57,1.3 -7.43,1.96 -11.52,1.96 -10.84,0 -23.39,-4.41 -35.61,-12.24 12.19,-7.81 24.77,-12.23 35.61,-12.24 4.07,0 7.95,0.66 11.53,1.97 4.87,1.78 8.53,6.21 8.54,10.28 0,4.07 -3.67,8.5 -8.55,10.28 z"
|
|
84
|
-
id="path2"
|
|
85
|
-
style="display:none;fill:#ea5932;fill-opacity:1" />
|
|
86
|
-
</svg>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/assets/favicon/index.ts"],"names":[],"mappings":"AAWA,eAAO,MAAM,UAAU,QAAiC,CAAC;AACzD,eAAO,MAAM,UAAU,QAAiC,CAAC;AAEzD,MAAM,MAAM,aAAa,GAAG;IAC1B,UAAU,EAAE,MAAM,CAAC;IACnB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAC"}
|
|
Binary file
|
|
@@ -1,41 +0,0 @@
|
|
|
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>
|
|
@@ -1,41 +0,0 @@
|
|
|
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>
|