@pierre/vscode-icons 0.0.3 → 0.0.5

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.
Files changed (94) hide show
  1. package/.github/workflows/publish.yml +6 -6
  2. package/package.json +5 -3
  3. package/scripts/build-icon-theme.mjs +5 -5
  4. package/scripts/format-svgs.mjs +62 -0
  5. package/scripts/palette.mjs +1 -0
  6. package/scripts/svg-sizes.mjs +75 -0
  7. package/scripts/themes/complete.mjs +3 -3
  8. package/scripts/themes/default.mjs +12 -2
  9. package/svgo.config.js +0 -1
  10. package/svgs/IconLayers3Middle.svg +5 -0
  11. package/svgs/astro.svg +4 -6
  12. package/svgs/babel.svg +2 -2
  13. package/svgs/bash-duo.svg +4 -6
  14. package/svgs/bash.svg +2 -2
  15. package/svgs/biome.svg +2 -2
  16. package/svgs/bootstrap-duo.svg +4 -6
  17. package/svgs/bootstrap.svg +3 -2
  18. package/svgs/braces.svg +2 -3
  19. package/svgs/browserslist-duo.svg +5 -9
  20. package/svgs/bun-duo.svg +4 -6
  21. package/svgs/bun.svg +2 -2
  22. package/svgs/claude.svg +2 -2
  23. package/svgs/code-block-duo.svg +4 -9
  24. package/svgs/code.svg +3 -0
  25. package/svgs/css.svg +3 -1
  26. package/svgs/docker.svg +3 -3
  27. package/svgs/eslint.svg +3 -3
  28. package/svgs/extension.svg +2 -2
  29. package/svgs/file-duo.svg +4 -6
  30. package/svgs/file-symlink-duo.svg +4 -0
  31. package/svgs/file-symlink.svg +4 -0
  32. package/svgs/file-table-duo.svg +4 -0
  33. package/svgs/file-text-duo.svg +4 -6
  34. package/svgs/file-text.svg +3 -4
  35. package/svgs/file.svg +2 -2
  36. package/svgs/folder-duo.svg +4 -6
  37. package/svgs/folder-open-duo.svg +4 -6
  38. package/svgs/folder-open.svg +2 -2
  39. package/svgs/folder.svg +2 -2
  40. package/svgs/font.svg +2 -3
  41. package/svgs/gear.svg +3 -0
  42. package/svgs/git.svg +2 -2
  43. package/svgs/graphql.svg +2 -8
  44. package/svgs/html.svg +3 -3
  45. package/svgs/image-duo.svg +4 -9
  46. package/svgs/image.svg +3 -3
  47. package/svgs/javascript.svg +3 -1
  48. package/svgs/lang-css-duo.svg +4 -10
  49. package/svgs/lang-css.svg +2 -2
  50. package/svgs/lang-go.svg +2 -2
  51. package/svgs/lang-html-duo.svg +4 -6
  52. package/svgs/lang-html.svg +3 -3
  53. package/svgs/lang-html5-duo.svg +4 -6
  54. package/svgs/lang-html5.svg +3 -5
  55. package/svgs/lang-javascript-duo.svg +4 -9
  56. package/svgs/lang-javascript.svg +2 -2
  57. package/svgs/lang-markdown.svg +2 -3
  58. package/svgs/lang-python.svg +4 -6
  59. package/svgs/lang-ruby.svg +2 -2
  60. package/svgs/lang-rust.svg +2 -2
  61. package/svgs/lang-swift.svg +2 -2
  62. package/svgs/lang-typescript-duo.svg +4 -9
  63. package/svgs/lang-typescript.svg +3 -3
  64. package/svgs/markdown.svg +3 -1
  65. package/svgs/mcp.svg +3 -10
  66. package/svgs/nextjs.svg +10 -13
  67. package/svgs/npm-duo.svg +4 -6
  68. package/svgs/npm.svg +2 -2
  69. package/svgs/oxc-fill.svg +2 -2
  70. package/svgs/oxc.svg +2 -2
  71. package/svgs/postcss.svg +2 -22
  72. package/svgs/prettier.svg +5 -5
  73. package/svgs/react.svg +3 -3
  74. package/svgs/rss.svg +2 -2
  75. package/svgs/sass.svg +2 -2
  76. package/svgs/server-duo.svg +5 -0
  77. package/svgs/server.svg +3 -0
  78. package/svgs/stylelint.svg +3 -9
  79. package/svgs/svelte.svg +2 -2
  80. package/svgs/svg-2.svg +3 -3
  81. package/svgs/svg.svg +2 -2
  82. package/svgs/svgo.svg +3 -3
  83. package/svgs/tailwind.svg +2 -2
  84. package/svgs/terraform.svg +2 -2
  85. package/svgs/typescript.svg +3 -1
  86. package/svgs/vite.svg +2 -2
  87. package/svgs/vscode.svg +4 -10
  88. package/svgs/vue.svg +3 -3
  89. package/svgs/wasm-duo.svg +5 -9
  90. package/svgs/wasm.svg +2 -2
  91. package/svgs/webpack.svg +4 -6
  92. package/svgs/yml.svg +2 -2
  93. package/svgs/zig.svg +3 -4
  94. package/svgs/ruby.svg +0 -1
@@ -11,12 +11,12 @@ jobs:
11
11
 
12
12
  steps:
13
13
  - name: Checkout code
14
- uses: actions/checkout@v4
14
+ uses: actions/checkout@v5
15
15
 
16
16
  - name: Setup Node.js
17
- uses: actions/setup-node@v4
17
+ uses: actions/setup-node@v5
18
18
  with:
19
- node-version: '20'
19
+ node-version: '22'
20
20
  cache: 'npm'
21
21
 
22
22
  - name: Install dependencies
@@ -47,12 +47,12 @@ jobs:
47
47
 
48
48
  steps:
49
49
  - name: Checkout code
50
- uses: actions/checkout@v4
50
+ uses: actions/checkout@v5
51
51
 
52
52
  - name: Setup Node.js
53
- uses: actions/setup-node@v4
53
+ uses: actions/setup-node@v5
54
54
  with:
55
- node-version: '20'
55
+ node-version: '22'
56
56
  cache: 'npm'
57
57
  registry-url: 'https://registry.npmjs.org'
58
58
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@pierre/vscode-icons",
3
3
  "displayName": "Pierre VS Code Icons",
4
4
  "description": "File icon theme for VS Code backed by source SVGs.",
5
- "version": "0.0.3",
5
+ "version": "0.0.5",
6
6
  "publisher": "pierrecomputer",
7
7
  "license": "MIT",
8
8
  "type": "module",
@@ -31,12 +31,14 @@
31
31
  "icon-theme"
32
32
  ],
33
33
  "scripts": {
34
- "build": "node scripts/build-icon-theme.mjs",
34
+ "build": "npm run format:svgs && npm run format:check && npm run lint && node scripts/build-icon-theme.mjs",
35
35
  "watch": "node scripts/watch-svgs.mjs",
36
36
  "package": "npm run build && node scripts/package-vsix.mjs",
37
37
  "lint": "oxlint scripts/",
38
38
  "format": "oxfmt scripts/",
39
- "format:check": "oxfmt --check scripts/"
39
+ "format:check": "oxfmt --check scripts/",
40
+ "format:svgs": "node scripts/format-svgs.mjs",
41
+ "sizes": "node scripts/svg-sizes.mjs"
40
42
  },
41
43
  "contributes": {
42
44
  "iconThemes": [
@@ -24,10 +24,6 @@ const tiers = {
24
24
  // SVG generation — read source, optimize, stamp dark/light fills
25
25
  // ---------------------------------------------------------------------------
26
26
 
27
- function normalizeSvg(svg) {
28
- return svg.replaceAll("#6c6c71", "currentColor");
29
- }
30
-
31
27
  function applyOpacity(svg, opacity) {
32
28
  if (!opacity || opacity === 1) return svg;
33
29
  return svg.replace("<svg", `<svg opacity="${opacity}"`);
@@ -38,7 +34,7 @@ function applyBgStyle(svg, bgColor) {
38
34
  }
39
35
 
40
36
  function optimizeSvg(raw) {
41
- return normalizeSvg(optimize(raw, SVGOConfig).data);
37
+ return optimize(raw, SVGOConfig).data;
42
38
  }
43
39
 
44
40
  async function generateSvgPair(name, { opacity } = {}) {
@@ -113,16 +109,20 @@ function buildTheme(icons, { colored = false } = {}) {
113
109
  }
114
110
  }
115
111
 
112
+ const hasSymlink = icons.some((i) => i.name === "file-symlink-duo");
113
+
116
114
  const theme = {
117
115
  iconDefinitions,
118
116
  file: "file-duo",
119
117
  folder: "folder-duo",
120
118
  folderExpanded: "folder-open-duo",
119
+ ...(hasSymlink && { fileSymlink: "file-symlink-duo" }),
121
120
  fileExtensions,
122
121
  light: {
123
122
  file: "file-duo_light",
124
123
  folder: "folder-duo_light",
125
124
  folderExpanded: "folder-open-duo_light",
125
+ ...(hasSymlink && { fileSymlink: "file-symlink-duo_light" }),
126
126
  fileExtensions: lightFileExtensions,
127
127
  },
128
128
  };
@@ -0,0 +1,62 @@
1
+ import { readdir, readFile, writeFile } from "node:fs/promises";
2
+ import path from "node:path";
3
+ import { fileURLToPath } from "node:url";
4
+ import { optimize } from "svgo";
5
+
6
+ const __dirname = path.dirname(fileURLToPath(import.meta.url));
7
+ const svgDir = path.resolve(__dirname, "..", "svgs");
8
+
9
+ const svgoConfig = {
10
+ js2svg: { pretty: true, indent: 2 },
11
+ plugins: [
12
+ {
13
+ name: "preset-default",
14
+ params: {
15
+ overrides: {
16
+ convertTransform: false,
17
+ inlineStyles: false,
18
+ convertColors: false,
19
+ convertPathData: { floatPrecision: 3 },
20
+ },
21
+ },
22
+ },
23
+ {
24
+ name: "removeAttrs",
25
+ params: { attrs: ["data-*"] },
26
+ },
27
+ "sortAttrs",
28
+ ],
29
+ };
30
+
31
+ function preprocess(svg) {
32
+ return svg
33
+ .replace(/<clipPath[\s\S]*?<\/clipPath>/g, "")
34
+ .replace(/<defs>\s*<\/defs>/g, "")
35
+ .replace(/<g[^>]*>/g, "")
36
+ .replace(/<\/g>/g, "")
37
+ .replace(/\s+clip-path="[^"]*"/g, "");
38
+ }
39
+
40
+ function postprocess(svg) {
41
+ return svg
42
+ .replace(/fill="(?!none|currentColor|url\()[^"]+"/g, 'fill="currentColor"')
43
+ .replace(/\s+stroke(?:-[\w-]+)?="[^"]*"/g, "");
44
+ }
45
+
46
+ async function formatSvgs() {
47
+ const files = (await readdir(svgDir)).filter((f) => f.endsWith(".svg")).sort();
48
+
49
+ for (const file of files) {
50
+ const filePath = path.join(svgDir, file);
51
+ const raw = await readFile(filePath, "utf8");
52
+ const cleaned = preprocess(raw);
53
+ const optimized = optimize(cleaned, svgoConfig).data;
54
+ const normalized = postprocess(optimized);
55
+ await writeFile(filePath, normalized);
56
+ console.log(`Formatted ${file}`);
57
+ }
58
+
59
+ console.log(`\nFormatted ${files.length} SVGs`);
60
+ }
61
+
62
+ formatSvgs();
@@ -7,6 +7,7 @@ export const palette = {
7
7
  800: "#6C6C71",
8
8
  },
9
9
  red: { 400: "#ff6762", 600: "#d52c36" },
10
+ vermilion: { 400: "#ff8c5b", 600: "#d5512f" },
10
11
  orange: { 400: "#ffa359", 600: "#d47628" },
11
12
  yellow: { 400: "#ffd452", 600: "#d5a910" },
12
13
  green: { 400: "#5ecc71", 600: "#199f43" },
@@ -0,0 +1,75 @@
1
+ import { readdir, stat } from "node:fs/promises";
2
+ import path from "node:path";
3
+ import { fileURLToPath } from "node:url";
4
+
5
+ const __dirname = path.dirname(fileURLToPath(import.meta.url));
6
+ const svgDir = path.resolve(__dirname, "..", "svgs");
7
+
8
+ function formatBytes(bytes) {
9
+ if (bytes >= 1024) {
10
+ return `${(bytes / 1024).toFixed(1)} KB`;
11
+ }
12
+ return `${bytes.toLocaleString()} B`;
13
+ }
14
+
15
+ function parseArgs() {
16
+ const args = process.argv.slice(2);
17
+ const idx = args.indexOf("--threshold");
18
+ if (idx !== -1 && args[idx + 1]) {
19
+ return { threshold: Number(args[idx + 1]) };
20
+ }
21
+ return { threshold: null };
22
+ }
23
+
24
+ async function svgSizes() {
25
+ const { threshold } = parseArgs();
26
+ const files = (await readdir(svgDir)).filter((f) => f.endsWith(".svg")).sort();
27
+
28
+ const entries = await Promise.all(
29
+ files.map(async (file) => {
30
+ const info = await stat(path.join(svgDir, file));
31
+ return { file, size: info.size };
32
+ }),
33
+ );
34
+
35
+ entries.sort((a, b) => b.size - a.size);
36
+
37
+ const maxName = Math.max(...entries.map((e) => e.file.length));
38
+ const maxSize = Math.max(...entries.map((e) => formatBytes(e.size).length));
39
+ const colWidth = maxName + maxSize + 4;
40
+ const termWidth = process.stdout.columns || 80;
41
+ const cols = Math.max(1, Math.floor(termWidth / (colWidth + 2)));
42
+
43
+ console.log("\nSVG File Sizes (largest first)");
44
+ console.log("\u2500".repeat(Math.min(termWidth, cols * (colWidth + 2))));
45
+
46
+ for (let i = 0; i < entries.length; i += cols) {
47
+ const row = entries.slice(i, i + cols);
48
+ const cells = row.map(({ file, size }) => {
49
+ const sizeStr = formatBytes(size).padStart(maxSize);
50
+ const marker = threshold !== null && size > threshold ? "*" : " ";
51
+ return `${marker} ${file.padEnd(maxName)} ${sizeStr}`;
52
+ });
53
+ console.log(cells.join(" "));
54
+ }
55
+
56
+ const totalSize = entries.reduce((sum, e) => sum + e.size, 0);
57
+ const avg = Math.round(totalSize / entries.length);
58
+ const max = entries[0];
59
+
60
+ console.log("\u2500".repeat(Math.min(termWidth, cols * (colWidth + 2))));
61
+ console.log(` Total: ${entries.length} files, ${formatBytes(totalSize)}`);
62
+ console.log(` Avg: ${formatBytes(avg)}`);
63
+ console.log(` Max: ${max.file} (${formatBytes(max.size)})`);
64
+
65
+ if (threshold !== null) {
66
+ const over = entries.filter((e) => e.size > threshold);
67
+ console.log(
68
+ ` Over ${formatBytes(threshold)}: ${over.length} file${over.length === 1 ? "" : "s"} *`,
69
+ );
70
+ }
71
+
72
+ console.log();
73
+ }
74
+
75
+ svgSizes();
@@ -256,13 +256,13 @@ const tooling = [
256
256
  },
257
257
  {
258
258
  name: "bun-duo",
259
- // color: color(palette.orange),
260
- color: duoColor(palette.pink, palette.orange),
259
+ color: color(palette.brown),
260
+ // color: duoColor(palette.pink, palette.brown),
261
261
  fileNames: ["bunfig.toml", "bun.lockb", "bun.lock"],
262
262
  },
263
263
  {
264
264
  name: "oxc",
265
- color: color(palette.orange),
265
+ color: color(palette.cyan),
266
266
  fileNames: [".oxlintrc.json"],
267
267
  },
268
268
  {
@@ -52,6 +52,17 @@ export default [
52
52
  fileExtensions: ["rb", "erb", "gemspec", "rake"],
53
53
  fileNames: ["Gemfile", "Rakefile"],
54
54
  },
55
+ {
56
+ name: "file-symlink-duo",
57
+ },
58
+ {
59
+ name: "server-duo",
60
+ fileExtensions: ["db", "sql", "sqlite", "sqlite3"],
61
+ },
62
+ {
63
+ name: "file-table-duo",
64
+ fileExtensions: ["csv", "tsv", "xls", "xlsx", "ods"],
65
+ },
55
66
  {
56
67
  name: "font",
57
68
  fileExtensions: ["ttf", "otf", "woff", "woff2", "eot"],
@@ -72,8 +83,7 @@ export default [
72
83
  },
73
84
  {
74
85
  name: "git",
75
- color: color(palette.orange),
76
- opacity: 0.75,
86
+ color: color(palette.vermilion),
77
87
  fileNames: [".gitignore", ".gitattributes", ".gitmodules", ".gitkeep"],
78
88
  },
79
89
  ];
package/svgo.config.js CHANGED
@@ -5,7 +5,6 @@ export const SVGOConfig = {
5
5
  params: {
6
6
  overrides: {
7
7
  convertTransform: false,
8
- convertColors: { currentColor: 'black' },
9
8
  inlineStyles: false,
10
9
  },
11
10
  },
@@ -0,0 +1,5 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M15.1 11.55a.5.5 0 0 1 0 .9l-6.65 3.33-.11.04a1 1 0 0 1-.68 0l-.1-.04L.9 12.45a.5.5 0 0 1 0-.9l1.98-1 1.68.85-1.2.6L8 14.32 12.65 12l-1.21-.6 1.68-.84z"/>
3
+ <path fill="currentColor" fill-rule="evenodd" d="M7.55.22a1 1 0 0 1 .9 0l6.66 3.33a.5.5 0 0 1 0 .9L8.45 7.78l-.11.04a1 1 0 0 1-.68 0l-.1-.04L.9 4.45a.5.5 0 0 1 0-.9zM3.35 4 8 6.32 12.65 4 8 1.68z" clip-rule="evenodd"/>
4
+ <path fill="currentColor" d="M15.1 7.55a.5.5 0 0 1 0 .9l-6.65 3.33a1 1 0 0 1-.9 0L.9 8.45a.5.5 0 0 1 0-.9l1.98-1 4.23 2.12a2 2 0 0 0 1.79 0l4.22-2.11z" class="fg"/>
5
+ </svg>
package/svgs/astro.svg CHANGED
@@ -1,6 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
-
3
- <path id="bg" opacity="0.6" d="M6.0779 13.9244C5.45108 13.3463 5.26808 12.1315 5.52924 11.2514C5.98207 11.8063 6.6095 11.982 7.25939 12.0813C8.26266 12.2344 9.24798 12.1771 10.18 11.7144C10.2866 11.6614 10.3852 11.591 10.5017 11.5197C10.5891 11.7757 10.6119 12.0341 10.5813 12.2971C10.507 12.9378 10.1911 13.4326 9.68854 13.8077C9.48758 13.9578 9.27494 14.0919 9.0674 14.2334C8.42979 14.6682 8.25728 15.1781 8.49687 15.9197C8.50256 15.9379 8.50766 15.9559 8.52053 16C8.19499 15.8529 7.95719 15.6389 7.776 15.3574C7.58462 15.0605 7.49358 14.7319 7.48879 14.3764C7.48639 14.2034 7.48639 14.0288 7.46334 13.8582C7.40703 13.4424 7.21356 13.2562 6.84908 13.2455C6.47502 13.2345 6.17913 13.4678 6.10067 13.8353C6.09468 13.8635 6.08599 13.8913 6.0773 13.9241L6.0779 13.9244Z" fill="black" class="bg"/>
4
- <path id="fg" d="M2.5 11.1048C2.5 11.1048 4.35615 10.1925 6.21748 10.1925L7.62086 5.81016C7.6734 5.59823 7.82681 5.4542 8 5.4542C8.17319 5.4542 8.3266 5.59823 8.37914 5.81016L9.78253 10.1925C11.987 10.1925 13.5 11.1048 13.5 11.1048C13.5 11.1048 10.3472 2.43862 10.341 2.42124C10.2505 2.16502 10.0978 2 9.89182 2H6.1085C5.90255 2 5.75596 2.16502 5.65931 2.42124C5.65249 2.4383 2.5 11.1048 2.5 11.1048Z" fill="black" class="fg"/>
5
-
6
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M6.08 13.92c-.63-.57-.81-1.79-.55-2.67.45.56 1.08.73 1.73.83 1 .15 1.99.1 2.92-.37l.32-.19q.13.38.08.78a2.1 2.1 0 0 1-.9 1.5q-.3.24-.61.43c-.64.44-.81.95-.57 1.69l.02.08a1.7 1.7 0 0 1-.74-.64 2 2 0 0 1-.3-.98q0-.27-.02-.52-.07-.61-.61-.62a.7.7 0 0 0-.75.6z" class="bg" opacity=".6"/>
3
+ <path fill="currentColor" d="M2.5 11.1s1.86-.9 3.72-.9l1.4-4.39c.05-.21.2-.36.38-.36s.33.15.38.36l1.4 4.38c2.2 0 3.72.92 3.72.92l-3.16-8.69q-.13-.4-.45-.42H6.11q-.3.02-.45.42z" class="fg"/>
4
+ </svg>
package/svgs/babel.svg CHANGED
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M9.99023 0C11.2746 0.031746 12.1521 0.222579 12.6533 0.540039C13.4988 0.95269 13.9374 1.42866 14 2.06348V2.28613C13.9373 3.14294 13.7496 3.80951 13.4678 4.19043L12.0889 5.42871C11.5879 5.68261 11.3692 5.90478 11.3691 6.06348C12.1406 6.88085 12.6993 7.34744 12.2148 8.47656C11.9016 9.20659 11.2435 9.96822 10.1787 10.7617C9.67751 11.0792 8.2985 12.1112 7.21777 12.6191C5.57535 13.3911 4.12657 14.0184 2.56641 14.5078C2.34713 14.984 2.00203 15.4921 1.56348 16H1.43848V15.9678C1.56374 15.5553 1.68919 15.2695 1.81445 15.1426C1.9396 14.9206 2.00188 14.7622 1.9707 14.667V14.54C1.90835 14.5714 1.87695 14.5395 1.87695 14.5078L1.75195 14.5713H1.6582V14.4766H1.59473C1.5007 14.5399 1.34394 14.6036 1.0625 14.667L1 14.5078C3.06741 10.8254 4.82176 6.98427 6.2627 2.98438C6.20014 2.95268 6.16904 2.85744 6.16895 2.79395C6.23158 2.79358 6.32511 2.66615 6.48145 2.44434L6.4502 2.34961C5.66738 2.60355 4.88443 3.04752 4.07031 3.65039L3.94434 3.68262C3.94434 3.61915 3.88207 3.5552 3.72559 3.52344C3.41233 3.71391 3.16174 3.96869 2.91113 4.22266L2.78516 4.03223L2.94238 3.96777L2.91113 3.80957L2.56641 4.0957L2.50391 4C2.75432 3.6828 2.97324 3.49186 3.22363 3.45996L3.38086 3.49219L3.25586 3.36523V3.30176C3.38055 3.30168 3.41199 3.26993 3.41211 3.23828L3.53711 3.26953H3.59961L3.53711 3.1748C4.28728 2.6363 4.6634 2.35045 4.66504 2.28613V2.25391H4.60254L4.47754 2.31738C4.47751 2.25394 4.44544 2.22266 4.38281 2.22266L4.22656 2.28613L4.19531 2.19043C4.82177 1.84125 5.35437 1.49176 5.82422 1.14258C7.51563 0.475987 8.92523 0.0952532 9.99023 0ZM8.95703 7.33301L8.64355 7.36523C7.32815 7.90481 6.32569 8.19034 5.73047 8.25391C4.32083 11.0793 3.56843 12.6035 3.53711 12.7939H3.59961C3.97551 12.7622 5.00976 12.2859 6.63867 11.3652C6.73297 11.3649 7.26552 11.0155 8.29883 10.3174L9.67676 9.20605V9.23828C9.98999 9.1113 10.2406 8.66661 10.4912 7.93652V7.74609C10.1467 7.42881 9.64586 7.30134 8.95703 7.33301ZM9.23828 1.58691C8.73755 1.68207 8.48764 1.77758 8.51855 1.96777L7.35938 4.57129C7.2341 4.63477 7.13991 4.95226 7.01465 5.52344C6.8267 5.8409 6.73235 6.09566 6.76367 6.28613V6.38086L6.9834 6.44434C8.36155 5.8095 9.14499 5.52393 9.36426 5.49219C9.99064 5.07956 10.3981 4.76223 10.5547 4.60352C10.5868 4.6023 10.7114 4.47468 10.8984 4.19043C11.0864 4.19043 11.4315 3.80969 11.9014 3.11133L11.9326 2.79395H12.0264C12.0576 2.88883 12.0891 2.95185 12.1514 2.95215C12.3078 2.73014 12.4021 2.54007 12.3711 2.41309C12.3711 2.19087 12.2145 2.00003 11.9639 1.87305H11.8389L11.8701 2.12695H11.7441C11.7128 1.68256 11.2433 1.4917 10.335 1.58691L9.42676 1.71387L9.39551 1.55566L9.23828 1.58691Z" fill="black"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" fill-rule="evenodd" d="M9.49.5q1.92.05 2.66.54 1.27.6 1.35 1.52v.23a4 4 0 0 1-.53 1.9l-1.38 1.24q-.74.38-.72.63c.77.82 1.33 1.29.85 2.42q-.47 1.1-2.04 2.28c-.5.32-1.88 1.35-2.96 1.86-1.64.77-3.1 1.4-4.65 1.89-.51.16-1.5.16-1.5.16L.5 15A76 76 0 0 0 5.76 3.49q-.1-.08-.1-.2.1 0 .32-.35l-.03-.09q-1.17.39-2.38 1.3l-.13.03q0-.1-.21-.16-.46.31-.82.7l-.13-.19.16-.06-.03-.16-.34.29L2 4.5q.36-.48.72-.54l.04-.1V3.8q.16 0 .15-.06l.13-.06a6 6 0 0 0 1.13-.9v-.03H4.1l-.12.07q0-.1-.1-.1l-.15.07-.04-.1q.93-.52 1.63-1.05Q7.89.65 9.5.5M8.46 7.83l-.32.04c-1.31.54-2.31.82-2.91.88a71 71 0 0 0-2.2 4.54h.07q.58-.04 3.04-1.42.13 0 1.66-1.05L9.18 9.7v.03q.45-.2.81-1.3v-.2q-.5-.46-1.53-.4m.28-5.75c-.5.1-.75.19-.72.38l-1.16 2.6q-.17.1-.34.95-.3.48-.25.77v.1l.22.05A15 15 0 0 1 8.86 6c1.1-.71 2.12-1.38 2.8-2.54q.24-.33.21-.54-.02-.33-.4-.54c-.54 0-1.07-.34-1.63-.28l-.94-.03z" clip-rule="evenodd"/>
3
3
  </svg>
package/svgs/bash-duo.svg CHANGED
@@ -1,6 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
-
3
- <path id="bg" opacity="0.2" d="M8 1C2.2355 1 1 2.2355 1 8C1 13.7645 2.2355 15 8 15C13.7645 15 15 13.7645 15 8C15 2.2355 13.7645 1 8 1Z" fill="#6C6C71" class="bg"/>
4
- <path id="fg" d="M8.5 11.5H11.5M6 5.5C5.17157 5.5 4.5 6.05964 4.5 6.75C4.5 7.44036 5.1 7.79904 6 8C6.9 8.20096 7.5 8.55964 7.5 9.25C7.5 9.94036 6.82843 10.5 6 10.5M6 5.5C6.82843 5.5 7.5 6.05964 7.5 6.75M6 5.5V4.5M6 10.5C5.17157 10.5 4.5 9.94036 4.5 9.25M6 10.5V11.5" stroke="#6C6C71" stroke-linecap="round" stroke-linejoin="round" class="fg"/>
5
-
6
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M8 1C2.24 1 1 2.24 1 8s1.24 7 7 7 7-1.24 7-7-1.24-7-7-7" class="bg" opacity=".2"/>
3
+ <path fill="currentColor" d="M11.5 11a.5.5 0 0 1 0 1h-3a.5.5 0 0 1 0-1zM7 6.75C7 6.42 6.64 6 6 6s-1 .42-1 .75q-.01.25.22.41.26.21.89.35.74.14 1.28.53c.37.29.61.7.61 1.21 0 .87-.68 1.5-1.5 1.7v.55a.5.5 0 0 1-1 0v-.56c-.82-.18-1.5-.82-1.5-1.69a.5.5 0 0 1 1 0c0 .33.36.75 1 .75s1-.42 1-.75q.01-.25-.22-.41a2 2 0 0 0-.89-.35q-.74-.14-1.28-.53A1.5 1.5 0 0 1 4 6.75c0-.87.68-1.5 1.5-1.7V4.5a.5.5 0 0 1 1 0v.56c.82.18 1.5.82 1.5 1.69a.5.5 0 0 1-1 0" class="fg-stroke"/>
4
+ </svg>
package/svgs/bash.svg CHANGED
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M8 1C13.7645 1 15 2.2355 15 8C15 13.7645 13.7645 15 8 15C2.2355 15 1 13.7645 1 8C1 2.2355 2.2355 1 8 1ZM6 4C5.72386 4 5.5 4.22386 5.5 4.5V5.05762C4.68427 5.24424 4 5.8765 4 6.75C4 7.26888 4.23772 7.67104 4.6084 7.95508C4.95587 8.22126 5.41384 8.38179 5.89062 8.48828C6.31372 8.58275 6.60576 8.70294 6.7832 8.83887C6.93735 8.95697 7 9.07865 7 9.25C7 9.58273 6.64151 10 6 10C5.35849 10 5 9.58273 5 9.25C5 8.97386 4.77614 8.75 4.5 8.75C4.22386 8.75 4 8.97386 4 9.25C4 10.1234 4.68436 10.7547 5.5 10.9414V11.5C5.5 11.7761 5.72386 12 6 12C6.27614 12 6.5 11.7761 6.5 11.5V10.9414C7.31564 10.7547 8 10.1234 8 9.25C8 8.73112 7.76228 8.32896 7.3916 8.04492C7.04413 7.77874 6.58616 7.61821 6.10938 7.51172C5.68628 7.41725 5.39424 7.29706 5.2168 7.16113C5.06265 7.04303 5 6.92135 5 6.75C5 6.41727 5.35849 6 6 6C6.64151 6 7 6.41727 7 6.75C7 7.02614 7.22386 7.25 7.5 7.25C7.77614 7.25 8 7.02614 8 6.75C8 5.8765 7.31573 5.24424 6.5 5.05762V4.5C6.5 4.22386 6.27614 4 6 4ZM8.5 11C8.22386 11 8 11.2239 8 11.5C8 11.7761 8.22386 12 8.5 12H11.5C11.7761 12 12 11.7761 12 11.5C12 11.2239 11.7761 11 11.5 11H8.5Z" fill="currentColor"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" fill-rule="evenodd" d="M8 1c5.77 0 7 1.24 7 7s-1.24 7-7 7-7-1.24-7-7 1.24-7 7-7M6 4a.5.5 0 0 0-.5.5v.56c-.82.18-1.5.82-1.5 1.69 0 .52.24.92.6 1.2q.55.39 1.3.54.61.14.88.35.23.17.22.41c0 .33-.36.75-1 .75s-1-.42-1-.75a.5.5 0 0 0-1 0c0 .87.68 1.5 1.5 1.7v.55a.5.5 0 0 0 1 0v-.56c.82-.18 1.5-.82 1.5-1.69 0-.52-.24-.92-.6-1.2a3 3 0 0 0-1.3-.54q-.61-.14-.88-.35Q4.99 7 5 6.75C5 6.42 5.36 6 6 6s1 .42 1 .75a.5.5 0 0 0 1 0c0-.87-.68-1.5-1.5-1.7V4.5A.5.5 0 0 0 6 4m2.5 7a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1z" clip-rule="evenodd"/>
3
3
  </svg>
package/svgs/biome.svg CHANGED
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M7.99992 2L4.88159 7.34565C6.06479 6.9846 7.3377 6.93109 8.57157 7.21914L9.62545 7.46535L8.63394 11.6267L7.57855 11.3805C6.76784 11.1912 5.92275 11.3788 5.26915 11.8902C4.94222 12.1461 4.68466 12.4674 4.50813 12.8279L3.53262 12.3608C3.77942 11.8563 4.14023 11.4063 4.59597 11.0492C5.50764 10.3349 6.69629 10.0726 7.82798 10.3369L8.32223 8.2629C6.55173 7.84978 4.68576 8.26117 3.25943 9.3786C1.8331 10.4959 1 12.1993 1 13.9996L15 14L7.99992 2Z" fill="black"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M8 2 4.88 7.35a7 7 0 0 1 3.7-.13l1.04.25-.99 4.16-1.05-.25a2.7 2.7 0 0 0-3.07 1.45l-.98-.47a4 4 0 0 1 1.07-1.31 3.8 3.8 0 0 1 3.23-.71l.5-2.08a6 6 0 0 0-5.07 1.12A5.9 5.9 0 0 0 1 14h14z"/>
3
3
  </svg>
@@ -1,6 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
-
3
- <path id="bg" opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M3.32325 1.5C2.41031 1.5 1.73478 2.31499 1.76502 3.19885C1.79403 4.048 1.75634 5.14774 1.48488 6.04461C1.21261 6.9441 0.752136 7.51388 0 7.58704V8.41296C0.752136 8.48612 1.21261 9.0559 1.48488 9.95539C1.75634 10.8523 1.79403 11.952 1.76502 12.8011C1.73478 13.6849 2.41031 14.5 3.32339 14.5H12.678C13.5909 14.5 14.2663 13.685 14.2361 12.8011C14.2071 11.952 14.2447 10.8523 14.5162 9.95539C14.7886 9.0559 15.2479 8.48612 16 8.41296V7.58704C15.2479 7.51388 14.7886 6.9441 14.5162 6.04461C14.2447 5.14788 14.2071 4.048 14.2361 3.19885C14.2663 2.31513 13.5909 1.5 12.678 1.5H3.32325Z" fill="black" class="bg"/>
4
- <path id="fg" fill-rule="evenodd" clip-rule="evenodd" d="M8.46652 4.54224C9.6979 4.54237 10.5056 5.22305 10.5056 6.26764C10.5056 7.00073 9.9626 7.65746 9.27009 7.77262V7.8107C10.2128 7.91642 10.8471 8.58272 10.8471 9.50264C10.8469 10.7193 9.95761 11.4576 8.48103 11.4577H5.96652C5.89474 11.4577 5.82538 11.4286 5.77455 11.3769C5.7237 11.3251 5.69531 11.2541 5.69531 11.1807V4.81922C5.69531 4.74587 5.7237 4.6749 5.77455 4.62302C5.82538 4.57134 5.89473 4.54224 5.96652 4.54224H8.46652ZM6.77232 10.5806H8.25893C9.23073 10.5806 9.74554 10.182 9.74554 9.43455C9.74528 8.68727 9.21612 8.30467 8.19643 8.30467H6.77232V10.5806ZM6.77232 5.41937V7.48524H7.97991C8.91312 7.48524 9.42833 7.10149 9.42857 6.41653C9.42857 5.77448 8.98571 5.41944 8.20647 5.41937H6.77232Z" fill="black" class="fg"/>
5
-
6
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" fill-rule="evenodd" d="M11.72 1.5A2.5 2.5 0 0 1 14.2 4q.02 1.08.3 2.09c.22.73.56 1.24 1.08 1.45.22.08.4.27.4.5s-.18.43-.4.51q-.76.34-1.08 1.45c-.2.65-.27 1.32-.3 2a2.5 2.5 0 0 1-2.48 2.5H4.25A2.6 2.6 0 0 1 1.7 12c-.04-.85-.1-1.68-.22-2.04C1.26 9.23.92 8.7.4 8.5.18 8.42 0 8.23 0 8s.18-.42.4-.5q.77-.35 1.09-1.46c.1-.36.17-1.19.2-2.04a2.6 2.6 0 0 1 2.56-2.5z" class="bg" clip-rule="evenodd" opacity=".2"/>
3
+ <path fill="currentColor" fill-rule="evenodd" d="M8.47 4.54c1.23 0 2.04.68 2.04 1.73 0 .73-.55 1.39-1.24 1.5v.04c.94.1 1.58.77 1.58 1.7 0 1.2-.9 1.95-2.37 1.95H5.97a.3.3 0 0 1-.2-.08.3.3 0 0 1-.08-.2V4.82a.3.3 0 0 1 .08-.2.3.3 0 0 1 .2-.08zm-1.7 6.04h1.49q1.47-.01 1.49-1.15Q9.74 8.31 8.2 8.3H6.77zm0-5.16v2.06h1.21c.93 0 1.45-.38 1.45-1.06 0-.65-.44-1-1.22-1z" class="fg" clip-rule="evenodd"/>
4
+ </svg>
@@ -1,3 +1,4 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path fill-rule="evenodd" clip-rule="evenodd" d="M3.32325 1.5C2.41031 1.5 1.73478 2.31499 1.76502 3.19885C1.79403 4.048 1.75634 5.14774 1.48488 6.04461C1.21261 6.9441 0.752136 7.51388 0 7.58704V8.41296C0.752136 8.48612 1.21261 9.0559 1.48488 9.95539C1.75634 10.8523 1.79403 11.952 1.76502 12.8011C1.73478 13.6849 2.41031 14.5 3.32339 14.5H12.678C13.5909 14.5 14.2663 13.685 14.2361 12.8011C14.2071 11.952 14.2447 10.8523 14.5162 9.95539C14.7886 9.0559 15.2479 8.48612 16 8.41296V7.58704C15.2479 7.51388 14.7886 6.9441 14.5162 6.04461C14.2447 5.14788 14.2071 4.048 14.2361 3.19885C14.2663 2.31513 13.5909 1.5 12.678 1.5H3.32312H3.32325ZM10.8475 9.50233C10.8475 10.7194 9.95742 11.4574 8.48041 11.4574H5.9661C5.89418 11.4574 5.8252 11.4283 5.77434 11.3764C5.72349 11.3246 5.69492 11.2542 5.69492 11.1809V4.81915C5.69492 4.74579 5.72349 4.67544 5.77434 4.62357C5.8252 4.57169 5.89418 4.54255 5.9661 4.54255H8.46603C9.69763 4.54255 10.5059 5.22298 10.5059 6.26768C10.5059 7.00094 9.96217 7.65744 9.26942 7.77236V7.81067C10.2125 7.91619 10.8475 8.58223 10.8475 9.50233ZM8.20624 5.41936H6.77261V7.4847H7.98007C8.91349 7.4847 9.4282 7.10134 9.4282 6.41607C9.4282 5.77396 8.98563 5.41936 8.20624 5.41936ZM6.77261 8.30426V10.5804H8.25898C9.23078 10.5804 9.74563 10.1826 9.74563 9.43512C9.74563 8.68748 9.21641 8.30412 8.19647 8.30412L6.77261 8.30426Z" fill="black"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M8.2 8.3q1.54 0 1.55 1.14-.02 1.13-1.5 1.14H6.78V8.3zm0-2.88c.79 0 1.23.35 1.23 1 0 .68-.52 1.06-1.45 1.06h-1.2V5.42z"/>
3
+ <path fill="currentColor" fill-rule="evenodd" d="M11.72 1.5A2.5 2.5 0 0 1 14.2 4q.02 1.08.3 2.09c.22.73.56 1.24 1.08 1.45.22.08.4.27.4.5s-.18.43-.4.51q-.76.34-1.08 1.45c-.2.65-.27 1.32-.3 2a2.5 2.5 0 0 1-2.48 2.5H4.25A2.6 2.6 0 0 1 1.7 12c-.04-.85-.1-1.68-.22-2.04C1.26 9.23.92 8.7.4 8.5.18 8.42 0 8.23 0 8s.18-.42.4-.5q.77-.35 1.09-1.46c.1-.36.17-1.19.2-2.04a2.6 2.6 0 0 1 2.56-2.5zM5.97 4.54a.3.3 0 0 0-.2.08.3.3 0 0 0-.07.2v6.36q0 .1.08.2.07.08.19.08h2.51c1.48 0 2.37-.74 2.37-1.96 0-.92-.64-1.58-1.58-1.69v-.04c.7-.11 1.24-.77 1.24-1.5 0-1.05-.81-1.73-2.04-1.73z" clip-rule="evenodd"/>
3
4
  </svg>
package/svgs/braces.svg CHANGED
@@ -1,4 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M2.75 4.75C2.75 3.23122 3.98122 2 5.5 2H6C6.41421 2 6.75 2.33579 6.75 2.75C6.75 3.16421 6.41421 3.5 6 3.5H5.5C4.80964 3.5 4.25 4.05964 4.25 4.75V6.2457C4.25 7.02704 3.73204 7.71371 2.98076 7.92837L2.73004 8L2.98076 8.07163C3.73204 8.28628 4.25 8.97296 4.25 9.7543V11.25C4.25 11.9404 4.80964 12.5 5.5 12.5H6C6.41421 12.5 6.75 12.8358 6.75 13.25C6.75 13.6642 6.41421 14 6 14H5.5C3.98122 14 2.75 12.7688 2.75 11.25V9.7543C2.75 9.64268 2.67601 9.54458 2.56868 9.51392L2.02472 9.3585C1.41818 9.1852 1 8.63082 1 8C1 7.36918 1.41818 6.8148 2.02472 6.6415L2.56868 6.48608C2.67601 6.45542 2.75 6.35732 2.75 6.2457V4.75Z" fill="currentColor"/>
3
- <path d="M9.25 2.75C9.25 2.33579 9.58579 2 10 2H10.5C12.0188 2 13.25 3.23122 13.25 4.75V6.2457C13.25 6.35732 13.324 6.45542 13.4313 6.48608L13.9753 6.6415C14.5818 6.8148 15 7.36918 15 8C15 8.63082 14.5818 9.1852 13.9753 9.3585L13.4313 9.51392C13.324 9.54458 13.25 9.64268 13.25 9.7543V11.25C13.25 12.7688 12.0188 14 10.5 14H10C9.58579 14 9.25 13.6642 9.25 13.25C9.25 12.8358 9.58579 12.5 10 12.5H10.5C11.1904 12.5 11.75 11.9404 11.75 11.25V9.7543C11.75 8.97296 12.268 8.28628 13.0192 8.07163L13.27 8L13.0192 7.92837C12.268 7.71371 11.75 7.02704 11.75 6.2457V4.75C11.75 4.05964 11.1904 3.5 10.5 3.5H10C9.58579 3.5 9.25 3.16421 9.25 2.75Z" fill="currentColor"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M13.25 11.5V9.75a.5.5 0 0 1 .36-.48l.55-.15a1.16 1.16 0 0 0 0-2.24l-.55-.15a.5.5 0 0 1-.36-.48V4.5a2.5 2.5 0 0 0-2.5-2.5h-.25a.5.5 0 0 0 0 1h.25a1.5 1.5 0 0 1 1.5 1.5v1.75a1.5 1.5 0 0 0 1.09 1.44l.54.15a.16.16 0 0 1 0 .32l-.54.15a1.5 1.5 0 0 0-1.09 1.44v1.75a1.5 1.5 0 0 1-1.5 1.5h-.25a.5.5 0 0 0 0 1h.25a2.5 2.5 0 0 0 2.5-2.5m-10.5 0V9.75a.5.5 0 0 0-.36-.48l-.55-.15a1.16 1.16 0 0 1 0-2.24l.55-.15a.5.5 0 0 0 .36-.48V4.5A2.5 2.5 0 0 1 5.25 2h.25a.5.5 0 0 1 0 1h-.25a1.5 1.5 0 0 0-1.5 1.5v1.75a1.5 1.5 0 0 1-1.09 1.44l-.54.15a.16.16 0 0 0 0 .32l.54.15a1.5 1.5 0 0 1 1.09 1.45v1.74a1.5 1.5 0 0 0 1.5 1.5h.25a.5.5 0 0 1 0 1h-.25a2.5 2.5 0 0 1-2.5-2.5"/>
4
3
  </svg>
@@ -1,9 +1,5 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
-
3
- <path id="bg" opacity="0.5" d="M8.88142 6.95626C8.88142 10.7782 12.5981 11.6607 14.5711 10.6991C14.3478 11.6059 13.5393 12.3728 12.2301 12.6284C12.2059 13.024 12.6524 13.9125 13.0506 14.2655C12.1456 14.6063 11.1078 14.1438 10.5346 13.7786C10.3174 14.0951 10.2209 15.0506 10.2209 15.647C9.53908 15.647 8.65215 14.655 8.4289 14.2777C8.11516 14.4603 7.5661 15.434 7.46353 16C7.12415 15.7884 6.84401 15.4928 6.64971 15.1413C6.45541 14.7898 6.3534 14.3941 6.35336 13.9916C5.96721 14.2655 4.8691 14.941 4.36228 15.1723C4.10886 14.5881 4.21144 13.8638 4.36228 13.1153C4.14507 13.2309 2.56427 13.3769 1.93074 13.2309C2.25052 12.8657 2.67891 12.0441 2.87198 11.6607C1.97395 11.5639 1.12613 11.1947 0.440451 10.6018C0.923137 10.3827 1.40582 10.0662 1.93074 9.53671C1.26102 9.17155 0.241343 8.63598 0 7.69874C0.621458 7.65614 1.38772 7.56485 1.78594 7.38227C1.27912 7.08406 0.440451 6.14682 0.609391 5.01483C1.03174 5.22176 1.91264 5.37999 2.34103 5.30087C1.96695 4.47318 1.71957 3.66984 2.08762 2.56219C2.51022 2.9944 3.01508 3.33597 3.57188 3.56638C3.48741 2.75086 3.86149 1.24762 4.36228 0.845949C4.57345 1.30848 5.09837 2.06314 5.44832 2.24572C5.53882 1.63712 6.32319 0.194751 7.01705 0C7.01705 0.499049 7.28856 1.39977 7.5118 1.67364C8.03069 1.1259 9.77439 0.231267 11.1561 0.541651C10.7277 0.992012 10.414 1.15025 10.2993 1.51541C11.3492 1.51541 13.0748 1.85622 14.5711 3.44466C12.2301 2.56219 8.88142 4.00456 8.88142 6.95626Z" fill="#6C6C71" class="bg"/>
4
-
5
- <path d="M11.2109 3.58496C11.3518 4.21463 11.6382 4.80216 12.0498 5.29785C12.4854 5.82233 13.0455 6.22786 13.6777 6.47559C13.9191 6.25649 14.294 6.09822 14.6318 6.29297C15.3916 6.7312 14.824 7.55271 14.2871 7.94824L14.2148 8.00879C12.8257 8.81549 11.307 9.36004 9.73242 9.62207C9.62539 9.48845 9.52636 9.34521 9.43652 9.19141C10.8304 9.01215 12.263 8.65903 13.5635 7.875C13.666 7.81414 13.7447 7.72308 13.793 7.63184C13.825 7.57269 13.8442 7.5075 13.8506 7.44043C13.857 7.3733 13.8504 7.30547 13.8301 7.24121C13.8098 7.17693 13.7761 7.11745 13.7324 7.06641C13.6887 7.01546 13.6352 6.97388 13.5752 6.94434C13.5247 6.92512 13.4745 6.90501 13.4248 6.88379C12.7351 6.60006 12.1263 6.14665 11.6543 5.56543C11.2358 5.05004 10.9364 4.44788 10.7764 3.80371C10.9168 3.72326 11.0619 3.65012 11.2109 3.58496Z" fill="#6C6C71"/>
6
- <path d="M10.3546 5.17676C10.2881 5.27915 10.2744 5.42438 10.3321 5.56055C10.4172 5.76114 10.6227 5.86537 10.7911 5.79297C10.9596 5.72035 11.0275 5.49779 10.9425 5.29688C10.9384 5.28727 10.9324 5.27868 10.9278 5.26953C11.0759 5.35495 11.1985 5.48725 11.2706 5.65723C11.4473 6.07451 11.2528 6.55872 10.836 6.73828C10.4193 6.9176 9.93846 6.72478 9.76179 6.30762C9.58508 5.89033 9.7796 5.40613 10.1964 5.22656C10.2483 5.2042 10.3013 5.18785 10.3546 5.17676Z" fill="#6C6C71"/>
7
-
8
-
9
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M8.88 6.96c0 3.82 3.72 4.7 5.7 3.74-.23.9-1.04 1.67-2.35 1.93-.02.4.42 1.28.82 1.63-.9.35-1.94-.12-2.51-.48a5 5 0 0 0-.32 1.87c-.68 0-1.57-1-1.8-1.37-.3.18-.85 1.15-.96 1.72a2.4 2.4 0 0 1-.81-.86 2.4 2.4 0 0 1-.3-1.15c-.38.27-1.48.95-1.99 1.18-.25-.58-.15-1.3 0-2.06-.21.12-1.8.27-2.43.12.32-.36.75-1.19.94-1.57A4.5 4.5 0 0 1 .44 10.6c.48-.22.97-.53 1.49-1.06C1.26 9.17.24 8.64 0 7.7a6 6 0 0 0 1.79-.32C1.28 7.08.44 6.15.6 5.01c.42.21 1.3.37 1.73.3a3.4 3.4 0 0 1-.25-2.75 5 5 0 0 0 1.48 1c-.08-.8.3-2.31.8-2.71.2.46.73 1.21 1.08 1.4.09-.61.87-2.06 1.57-2.25 0 .5.27 1.4.5 1.67.51-.54 2.25-1.44 3.64-1.13-.43.45-.75.61-.86.98 1.05 0 2.78.34 4.27 1.93-2.34-.89-5.69.56-5.69 3.5" class="bg" opacity=".5"/>
3
+ <path fill="currentColor" d="M11.21 3.59a4.1 4.1 0 0 0 2.47 2.89c.24-.22.61-.38.95-.19.76.44.2 1.26-.34 1.66l-.07.06a13 13 0 0 1-4.49 1.61l-.3-.43a10.5 10.5 0 0 0 4.13-1.31 1 1 0 0 0 .23-.25.5.5 0 0 0-.21-.69l-.15-.06a4.5 4.5 0 0 1-1.77-1.31 4.5 4.5 0 0 1-.88-1.77q.2-.12.43-.21"/>
4
+ <path fill="currentColor" d="M10.36 5.18a.4.4 0 0 0-.03.38c.09.2.3.3.46.23s.24-.3.15-.5l-.01-.02q.23.13.34.39a.83.83 0 0 1-.43 1.08.8.8 0 0 1-1.08-.43.83.83 0 0 1 .6-1.13"/>
5
+ </svg>
package/svgs/bun-duo.svg CHANGED
@@ -1,6 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
-
3
- <path id="bg" opacity="0.2" d="M8 14C11.8662 14 15 11.5434 15 8.51391C15 6.63543 13.8002 4.97615 11.9557 3.99205C11.2052 3.58717 10.6155 3.22374 10.1247 2.92164C9.2004 2.3515 8.63004 2 8 2C7.36002 2 6.63873 2.44463 5.68636 3.03123C5.14983 3.36892 4.60198 3.68937 4.04371 3.99205C2.19982 4.97615 1 6.63543 1 8.51391C1 11.5434 4.1338 14 8 14Z" fill="#6C6C71" class="bg"/>
4
- <path id="fg" d="M7.1827 3.87508C7.37731 3.44511 7.47638 2.98015 7.47344 2.51052C7.47344 2.42874 7.59102 2.40489 7.6074 2.49462C7.99116 4.07042 7.08091 4.85123 6.40759 5.11245C6.33505 5.1397 6.29117 5.0443 6.34733 4.99433C6.7049 4.68341 6.98974 4.30177 7.1827 3.87508ZM8.3831 3.81716C8.32775 3.3554 8.17223 2.91027 7.92681 2.51108V2.50257C7.88703 2.43272 7.97712 2.35322 8.03503 2.40489C9.17927 3.60024 8.79727 4.70756 8.35912 5.2652C8.31115 5.32312 8.22515 5.2635 8.24914 5.19365C8.39297 4.74906 8.43862 4.28003 8.3831 3.81716ZM9.41912 3.49973C9.18444 3.09767 8.86392 2.74897 8.47904 2.47701V2.46906C8.41352 2.42079 8.465 2.31347 8.54514 2.34527C10.0591 2.96083 10.1632 4.14595 9.97954 4.84101C9.97582 4.85744 9.96578 4.87186 9.95146 4.88133C9.93756 4.89085 9.92034 4.89465 9.90357 4.89188C9.8868 4.88911 9.87183 4.88001 9.86196 4.86656C9.85172 4.85298 9.84713 4.83615 9.84909 4.81943C9.80257 4.35515 9.65608 3.90554 9.41912 3.49973ZM6.45204 3.81716C6.09169 4.12607 5.70384 4.2476 5.24813 4.38331C5.18027 4.38331 5.13465 4.33902 5.15746 4.2811C6.17944 3.76605 6.5433 3.34697 6.90658 2.70756C6.90658 2.70756 6.99726 2.64112 7.01656 2.75583C7.01656 2.92789 6.81298 3.50824 6.45204 3.81716ZM9.33664 10.18C9.25377 10.5216 9.06244 10.8293 8.78967 11.0596C8.5877 11.2555 8.32336 11.3792 8.03971 11.4106C7.74767 11.384 7.47416 11.26 7.26577 11.0596C6.99562 10.8283 6.80682 10.5207 6.72582 10.18C6.72318 10.1598 6.72517 10.1394 6.73165 10.12C6.73812 10.1007 6.74891 10.083 6.76326 10.0682C6.77761 10.0537 6.79522 10.0426 6.8147 10.0358C6.83418 10.029 6.85501 10.0267 6.87558 10.029H9.18863C9.20907 10.0268 9.22975 10.0292 9.24905 10.0361C9.26834 10.043 9.28571 10.0542 9.29978 10.0687C9.31408 10.0834 9.32481 10.1011 9.33119 10.1203C9.33756 10.1396 9.33942 10.16 9.33664 10.18ZM6.15253 8.94777C5.94129 9.08799 5.6857 9.15101 5.43113 9.12564C5.17656 9.10028 4.93949 8.98816 4.76201 8.80921C4.58129 8.62722 4.46942 8.39115 4.44467 8.13952C4.41992 7.88789 4.48373 7.63554 4.6257 7.42363C4.7468 7.24305 4.91937 7.10279 5.12061 7.01989C5.32151 6.93682 5.5437 6.91503 5.75766 6.95742C5.97118 7.00001 6.16774 7.10506 6.32159 7.25839C6.47603 7.41171 6.58074 7.60819 6.62286 7.82057C6.66538 8.03367 6.64343 8.25417 6.55968 8.45543C6.47677 8.65467 6.33514 8.8263 6.15253 8.94777ZM11.108 8.95061C10.8964 9.08992 10.6408 9.15198 10.3866 9.12578C10.1324 9.09959 9.89595 8.98683 9.71922 8.80751C9.51339 8.5997 9.39885 8.32236 9.39981 8.03408C9.39981 7.81659 9.46416 7.60364 9.58643 7.42307C9.70752 7.24249 9.88009 7.10166 10.0819 7.01932C10.2831 6.93651 10.5055 6.91512 10.7196 6.95799C10.9337 7.00115 11.1302 7.1062 11.2841 7.26066C11.4379 7.41512 11.5415 7.61103 11.5836 7.82454C11.6252 8.03792 11.6022 8.25842 11.5175 8.45941C11.4339 8.65875 11.2914 8.82965 11.108 8.95061Z" fill="#6C6C71" class="fg"/>
5
-
6
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M8 14c3.87 0 7-2.46 7-5.49 0-1.88-1.2-3.53-3.04-4.52q-1.1-.61-1.84-1.07C9.2 2.35 8.64 2 8 2s-1.36.45-2.31 1.03A29 29 0 0 1 4.04 4C2.2 4.98 1 6.63 1 8.51 1 11.54 4.13 14 8 14" class="bg" opacity=".2"/>
3
+ <path fill="currentColor" d="M7.18 3.88q.3-.66.3-1.37c0-.08.11-.1.13-.01.38 1.57-.53 2.35-1.2 2.61-.08.03-.12-.07-.06-.12a3 3 0 0 0 .83-1.12m1.2-.05a3 3 0 0 0-.45-1.3V2.5c-.04-.07.05-.15.1-.1 1.15 1.2.77 2.3.33 2.87-.05.05-.13 0-.11-.08q.21-.67.13-1.37m1.04-.32a3 3 0 0 0-.94-1.02v-.01c-.06-.05-.01-.16.07-.12 1.51.61 1.61 1.8 1.43 2.5l-.03.03a.07.07 0 0 1-.1-.06 3 3 0 0 0-.43-1.32m-2.97.32c-.36.3-.74.43-1.2.56q-.11 0-.1-.1a3.5 3.5 0 0 0 1.76-1.57s.09-.07.1.04c0 .18-.2.76-.56 1.07m2.89 6.36a1.7 1.7 0 0 1-.55.88 1.3 1.3 0 0 1-.75.35 1.3 1.3 0 0 1-.77-.35 1.7 1.7 0 0 1-.54-.88.13.13 0 0 1 .15-.15h2.31a.1.1 0 0 1 .11.04.1.1 0 0 1 .04.1M6.15 8.96a1.1 1.1 0 0 1-1.39-.14A1.1 1.1 0 0 1 5.12 7a1.1 1.1 0 0 1 1.2.25 1.1 1.1 0 0 1-.17 1.69m4.96 0a1.1 1.1 0 0 1-1.4-.14 1.1 1.1 0 0 1 .37-1.8 1.1 1.1 0 0 1 1.2.25 1.1 1.1 0 0 1 .24 1.2 1 1 0 0 1-.41.5" class="fg"/>
4
+ </svg>
package/svgs/bun.svg CHANGED
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M8 14C11.8662 14 15 11.5434 15 8.51391C15 6.63543 13.8002 4.97615 11.9557 3.99205C11.2052 3.58717 10.6155 3.22374 10.1247 2.92164C9.2004 2.3515 8.63003 2 8 2C7.36002 2 6.63873 2.44463 5.68636 3.03123C5.14983 3.36892 4.60198 3.68937 4.04371 3.99205C2.19982 4.97615 1 6.63543 1 8.51391C1 11.5434 4.1338 14 8 14ZM7.18277 3.87507C7.37738 3.4451 7.47645 2.98014 7.47351 2.51051C7.47351 2.42873 7.59109 2.40488 7.60747 2.49461C7.99123 4.07041 7.08098 4.85122 6.40766 5.11244C6.33512 5.13969 6.29124 5.04429 6.3474 4.99432C6.70497 4.6834 6.98981 4.30176 7.18277 3.87507ZM8.38317 3.81715C8.32781 3.35539 8.1723 2.91026 7.92688 2.51107V2.50256C7.8871 2.43271 7.97719 2.35321 8.0351 2.40488C9.17934 3.60023 8.79734 4.70755 8.35918 5.26519C8.31121 5.32311 8.22522 5.26349 8.24921 5.19364C8.39304 4.74905 8.43869 4.28002 8.38317 3.81715ZM9.41919 3.49972C9.18451 3.09766 8.86399 2.74896 8.47911 2.477V2.46905C8.41359 2.42078 8.46507 2.31346 8.54521 2.34526C10.0592 2.96082 10.1633 4.14594 9.97961 4.841C9.97589 4.85743 9.96585 4.87185 9.95153 4.88132C9.93763 4.89084 9.92041 4.89464 9.90364 4.89187C9.88687 4.8891 9.8719 4.88 9.86203 4.86655C9.85179 4.85297 9.8472 4.83614 9.84916 4.81942C9.80264 4.35514 9.65615 3.90553 9.41919 3.49972ZM6.45211 3.81715C6.09176 4.12606 5.70391 4.24759 5.2482 4.3833C5.18034 4.3833 5.13471 4.33901 5.15753 4.28109C6.17951 3.76604 6.54337 3.34696 6.90665 2.70755C6.90665 2.70755 6.99733 2.64111 7.01663 2.75582C7.01663 2.92788 6.81305 3.50823 6.45211 3.81715ZM9.3367 10.18C9.25383 10.5216 9.0625 10.8293 8.78974 11.0596C8.58777 11.2555 8.32343 11.3792 8.03978 11.4106C7.74774 11.384 7.47422 11.26 7.26584 11.0596C6.99569 10.8283 6.80689 10.5207 6.72589 10.18C6.72325 10.1598 6.72524 10.1394 6.73172 10.12C6.73819 10.1007 6.74898 10.083 6.76333 10.0681C6.77768 10.0537 6.79529 10.0426 6.81477 10.0358C6.83425 10.029 6.85508 10.0267 6.87565 10.029H9.1887C9.20914 10.0267 9.22982 10.0292 9.24912 10.0361C9.26841 10.043 9.28578 10.0542 9.29985 10.0687C9.31415 10.0834 9.32488 10.1011 9.33126 10.1203C9.33763 10.1396 9.33949 10.16 9.3367 10.18ZM6.1526 8.94776C5.94136 9.08798 5.68577 9.151 5.4312 9.12563C5.17663 9.10027 4.93956 8.98815 4.76208 8.8092C4.58135 8.62721 4.46949 8.39114 4.44474 8.13951C4.41999 7.88788 4.4838 7.63553 4.62577 7.42362C4.74687 7.24304 4.91944 7.10278 5.12068 7.01988C5.32158 6.93681 5.54377 6.91502 5.75773 6.95741C5.97125 7 6.16781 7.10505 6.32166 7.25838C6.4761 7.4117 6.58081 7.60818 6.62293 7.82056C6.66544 8.03366 6.6435 8.25416 6.55975 8.45542C6.47684 8.65466 6.33521 8.82629 6.1526 8.94776ZM11.1081 8.9506C10.8965 9.08991 10.6409 9.15197 10.3867 9.12577C10.1325 9.09958 9.89602 8.98682 9.71929 8.8075C9.51346 8.59969 9.39892 8.32235 9.39988 8.03407C9.39988 7.81658 9.46423 7.60363 9.5865 7.42306C9.70759 7.24248 9.88016 7.10165 10.082 7.01931C10.2832 6.9365 10.5056 6.91511 10.7196 6.95798C10.9337 7.00114 11.1303 7.10619 11.2841 7.26065C11.438 7.41511 11.5415 7.61102 11.5837 7.82453C11.6252 8.03791 11.6023 8.25841 11.5175 8.4594C11.4339 8.65874 11.2915 8.82964 11.1081 8.9506Z" fill="black"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M8 14c3.87 0 7-2.46 7-5.49 0-1.88-1.2-3.53-3.04-4.52q-1.1-.61-1.84-1.07C9.2 2.35 8.64 2 8 2s-1.36.45-2.31 1.03A29 29 0 0 1 4.04 4C2.2 4.98 1 6.63 1 8.51 1 11.54 4.13 14 8 14M7.18 3.88q.3-.66.3-1.37c0-.08.11-.1.13-.01.38 1.57-.53 2.35-1.2 2.61-.08.03-.12-.07-.06-.12a3 3 0 0 0 .83-1.12m1.2-.05a3 3 0 0 0-.45-1.3V2.5c-.04-.07.05-.15.1-.1 1.15 1.2.77 2.3.33 2.87-.05.05-.13 0-.11-.08q.21-.67.13-1.37m1.04-.32a3 3 0 0 0-.94-1.02v-.01c-.06-.05-.01-.16.07-.12 1.51.61 1.61 1.8 1.43 2.5l-.03.03a.07.07 0 0 1-.1-.06 3 3 0 0 0-.43-1.32m-2.97.32c-.36.3-.74.43-1.2.56q-.11 0-.1-.1a3.5 3.5 0 0 0 1.76-1.57s.09-.07.1.04c0 .18-.2.76-.56 1.07m2.89 6.36q-.13.52-.55.88a1.3 1.3 0 0 1-.75.35 1.3 1.3 0 0 1-.77-.35 1.7 1.7 0 0 1-.54-.88.13.13 0 0 1 .15-.15h2.31a.14.14 0 0 1 .15.15M6.15 8.95a1.1 1.1 0 0 1-1.39-.14A1.1 1.1 0 0 1 5.12 7a1.1 1.1 0 0 1 1.2.25 1.1 1.1 0 0 1-.17 1.69m4.96 0a1.1 1.1 0 0 1-1.4-.14 1.1 1.1 0 0 1 .37-1.8 1.1 1.1 0 0 1 1.2.25 1.1 1.1 0 0 1 .24 1.2 1 1 0 0 1-.41.5"/>
3
3
  </svg>
package/svgs/claude.svg CHANGED
@@ -1,3 +1,3 @@
1
- <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M3.74675 10.31L6.50751 8.77L6.54955 8.63L6.50751 8.56H6.36737L5.9049 8.532L4.33534 8.49L2.96196 8.42L1.63063 8.35L1.29429 8.28L1 7.86L1.02803 7.65L1.30831 7.468L1.71471 7.496L2.5976 7.566L3.92893 7.65L4.8959 7.706L6.32533 7.874H6.54955L6.57758 7.776L6.50751 7.72L6.45145 7.664L5.06406 6.74L3.57858 5.76L2.79379 5.186L2.37337 4.906L2.16316 4.626L2.07908 4.038L2.45746 3.618L2.97598 3.66L3.1021 3.688L3.62062 4.094L4.74174 4.948L6.18518 6.04L6.3954 6.208L6.47948 6.152L6.49349 6.11L6.3954 5.956L5.62462 4.5L4.78378 3.044L4.40541 2.442L4.30731 2.078C4.26526 1.938 4.25125 1.798 4.25125 1.658L4.67167 1.07L4.92392 1L5.51251 1.084L5.73674 1.28L6.1011 2.12L6.67568 3.422L7.58659 5.186L7.86687 5.718L8.00701 6.194L8.04905 6.334H8.14715V6.264L8.21722 5.256L8.35736 4.038L8.4975 2.47L8.53954 2.022L8.76376 1.49L9.18418 1.21L9.54855 1.364L9.82883 1.77L9.78679 2.022L9.63263 3.1L9.26827 4.794L9.05806 5.942H9.18418L9.32432 5.788L9.8989 5.032L10.8659 3.828L11.2863 3.338L11.7908 2.82L12.1131 2.568H12.7157L13.1501 3.226L12.954 3.912L12.3373 4.696L11.8188 5.354L11.0761 6.348L10.6276 7.146L10.6697 7.202H10.7678L12.4494 6.838L13.3463 6.684L14.4114 6.502L14.9019 6.726L14.958 6.95L14.7618 7.426L13.6126 7.706L12.2673 7.986L10.2633 8.448L10.2352 8.462L10.2633 8.504L11.1602 8.588L11.5526 8.616H12.5055L14.2713 8.756L14.7337 9.036L15 9.414L14.958 9.694L14.2432 10.058L13.2903 9.834L11.048 9.302L10.2913 9.12H10.1792V9.176L10.8238 9.806L11.987 10.856L13.4725 12.214L13.5425 12.55L13.3604 12.83L13.1642 12.802L11.8749 11.822L11.3704 11.402L10.2492 10.45H10.1792V10.548L10.4314 10.926L11.8048 12.984L11.8749 13.614L11.7768 13.81L11.4124 13.95L11.034 13.866L10.2212 12.746L9.38038 11.486L8.72172 10.338L8.65165 10.394L8.24524 14.622L8.06306 14.832L7.64264 15L7.29229 14.72L7.0961 14.3L7.29229 13.432L7.51652 12.312L7.6987 11.416L7.86687 10.31L7.96496 9.946V9.918H7.86687L7.02603 11.08L5.76476 12.802L4.75576 13.866L4.51752 13.964L4.0971 13.754L4.13914 13.362L4.36336 13.04L5.76476 11.248L6.60561 10.142L7.16617 9.498L7.15215 9.428H7.11011L3.41041 11.836L2.75175 11.92L2.47147 11.64L2.4995 11.22L2.63964 11.08L3.76076 10.31H3.74675Z" fill="black"/>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M3.75 10.31 6.5 8.77l.04-.14-.04-.07h-.14l-.46-.03-1.57-.04-1.38-.07-1.33-.07-.34-.07L1 7.86l.03-.21.28-.18.4.03.89.07 1.33.08.97.06 1.43.16h.22l.03-.1-.07-.05-.06-.06-1.39-.92-1.48-.98-.79-.57-.42-.28-.2-.28-.1-.6.39-.41.52.04.12.03.52.4 1.12.86L6.2 6.04l.2.17.09-.06.01-.04-.1-.15-.76-1.46-.85-1.46-.37-.6-.1-.36a1 1 0 0 1-.06-.42l.42-.59.25-.07.6.08.22.2.36.84.58 1.3.9 1.77.29.53.14.47.04.14h.1v-.07l.07-1 .14-1.22.14-1.57.04-.45.23-.53.42-.28.36.15.28.41-.04.25-.16 1.08-.36 1.7-.21 1.14h.12l.14-.15.58-.76.97-1.2.42-.5.5-.51.32-.25h.6l.44.66-.2.68-.61.79-.52.65-.74 1-.45.8.04.05h.1l1.68-.36.9-.16 1.06-.18.5.23.05.22-.2.48-1.15.28-1.34.28-2 .46-.04.01.03.04.9.09.4.03h.94l1.77.14.46.28.27.37-.04.28-.72.37-.95-.23-2.24-.53-.76-.18h-.11v.06l.64.63L12 10.86l1.48 1.35.07.34-.18.28-.2-.03-1.29-.98-.5-.42-1.12-.95h-.07v.1l.25.38 1.37 2.05.07.63-.1.2-.36.14-.38-.08-.8-1.12-.85-1.26-.66-1.15-.07.05-.4 4.23-.19.21-.42.17-.35-.28-.2-.42.2-.87.23-1.12.18-.9.17-1.1.1-.36v-.03h-.1l-.84 1.16-1.27 1.72-1 1.07-.24.1-.42-.22.04-.39.22-.32 1.4-1.8.84-1.1.57-.64-.02-.07h-.04l-3.7 2.4-.66.09-.28-.28.03-.42.14-.14 1.12-.77z"/>
3
3
  </svg>
@@ -1,9 +1,4 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none">
2
-
3
- <path id="Subtract" opacity="0.2" fill-rule="evenodd" clip-rule="evenodd" d="M8 1C9.32665 1 10.4361 1.06835 11.347 1.26831C12.2653 1.46991 13.0235 1.81423 13.6046 2.39539C14.1858 2.97654 14.5301 3.73473 14.7317 4.65295C14.9316 5.56388 15 6.67335 15 8C15 9.32665 14.9316 10.4361 14.7317 11.347C14.5301 12.2653 14.1858 13.0235 13.6046 13.6046C13.0235 14.1858 12.2653 14.5301 11.347 14.7317C10.4361 14.9316 9.32665 15 8 15C6.67335 15 5.56388 14.9316 4.65295 14.7317C3.73473 14.5301 2.97654 14.1858 2.39539 13.6046C1.81423 13.0235 1.46991 12.2653 1.26831 11.347C1.06835 10.4361 1 9.32665 1 8C1 6.67335 1.06835 5.56388 1.26831 4.65295C1.46991 3.73473 1.81423 2.97654 2.39539 2.39539C2.97654 1.81423 3.73473 1.46991 4.65295 1.26831C5.56388 1.06835 6.67335 1 8 1Z" fill="#6C6C71" class="subtract"/>
4
-
5
- <path d="M6.18934 5.25198C6.46449 4.94243 6.93834 4.91441 7.24793 5.18948C7.55747 5.46463 7.5855 5.93848 7.31043 6.24807L5.75379 8.00002L7.31043 9.75198C7.58551 10.0616 7.55748 10.5354 7.24793 10.8106C6.93834 11.0856 6.46449 11.0576 6.18934 10.7481L4.18934 8.49807C3.93689 8.21394 3.93689 7.7861 4.18934 7.50198L6.18934 5.25198Z" fill="#6C6C71"/>
6
- <path d="M8.75184 5.18948C9.06142 4.91441 9.53528 4.94243 9.81043 5.25198L11.8104 7.50198C12.0629 7.7861 12.0629 8.21394 11.8104 8.49807L9.81043 10.7481C9.53527 11.0576 9.06142 11.0856 8.75184 10.8106C8.44229 10.5354 8.41426 10.0616 8.68934 9.75198L10.246 8.00002L8.68934 6.24807C8.41427 5.93848 8.44229 5.46463 8.75184 5.18948Z" fill="#6C6C71"/>
7
-
8
-
9
- </svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" fill-rule="evenodd" d="M8 1q1.99-.02 3.35.27c.91.2 1.67.54 2.26 1.13s.92 1.34 1.12 2.25Q15.01 6.01 15 8a13 13 0 0 1-.27 3.35c-.2.91-.54 1.67-1.12 2.26s-1.34.92-2.26 1.12Q9.99 15.01 8 15a13 13 0 0 1-3.35-.27 4.4 4.4 0 0 1-2.25-1.12 4.4 4.4 0 0 1-1.13-2.26Q.99 9.99 1 8c.01-1.99.07-2.44.27-3.35S1.8 2.98 2.4 2.4a4.4 4.4 0 0 1 2.25-1.13Q6.01.99 8 1" class="subtract" clip-rule="evenodd" opacity=".2"/>
3
+ <path fill="currentColor" d="M6.15 5.15a.5.5 0 1 1 .7.7L4.71 8l2.14 2.15a.5.5 0 1 1-.7.7l-2.5-2.5a.5.5 0 0 1 0-.7zm3 0a.5.5 0 0 1 .7 0l2.5 2.5a.5.5 0 0 1 0 .7l-2.5 2.5a.5.5 0 1 1-.7-.7L11.29 8 9.15 5.85a.5.5 0 0 1 0-.7" class="vector-stroke"/>
4
+ </svg>
package/svgs/code.svg ADDED
@@ -0,0 +1,3 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" d="M9.63 2.02a.5.5 0 0 1 .35.61l-3 11a.5.5 0 0 1-.96-.26l3-11a.5.5 0 0 1 .61-.35M4.15 4.65a.5.5 0 1 1 .7.7L2.21 8l2.64 2.65a.5.5 0 1 1-.7.7l-3-3a.5.5 0 0 1 0-.7zm7 0a.5.5 0 0 1 .7 0l3 3a.5.5 0 0 1 0 .7l-3 3a.5.5 0 1 1-.7-.7L13.79 8l-2.64-2.65a.5.5 0 0 1 0-.7"/>
3
+ </svg>
package/svgs/css.svg CHANGED
@@ -1 +1,3 @@
1
- <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16"><path fill="#7b43f8" fill-rule="evenodd" d="M8 0c6.588 0 8 1.412 8 8s-1.412 8-8 8-8-1.412-8-8V1a1 1 0 0 1 1-1zM4.053 5.23q-.461 0-.828.16a1.66 1.66 0 0 0-.625.473q-.255.313-.391.766a3.6 3.6 0 0 0-.137 1.035v.988q0 .582.13 1.036.132.449.382.757.254.31.617.473.363.16.824.16.606 0 1.028-.226.426-.228.652-.66.231-.438.258-1.067H4.92q-.019.422-.113.66a.6.6 0 0 1-.278.332 1.14 1.14 0 0 1-.504.094.9.9 0 0 1-.437-.094.7.7 0 0 1-.281-.289 1.6 1.6 0 0 1-.149-.488 4.4 4.4 0 0 1-.047-.688v-.996q0-.41.055-.703a1.4 1.4 0 0 1 .168-.48.7.7 0 0 1 .293-.282q.18-.09.426-.09.315 0 .5.106a.62.62 0 0 1 .27.352q.085.242.1.656h1.044q-.04-.637-.262-1.078a1.55 1.55 0 0 0-.633-.676q-.41-.23-1.02-.23m4.103.004q-.39 0-.715.114a1.6 1.6 0 0 0-.554.324 1.4 1.4 0 0 0-.364.5 1.6 1.6 0 0 0-.125.64q0 .36.13.63.132.27.363.468.23.2.523.352.293.148.621.281.278.113.453.223.176.106.27.214a.6.6 0 0 1 .125.243q.035.129.035.297a.9.9 0 0 1-.07.363.54.54 0 0 1-.223.246.8.8 0 0 1-.398.09q-.207 0-.372-.051a.7.7 0 0 1-.28-.168.7.7 0 0 1-.177-.305 1.6 1.6 0 0 1-.058-.453H6.297q0 .47.152.817.153.344.418.57t.61.34q.347.11.73.11.399 0 .723-.11a1.6 1.6 0 0 0 .558-.32q.23-.208.352-.497.12-.288.12-.64a1.9 1.9 0 0 0-.097-.633 1.4 1.4 0 0 0-.297-.496 2 2 0 0 0-.492-.399 4 4 0 0 0-.691-.328 5 5 0 0 1-.39-.168 2 2 0 0 1-.294-.187.8.8 0 0 1-.191-.215.55.55 0 0 1-.067-.27q0-.207.075-.367a.57.57 0 0 1 .23-.258.74.74 0 0 1 .399-.097q.257 0 .421.113.165.114.239.316.078.2.078.457h1.043q0-.495-.215-.89a1.6 1.6 0 0 0-.61-.625q-.394-.23-.945-.23m4.041 0q-.39 0-.715.114a1.6 1.6 0 0 0-.554.324 1.4 1.4 0 0 0-.364.5 1.6 1.6 0 0 0-.124.64q0 .36.128.63.133.269.364.468.23.2.523.352.292.148.621.281.277.113.453.223.176.106.27.214a.6.6 0 0 1 .125.243q.035.129.035.297a.9.9 0 0 1-.07.363.54.54 0 0 1-.223.246.8.8 0 0 1-.398.09q-.207 0-.372-.051a.7.7 0 0 1-.28-.168.7.7 0 0 1-.176-.305 1.6 1.6 0 0 1-.06-.453h-1.042q0 .47.152.817.153.344.418.57t.61.34q.347.11.73.11.399 0 .723-.11.328-.114.558-.32.23-.208.352-.497.12-.288.121-.64a1.9 1.9 0 0 0-.098-.633 1.4 1.4 0 0 0-.297-.496 2 2 0 0 0-.492-.399 4 4 0 0 0-.691-.328 5 5 0 0 1-.39-.168 2 2 0 0 1-.294-.187.8.8 0 0 1-.191-.215.55.55 0 0 1-.067-.27q0-.207.075-.367a.57.57 0 0 1 .23-.258.74.74 0 0 1 .398-.097q.258 0 .422.113a.64.64 0 0 1 .239.316q.078.2.078.457h1.043q0-.495-.215-.89a1.6 1.6 0 0 0-.61-.625q-.394-.23-.945-.23" clip-rule="evenodd"/></svg>
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="none" viewBox="0 0 16 16">
2
+ <path fill="currentColor" fill-rule="evenodd" d="M8 0c6.59 0 8 1.41 8 8s-1.41 8-8 8-8-1.41-8-8V1a1 1 0 0 1 1-1zM4.05 5.23q-.46 0-.82.16a2 2 0 0 0-.63.47q-.25.32-.4.77a4 4 0 0 0-.13 1.03v1q0 .57.13 1.03.13.45.38.76.26.3.62.47t.82.16q.61 0 1.03-.23t.66-.66.25-1.06H4.92q-.02.42-.11.65a.6.6 0 0 1-.28.34 1 1 0 0 1-.5.1 1 1 0 0 1-.44-.1 1 1 0 0 1-.28-.3 2 2 0 0 1-.15-.48 4 4 0 0 1-.05-.69v-1q0-.4.06-.7a1 1 0 0 1 .16-.48 1 1 0 0 1 .3-.28q.18-.09.42-.09.32 0 .5.1a.6.6 0 0 1 .27.36q.09.24.1.66h1.05q-.04-.64-.26-1.08a1.6 1.6 0 0 0-.64-.68q-.4-.23-1.02-.23m4.1 0q-.39 0-.71.12a2 2 0 0 0-.55.32 1.4 1.4 0 0 0-.37.5 2 2 0 0 0-.12.64q0 .36.13.63t.36.47.52.35.62.28q.28.12.46.23.17.1.27.21l.12.24q.04.13.04.3a1 1 0 0 1-.07.36.5.5 0 0 1-.23.25 1 1 0 0 1-.4.09q-.2 0-.37-.05a1 1 0 0 1-.28-.17 1 1 0 0 1-.17-.3 2 2 0 0 1-.06-.46H6.3q0 .47.15.82t.42.57.6.34.74.11.72-.11a2 2 0 0 0 .56-.32q.23-.2.35-.5.12-.28.12-.64a2 2 0 0 0-.1-.63 1.4 1.4 0 0 0-.3-.5 2 2 0 0 0-.49-.4 4 4 0 0 0-.69-.32L8 7.49l-.3-.19-.18-.21-.07-.27q0-.21.08-.37a.6.6 0 0 1 .23-.26 1 1 0 0 1 .4-.1q.25 0 .42.12t.24.31.07.46h1.05q0-.5-.22-.89a1.6 1.6 0 0 0-.6-.62q-.4-.23-.95-.23m4.04 0q-.4 0-.72.11a2 2 0 0 0-.55.32 1.4 1.4 0 0 0-.37.5 2 2 0 0 0-.12.64q0 .36.13.63t.36.47.53.35.62.29q.27.1.45.22.18.1.27.21l.12.25q.04.12.04.3a1 1 0 0 1-.07.36.5.5 0 0 1-.22.24 1 1 0 0 1-.4.1q-.2 0-.37-.06a1 1 0 0 1-.28-.17 1 1 0 0 1-.18-.3 2 2 0 0 1-.06-.46h-1.04q0 .47.15.82t.42.57.6.34.74.11.72-.1q.33-.12.56-.33.23-.2.35-.5.12-.28.12-.64a2 2 0 0 0-.1-.63 1.4 1.4 0 0 0-.3-.5 2 2 0 0 0-.49-.4 4 4 0 0 0-.69-.32l-.39-.17-.29-.19a1 1 0 0 1-.2-.21l-.06-.27q0-.2.08-.37a.6.6 0 0 1 .23-.26 1 1 0 0 1 .4-.1q.25 0 .42.12a.6.6 0 0 1 .24.32q.07.2.07.45h1.05q0-.5-.22-.89a1.6 1.6 0 0 0-.6-.62q-.4-.23-.95-.23" clip-rule="evenodd"/>
3
+ </svg>