@lgtm-hq/turbo-themes 0.20.49 → 0.22.0
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/adapters/tailwind/colors-CbRO_4mn.js +360 -0
- package/dist/adapters/tailwind/colors.js +2 -7
- package/dist/adapters/tailwind/preset.js +118 -119
- package/dist/tokens/style-dictionary/themes.json +1 -1
- package/dist/tokens/style-dictionary/tokens.json +1 -1
- package/package.json +26 -10
- package/packages/adapters/bulma/dist/index.js +131 -110
- package/packages/adapters/bulma/dist/index.js.map +1 -1
- package/packages/adapters/tailwind/dist/colors-CbRO_4mn.js +360 -0
- package/packages/adapters/tailwind/dist/colors-CbRO_4mn.js.map +1 -0
- package/packages/adapters/tailwind/dist/colors.js +2 -7
- package/packages/adapters/tailwind/dist/preset.js +118 -119
- package/packages/adapters/tailwind/dist/preset.js.map +1 -1
- package/packages/core/dist/themes/tokens.json +1 -1
- package/packages/css/dist/index.js +942 -279
- package/packages/css/dist/index.js.map +1 -1
- package/packages/theme-selector/dist/index.d.ts +8 -16
- package/packages/theme-selector/dist/index.js +963 -918
- package/packages/theme-selector/dist/index.js.map +1 -1
- package/dist/adapters/tailwind/colors-CeBOrOd1.js +0 -192
- package/packages/adapters/tailwind/dist/colors-CeBOrOd1.js +0 -192
- package/packages/adapters/tailwind/dist/colors-CeBOrOd1.js.map +0 -1
- package/packages/adapters/tailwind/dist/colors.js.map +0 -1
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
//#endregion
|
|
2
|
+
//#region ../../core/dist/tokens/index.js
|
|
3
|
+
/**
|
|
4
|
+
* Platform-agnostic design tokens export
|
|
5
|
+
*
|
|
6
|
+
* This module exports pure theme data (colors, typography, etc.) without
|
|
7
|
+
* any DOM, CSS, or platform-specific code. Use this for:
|
|
8
|
+
*
|
|
9
|
+
* - React Native apps
|
|
10
|
+
* - Flutter apps (via JSON export)
|
|
11
|
+
* - iOS/Android native apps
|
|
12
|
+
* - Any platform that needs theme colors
|
|
13
|
+
*
|
|
14
|
+
* For web apps, you can also import the CSS files directly:
|
|
15
|
+
* import '@lgtm-hq/turbo-themes/css/catppuccin-mocha.css'
|
|
16
|
+
*/
|
|
17
|
+
var tokens = {
|
|
18
|
+
$schema: "https://design-tokens.org/schema.json",
|
|
19
|
+
$description: "Turbo Themes - Flat tokens for 24 themes",
|
|
20
|
+
$version: "0.22.0",
|
|
21
|
+
$generated: "578ff006e2ad6a3b4ef5d5f663625b1da305529ea9c1cfb56de0967824ac09a3",
|
|
22
|
+
meta: {
|
|
23
|
+
"themeIds": [
|
|
24
|
+
"bulma-dark",
|
|
25
|
+
"bulma-light",
|
|
26
|
+
"catppuccin-frappe",
|
|
27
|
+
"catppuccin-latte",
|
|
28
|
+
"catppuccin-macchiato",
|
|
29
|
+
"catppuccin-mocha",
|
|
30
|
+
"dracula",
|
|
31
|
+
"github-dark",
|
|
32
|
+
"github-light",
|
|
33
|
+
"gruvbox-dark-hard",
|
|
34
|
+
"gruvbox-dark-soft",
|
|
35
|
+
"gruvbox-dark",
|
|
36
|
+
"gruvbox-light-hard",
|
|
37
|
+
"gruvbox-light-soft",
|
|
38
|
+
"gruvbox-light",
|
|
39
|
+
"nord",
|
|
40
|
+
"rose-pine-dawn",
|
|
41
|
+
"rose-pine-moon",
|
|
42
|
+
"rose-pine",
|
|
43
|
+
"solarized-dark",
|
|
44
|
+
"solarized-light",
|
|
45
|
+
"tokyo-night-dark",
|
|
46
|
+
"tokyo-night-light",
|
|
47
|
+
"tokyo-night-storm"
|
|
48
|
+
],
|
|
49
|
+
"totalThemes": 24
|
|
50
|
+
},
|
|
51
|
+
shared: {
|
|
52
|
+
"spacing": {
|
|
53
|
+
"xs": "0.25rem",
|
|
54
|
+
"sm": "0.5rem",
|
|
55
|
+
"md": "1rem",
|
|
56
|
+
"lg": "1.5rem",
|
|
57
|
+
"xl": "2rem"
|
|
58
|
+
},
|
|
59
|
+
"elevation": {
|
|
60
|
+
"none": "none",
|
|
61
|
+
"sm": "0 1px 2px 0 rgba(0, 0, 0, 0.05)",
|
|
62
|
+
"md": "0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)",
|
|
63
|
+
"lg": "0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)",
|
|
64
|
+
"xl": "0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)"
|
|
65
|
+
},
|
|
66
|
+
"animation": {
|
|
67
|
+
"durationFast": "150ms",
|
|
68
|
+
"durationNormal": "300ms",
|
|
69
|
+
"durationSlow": "500ms",
|
|
70
|
+
"easingDefault": "cubic-bezier(0.4, 0, 0.2, 1)",
|
|
71
|
+
"easingEmphasized": "cubic-bezier(0.05, 0.7, 0.1, 1)"
|
|
72
|
+
},
|
|
73
|
+
"opacity": {
|
|
74
|
+
"disabled": .5,
|
|
75
|
+
"hover": .8,
|
|
76
|
+
"pressed": .6
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
themes: /* @__PURE__ */ JSON.parse("{\"bulma-dark\":{\"id\":\"bulma-dark\",\"label\":\"Bulma Dark\",\"vendor\":\"bulma\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#141414\",\"surface\":\"#1f1f1f\",\"overlay\":\"#2b2b2b\"},\"text\":{\"primary\":\"#f5f5f5\",\"secondary\":\"#dbdbdb\",\"inverse\":\"#141414\"},\"brand\":{\"primary\":\"#00d1b2\"},\"state\":{\"info\":\"#3e8ed0\",\"success\":\"#48c78e\",\"warning\":\"#ffe08a\",\"danger\":\"#f14668\"},\"border\":{\"default\":\"#363636\"},\"accent\":{\"link\":\"#485fc7\"},\"typography\":{\"fonts\":{\"sans\":\"\\\"Nunito Sans\\\", BlinkMacSystemFont, -apple-system, \\\"Segoe UI\\\", Roboto, Oxygen, Ubuntu, Cantarell, \\\"Fira Sans\\\", \\\"Droid Sans\\\", \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif\",\"mono\":\"\\\"JetBrains Mono\\\", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#00d1b2\",\"h2\":\"#7289da\",\"h3\":\"#5dade2\",\"h4\":\"#58d68d\",\"h5\":\"#f7dc6f\",\"h6\":\"#f1948a\"},\"body\":{\"primary\":\"#dbdbdb\",\"secondary\":\"#b5b5b5\"},\"link\":{\"default\":\"#485fc7\"},\"selection\":{\"fg\":\"#f5f5f5\",\"bg\":\"#3273dc\"},\"blockquote\":{\"border\":\"#363636\",\"fg\":\"#dbdbdb\",\"bg\":\"#1f1f1f\"},\"codeInline\":{\"fg\":\"#f14668\",\"bg\":\"#2b2b2b\"},\"codeBlock\":{\"fg\":\"#f5f5f5\",\"bg\":\"#2b2b2b\"},\"table\":{\"border\":\"#404040\",\"stripe\":\"#1c1c1c\",\"theadBg\":\"#2d2d2d\",\"cellBg\":\"#1a1a1a\",\"headerFg\":\"#f5f5f5\"}},\"spacing\":{\"xs\":\"0.25rem\",\"sm\":\"0.5rem\",\"md\":\"1rem\",\"lg\":\"1.5rem\",\"xl\":\"2rem\"},\"elevation\":{\"none\":\"none\",\"sm\":\"0 1px 2px 0 rgba(0, 0, 0, 0.05)\",\"md\":\"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)\",\"lg\":\"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)\",\"xl\":\"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)\"},\"animation\":{\"durationFast\":\"150ms\",\"durationNormal\":\"300ms\",\"durationSlow\":\"500ms\",\"easingDefault\":\"cubic-bezier(0.4, 0, 0.2, 1)\",\"easingEmphasized\":\"cubic-bezier(0.05, 0.7, 0.1, 1)\"},\"opacity\":{\"disabled\":0.5,\"hover\":0.8,\"pressed\":0.6},\"components\":{\"card\":{\"bg\":\"#1c1c1c\",\"border\":\"#3a3a3a\",\"headerBg\":\"#252525\",\"footerBg\":\"#1f1f1f\"},\"message\":{\"bg\":\"#1f1f1f\",\"headerBg\":\"#2a2a2a\",\"border\":\"#404040\",\"bodyFg\":\"#e0e0e0\"},\"panel\":{\"bg\":\"#1c1c1c\",\"headerBg\":\"#2a2a2a\",\"headerFg\":\"#f5f5f5\",\"border\":\"#3a3a3a\",\"blockBg\":\"#1f1f1f\",\"blockHoverBg\":\"#262626\",\"blockActiveBg\":\"#2d3748\"},\"box\":{\"bg\":\"#1c1c1c\",\"border\":\"#3a3a3a\"},\"notification\":{\"bg\":\"#252525\",\"border\":\"#404040\"},\"modal\":{\"bg\":\"rgba(0, 0, 0, 0.86)\",\"cardBg\":\"#1c1c1c\",\"headerBg\":\"#252525\",\"footerBg\":\"#1f1f1f\"},\"dropdown\":{\"bg\":\"#1c1c1c\",\"itemHoverBg\":\"#2a2a2a\",\"border\":\"#404040\"},\"tabs\":{\"border\":\"#404040\",\"linkBg\":\"#252525\",\"linkActiveBg\":\"#1c1c1c\",\"linkHoverBg\":\"#2a2a2a\"}}}},\"bulma-light\":{\"id\":\"bulma-light\",\"label\":\"Bulma Light\",\"vendor\":\"bulma\",\"appearance\":\"light\",\"tokens\":{\"background\":{\"base\":\"#ffffff\",\"surface\":\"#f5f5f5\",\"overlay\":\"#eeeeee\"},\"text\":{\"primary\":\"#363636\",\"secondary\":\"#4a4a4a\",\"inverse\":\"#ffffff\"},\"brand\":{\"primary\":\"#00d1b2\"},\"state\":{\"info\":\"#3e8ed0\",\"success\":\"#48c78e\",\"warning\":\"#ffe08a\",\"danger\":\"#f14668\",\"successText\":\"#363636\",\"warningText\":\"#363636\"},\"border\":{\"default\":\"#dbdbdb\"},\"accent\":{\"link\":\"#485fc7\"},\"typography\":{\"fonts\":{\"sans\":\"\\\"Nunito Sans\\\", BlinkMacSystemFont, -apple-system, \\\"Segoe UI\\\", Roboto, Oxygen, Ubuntu, Cantarell, \\\"Fira Sans\\\", \\\"Droid Sans\\\", \\\"Helvetica Neue\\\", Helvetica, Arial, sans-serif\",\"mono\":\"\\\"JetBrains Mono\\\", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;1,6..12,400&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#00d1b2\",\"h2\":\"#485fc7\",\"h3\":\"#3e8ed0\",\"h4\":\"#48c78e\",\"h5\":\"#ffe08a\",\"h6\":\"#f14668\"},\"body\":{\"primary\":\"#4a4a4a\",\"secondary\":\"#6b6b6b\"},\"link\":{\"default\":\"#485fc7\"},\"selection\":{\"fg\":\"#363636\",\"bg\":\"#b5d5ff\"},\"blockquote\":{\"border\":\"#dbdbdb\",\"fg\":\"#4a4a4a\",\"bg\":\"#f5f5f5\"},\"codeInline\":{\"fg\":\"#f14668\",\"bg\":\"#f5f5f5\"},\"codeBlock\":{\"fg\":\"#363636\",\"bg\":\"#f5f5f5\"},\"table\":{\"border\":\"#dbdbdb\",\"stripe\":\"#fafafa\",\"theadBg\":\"#f0f0f0\",\"cellBg\":\"#ffffff\",\"headerFg\":\"#363636\"}},\"spacing\":{\"xs\":\"0.25rem\",\"sm\":\"0.5rem\",\"md\":\"1rem\",\"lg\":\"1.5rem\",\"xl\":\"2rem\"},\"elevation\":{\"none\":\"none\",\"sm\":\"0 1px 2px 0 rgba(0, 0, 0, 0.05)\",\"md\":\"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)\",\"lg\":\"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)\",\"xl\":\"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)\"},\"animation\":{\"durationFast\":\"150ms\",\"durationNormal\":\"300ms\",\"durationSlow\":\"500ms\",\"easingDefault\":\"cubic-bezier(0.4, 0, 0.2, 1)\",\"easingEmphasized\":\"cubic-bezier(0.05, 0.7, 0.1, 1)\"},\"opacity\":{\"disabled\":0.5,\"hover\":0.8,\"pressed\":0.6},\"components\":{\"card\":{\"bg\":\"#ffffff\",\"border\":\"#d5d5d5\",\"headerBg\":\"#f5f5f5\",\"footerBg\":\"#fafafa\"},\"message\":{\"bg\":\"#f8f9fa\",\"headerBg\":\"#eef1f4\",\"border\":\"#d5dbe1\",\"bodyFg\":\"#4a4a4a\"},\"panel\":{\"bg\":\"#ffffff\",\"headerBg\":\"#f0f0f0\",\"headerFg\":\"#363636\",\"border\":\"#d5d5d5\",\"blockBg\":\"#fafafa\",\"blockHoverBg\":\"#f5f5f5\",\"blockActiveBg\":\"#eef6fc\"},\"box\":{\"bg\":\"#ffffff\",\"border\":\"#e0e0e0\"},\"notification\":{\"bg\":\"#f5f5f5\",\"border\":\"#e0e0e0\"},\"modal\":{\"bg\":\"rgba(10, 10, 10, 0.86)\",\"cardBg\":\"#ffffff\",\"headerBg\":\"#f5f5f5\",\"footerBg\":\"#fafafa\"},\"dropdown\":{\"bg\":\"#ffffff\",\"itemHoverBg\":\"#f5f5f5\",\"border\":\"#dbdbdb\"},\"tabs\":{\"border\":\"#dbdbdb\",\"linkBg\":\"#f5f5f5\",\"linkActiveBg\":\"#ffffff\",\"linkHoverBg\":\"#eeeeee\"}}}},\"catppuccin-frappe\":{\"id\":\"catppuccin-frappe\",\"label\":\"Catppuccin Frappé\",\"vendor\":\"catppuccin\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#303446\",\"surface\":\"#292c3c\",\"overlay\":\"#232634\"},\"text\":{\"primary\":\"#c6d0f5\",\"secondary\":\"#a5adce\",\"inverse\":\"#303446\"},\"brand\":{\"primary\":\"#8caaee\"},\"state\":{\"info\":\"#99d1db\",\"success\":\"#a6d189\",\"warning\":\"#e5c890\",\"danger\":\"#e78284\"},\"border\":{\"default\":\"#737994\"},\"accent\":{\"link\":\"#8caaee\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#a6d189\",\"h2\":\"#8caaee\",\"h3\":\"#85c1dc\",\"h4\":\"#e5c890\",\"h5\":\"#ca9ee6\",\"h6\":\"#e78284\"},\"body\":{\"primary\":\"#c6d0f5\",\"secondary\":\"#a5adce\"},\"link\":{\"default\":\"#8caaee\"},\"selection\":{\"fg\":\"#c6d0f5\",\"bg\":\"#838ba7\"},\"blockquote\":{\"border\":\"#838ba7\",\"fg\":\"#c6d0f5\",\"bg\":\"#292c3c\"},\"codeInline\":{\"fg\":\"#c6d0f5\",\"bg\":\"#414559\"},\"codeBlock\":{\"fg\":\"#c6d0f5\",\"bg\":\"#414559\"},\"table\":{\"border\":\"#838ba7\",\"stripe\":\"#414559\",\"theadBg\":\"#51576d\"}}}},\"catppuccin-latte\":{\"id\":\"catppuccin-latte\",\"label\":\"Catppuccin Latte\",\"vendor\":\"catppuccin\",\"appearance\":\"light\",\"tokens\":{\"background\":{\"base\":\"#eff1f5\",\"surface\":\"#e6e9ef\",\"overlay\":\"#dce0e8\"},\"text\":{\"primary\":\"#4c4f69\",\"secondary\":\"#6c6f85\",\"inverse\":\"#eff1f5\"},\"brand\":{\"primary\":\"#1e66f5\"},\"state\":{\"info\":\"#04a5e5\",\"success\":\"#40a02b\",\"warning\":\"#df8e1d\",\"danger\":\"#d20f39\",\"infoText\":\"#000000\",\"successText\":\"#000000\",\"warningText\":\"#000000\"},\"border\":{\"default\":\"#9ca0b0\"},\"accent\":{\"link\":\"#1e66f5\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#40a02b\",\"h2\":\"#1e66f5\",\"h3\":\"#209fb5\",\"h4\":\"#df8e1d\",\"h5\":\"#8839ef\",\"h6\":\"#d20f39\"},\"body\":{\"primary\":\"#4c4f69\",\"secondary\":\"#6c6f85\"},\"link\":{\"default\":\"#1e66f5\"},\"selection\":{\"fg\":\"#4c4f69\",\"bg\":\"#8c8fa1\"},\"blockquote\":{\"border\":\"#8c8fa1\",\"fg\":\"#4c4f69\",\"bg\":\"#e6e9ef\"},\"codeInline\":{\"fg\":\"#4c4f69\",\"bg\":\"#ccd0da\"},\"codeBlock\":{\"fg\":\"#4c4f69\",\"bg\":\"#ccd0da\"},\"table\":{\"border\":\"#8c8fa1\",\"stripe\":\"#ccd0da\",\"theadBg\":\"#bcc0cc\"}}}},\"catppuccin-macchiato\":{\"id\":\"catppuccin-macchiato\",\"label\":\"Catppuccin Macchiato\",\"vendor\":\"catppuccin\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#24273a\",\"surface\":\"#1e2030\",\"overlay\":\"#181926\"},\"text\":{\"primary\":\"#cad3f5\",\"secondary\":\"#a5adcb\",\"inverse\":\"#24273a\"},\"brand\":{\"primary\":\"#8aadf4\"},\"state\":{\"info\":\"#91d7e3\",\"success\":\"#a6da95\",\"warning\":\"#eed49f\",\"danger\":\"#ed8796\"},\"border\":{\"default\":\"#6e738d\"},\"accent\":{\"link\":\"#8aadf4\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#a6da95\",\"h2\":\"#8aadf4\",\"h3\":\"#7dc4e4\",\"h4\":\"#eed49f\",\"h5\":\"#c6a0f6\",\"h6\":\"#ed8796\"},\"body\":{\"primary\":\"#cad3f5\",\"secondary\":\"#a5adcb\"},\"link\":{\"default\":\"#8aadf4\"},\"selection\":{\"fg\":\"#cad3f5\",\"bg\":\"#8087a2\"},\"blockquote\":{\"border\":\"#8087a2\",\"fg\":\"#cad3f5\",\"bg\":\"#1e2030\"},\"codeInline\":{\"fg\":\"#cad3f5\",\"bg\":\"#363a4f\"},\"codeBlock\":{\"fg\":\"#cad3f5\",\"bg\":\"#363a4f\"},\"table\":{\"border\":\"#8087a2\",\"stripe\":\"#363a4f\",\"theadBg\":\"#494d64\"}}}},\"catppuccin-mocha\":{\"id\":\"catppuccin-mocha\",\"label\":\"Catppuccin Mocha\",\"vendor\":\"catppuccin\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#1e1e2e\",\"surface\":\"#181825\",\"overlay\":\"#11111b\"},\"text\":{\"primary\":\"#cdd6f4\",\"secondary\":\"#a6adc8\",\"inverse\":\"#1e1e2e\"},\"brand\":{\"primary\":\"#89b4fa\"},\"state\":{\"info\":\"#89dceb\",\"success\":\"#a6e3a1\",\"warning\":\"#f9e2af\",\"danger\":\"#f38ba8\"},\"border\":{\"default\":\"#6c7086\"},\"accent\":{\"link\":\"#89b4fa\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#a6e3a1\",\"h2\":\"#89b4fa\",\"h3\":\"#74c7ec\",\"h4\":\"#f9e2af\",\"h5\":\"#cba6f7\",\"h6\":\"#f38ba8\"},\"body\":{\"primary\":\"#cdd6f4\",\"secondary\":\"#a6adc8\"},\"link\":{\"default\":\"#89b4fa\"},\"selection\":{\"fg\":\"#cdd6f4\",\"bg\":\"#7f849c\"},\"blockquote\":{\"border\":\"#7f849c\",\"fg\":\"#cdd6f4\",\"bg\":\"#181825\"},\"codeInline\":{\"fg\":\"#cdd6f4\",\"bg\":\"#313244\"},\"codeBlock\":{\"fg\":\"#cdd6f4\",\"bg\":\"#313244\"},\"table\":{\"border\":\"#7f849c\",\"stripe\":\"#313244\",\"theadBg\":\"#45475a\"}}}},\"dracula\":{\"id\":\"dracula\",\"label\":\"Dracula\",\"vendor\":\"dracula\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#282a36\",\"surface\":\"#21222c\",\"overlay\":\"#44475a\"},\"text\":{\"primary\":\"#f8f8f2\",\"secondary\":\"#6272a4\",\"inverse\":\"#282a36\"},\"brand\":{\"primary\":\"#bd93f9\"},\"state\":{\"info\":\"#8be9fd\",\"success\":\"#50fa7b\",\"warning\":\"#f1fa8c\",\"danger\":\"#ff5555\"},\"border\":{\"default\":\"#44475a\"},\"accent\":{\"link\":\"#8be9fd\"},\"typography\":{\"fonts\":{\"sans\":\"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, \\\"Segoe UI\\\", Roboto, \\\"Helvetica Neue\\\", Arial, sans-serif\",\"mono\":\"\\\"Fira Code\\\", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#ff79c6\",\"h2\":\"#bd93f9\",\"h3\":\"#8be9fd\",\"h4\":\"#50fa7b\",\"h5\":\"#ffb86c\",\"h6\":\"#f1fa8c\"},\"body\":{\"primary\":\"#f8f8f2\",\"secondary\":\"#6272a4\"},\"link\":{\"default\":\"#8be9fd\"},\"selection\":{\"fg\":\"#f8f8f2\",\"bg\":\"#44475a\"},\"blockquote\":{\"border\":\"#bd93f9\",\"fg\":\"#6272a4\",\"bg\":\"#21222c\"},\"codeInline\":{\"fg\":\"#50fa7b\",\"bg\":\"#21222c\"},\"codeBlock\":{\"fg\":\"#f8f8f2\",\"bg\":\"#21222c\"},\"table\":{\"border\":\"#44475a\",\"stripe\":\"#21222c\",\"theadBg\":\"#44475a\",\"cellBg\":\"#282a36\",\"headerFg\":\"#f8f8f2\"}},\"spacing\":{\"xs\":\"0.25rem\",\"sm\":\"0.5rem\",\"md\":\"1rem\",\"lg\":\"1.5rem\",\"xl\":\"2rem\"},\"elevation\":{\"none\":\"none\",\"sm\":\"0 1px 2px 0 rgba(0, 0, 0, 0.05)\",\"md\":\"0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)\",\"lg\":\"0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)\",\"xl\":\"0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)\"},\"animation\":{\"durationFast\":\"150ms\",\"durationNormal\":\"300ms\",\"durationSlow\":\"500ms\",\"easingDefault\":\"cubic-bezier(0.4, 0, 0.2, 1)\",\"easingEmphasized\":\"cubic-bezier(0.05, 0.7, 0.1, 1)\"},\"opacity\":{\"disabled\":0.5,\"hover\":0.8,\"pressed\":0.6},\"components\":{\"card\":{\"bg\":\"#21222c\",\"border\":\"#6272a4\",\"headerBg\":\"#282a36\",\"footerBg\":\"#21222c\"},\"message\":{\"bg\":\"#282a36\",\"headerBg\":\"#44475a\",\"border\":\"#6272a4\",\"bodyFg\":\"#f8f8f2\"},\"panel\":{\"bg\":\"#21222c\",\"headerBg\":\"#44475a\",\"headerFg\":\"#f8f8f2\",\"border\":\"#6272a4\",\"blockBg\":\"#282a36\",\"blockHoverBg\":\"#2e303e\",\"blockActiveBg\":\"#44475a\"},\"box\":{\"bg\":\"#21222c\",\"border\":\"#6272a4\"},\"notification\":{\"bg\":\"#282a36\",\"border\":\"#6272a4\"},\"modal\":{\"bg\":\"rgba(40, 42, 54, 0.9)\",\"cardBg\":\"#21222c\",\"headerBg\":\"#282a36\",\"footerBg\":\"#21222c\"},\"dropdown\":{\"bg\":\"#21222c\",\"itemHoverBg\":\"#2e303e\",\"border\":\"#6272a4\"},\"tabs\":{\"border\":\"#6272a4\",\"linkBg\":\"#2e303e\",\"linkActiveBg\":\"#21222c\",\"linkHoverBg\":\"#44475a\"}}}},\"github-dark\":{\"id\":\"github-dark\",\"label\":\"GitHub Dark\",\"vendor\":\"github\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#0d1117\",\"surface\":\"#151b23\",\"overlay\":\"#010409\"},\"text\":{\"primary\":\"#f0f6fc\",\"secondary\":\"#9198a1\",\"inverse\":\"#ffffff\"},\"brand\":{\"primary\":\"#1f6feb\"},\"state\":{\"info\":\"#4493f8\",\"success\":\"#3fb950\",\"warning\":\"#d29922\",\"danger\":\"#f85149\",\"successText\":\"#000000\",\"warningText\":\"#000000\"},\"border\":{\"default\":\"#3d444d\"},\"accent\":{\"link\":\"#4493f8\"},\"typography\":{\"fonts\":{\"sans\":\"\\\"Mona Sans\\\", -apple-system, BlinkMacSystemFont, \\\"Segoe UI\\\", \\\"Noto Sans\\\", Helvetica, Arial, sans-serif, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"\\\"Hubot Sans\\\", ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, \\\"Liberation Mono\\\", monospace\"},\"webFonts\":[\"https://github.githubassets.com/assets/mona-sans-webfont.woff2\",\"https://github.githubassets.com/assets/hubot-sans-webfont.woff2\"]},\"content\":{\"heading\":{\"h1\":\"#3fb950\",\"h2\":\"#4493f8\",\"h3\":\"#1f6feb\",\"h4\":\"#d29922\",\"h5\":\"#3fb950\",\"h6\":\"#f85149\"},\"body\":{\"primary\":\"#f0f6fc\",\"secondary\":\"#9198a1\"},\"link\":{\"default\":\"#4493f8\"},\"selection\":{\"fg\":\"#f0f6fc\",\"bg\":\"#264f78\"},\"blockquote\":{\"border\":\"#3d444d\",\"fg\":\"#9198a1\",\"bg\":\"#151b23\"},\"codeInline\":{\"fg\":\"#f0f6fc\",\"bg\":\"#151b23\"},\"codeBlock\":{\"fg\":\"#f0f6fc\",\"bg\":\"#151b23\"},\"table\":{\"border\":\"#3d444d\",\"stripe\":\"#151b23\",\"theadBg\":\"#151b23\"}}}},\"github-light\":{\"id\":\"github-light\",\"label\":\"GitHub Light\",\"vendor\":\"github\",\"appearance\":\"light\",\"tokens\":{\"background\":{\"base\":\"#ffffff\",\"surface\":\"#f6f8fa\",\"overlay\":\"#f6f8fa\"},\"text\":{\"primary\":\"#1f2328\",\"secondary\":\"#59636e\",\"inverse\":\"#ffffff\"},\"brand\":{\"primary\":\"#0969da\"},\"state\":{\"info\":\"#0969da\",\"success\":\"#1a7f37\",\"warning\":\"#9a6700\",\"danger\":\"#d1242f\"},\"border\":{\"default\":\"#d1d9e0\"},\"accent\":{\"link\":\"#0969da\"},\"typography\":{\"fonts\":{\"sans\":\"\\\"Mona Sans\\\", -apple-system, BlinkMacSystemFont, \\\"Segoe UI\\\", \\\"Noto Sans\\\", Helvetica, Arial, sans-serif, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"\\\"Hubot Sans\\\", ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, \\\"Liberation Mono\\\", monospace\"},\"webFonts\":[\"https://github.githubassets.com/assets/mona-sans-webfont.woff2\",\"https://github.githubassets.com/assets/hubot-sans-webfont.woff2\"]},\"content\":{\"heading\":{\"h1\":\"#1a7f37\",\"h2\":\"#0969da\",\"h3\":\"#0969da\",\"h4\":\"#9a6700\",\"h5\":\"#1a7f37\",\"h6\":\"#d1242f\"},\"body\":{\"primary\":\"#1f2328\",\"secondary\":\"#59636e\"},\"link\":{\"default\":\"#0969da\"},\"selection\":{\"fg\":\"#1f2328\",\"bg\":\"#b6e3ff\"},\"blockquote\":{\"border\":\"#d1d9e0\",\"fg\":\"#59636e\",\"bg\":\"#f6f8fa\"},\"codeInline\":{\"fg\":\"#1f2328\",\"bg\":\"#f6f8fa\"},\"codeBlock\":{\"fg\":\"#1f2328\",\"bg\":\"#f6f8fa\"},\"table\":{\"border\":\"#d1d9e0\",\"stripe\":\"#f6f8fa\",\"theadBg\":\"#f6f8fa\"}}}},\"gruvbox-dark-hard\":{\"id\":\"gruvbox-dark-hard\",\"label\":\"Gruvbox Dark Hard\",\"vendor\":\"gruvbox\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#1d2021\",\"surface\":\"#282828\",\"overlay\":\"#3c3836\"},\"text\":{\"primary\":\"#ebdbb2\",\"secondary\":\"#d5c4a1\",\"inverse\":\"#1d2021\"},\"brand\":{\"primary\":\"#d79921\"},\"state\":{\"info\":\"#83a598\",\"success\":\"#b8bb26\",\"warning\":\"#fabd2f\",\"danger\":\"#fb4934\"},\"border\":{\"default\":\"#665c54\"},\"accent\":{\"link\":\"#83a598\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#b8bb26\",\"h2\":\"#83a598\",\"h3\":\"#8ec07c\",\"h4\":\"#fabd2f\",\"h5\":\"#d3869b\",\"h6\":\"#fb4934\"},\"body\":{\"primary\":\"#ebdbb2\",\"secondary\":\"#d5c4a1\"},\"link\":{\"default\":\"#83a598\"},\"selection\":{\"fg\":\"#ebdbb2\",\"bg\":\"#3c3836\"},\"blockquote\":{\"border\":\"#665c54\",\"fg\":\"#d5c4a1\",\"bg\":\"#282828\"},\"codeInline\":{\"fg\":\"#fe8019\",\"bg\":\"#3c3836\"},\"codeBlock\":{\"fg\":\"#ebdbb2\",\"bg\":\"#282828\"},\"table\":{\"border\":\"#665c54\",\"stripe\":\"#3c3836\",\"theadBg\":\"#282828\"}},\"components\":{\"card\":{\"bg\":\"#282828\",\"border\":\"#665c54\",\"headerBg\":\"#1d2021\",\"footerBg\":\"#282828\"},\"message\":{\"bg\":\"#1d2021\",\"headerBg\":\"#282828\",\"border\":\"#665c54\",\"bodyFg\":\"#ebdbb2\"},\"panel\":{\"bg\":\"#282828\",\"headerBg\":\"#1d2021\",\"headerFg\":\"#ebdbb2\",\"border\":\"#665c54\",\"blockBg\":\"#1d2021\",\"blockHoverBg\":\"#282828\",\"blockActiveBg\":\"#3c3836\"},\"box\":{\"bg\":\"#282828\",\"border\":\"#665c54\"},\"notification\":{\"bg\":\"#1d2021\",\"border\":\"#665c54\"},\"modal\":{\"bg\":\"rgba(29, 32, 33, 0.9)\",\"cardBg\":\"#282828\",\"headerBg\":\"#1d2021\",\"footerBg\":\"#282828\"},\"dropdown\":{\"bg\":\"#282828\",\"itemHoverBg\":\"#3c3836\",\"border\":\"#665c54\"},\"tabs\":{\"border\":\"#665c54\",\"linkBg\":\"#282828\",\"linkActiveBg\":\"#1d2021\",\"linkHoverBg\":\"#3c3836\"}}}},\"gruvbox-dark-soft\":{\"id\":\"gruvbox-dark-soft\",\"label\":\"Gruvbox Dark Soft\",\"vendor\":\"gruvbox\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#32302f\",\"surface\":\"#3c3836\",\"overlay\":\"#504945\"},\"text\":{\"primary\":\"#ebdbb2\",\"secondary\":\"#d5c4a1\",\"inverse\":\"#32302f\"},\"brand\":{\"primary\":\"#d79921\"},\"state\":{\"info\":\"#83a598\",\"success\":\"#b8bb26\",\"warning\":\"#fabd2f\",\"danger\":\"#fb4934\"},\"border\":{\"default\":\"#665c54\"},\"accent\":{\"link\":\"#83a598\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#b8bb26\",\"h2\":\"#83a598\",\"h3\":\"#8ec07c\",\"h4\":\"#fabd2f\",\"h5\":\"#d3869b\",\"h6\":\"#fb4934\"},\"body\":{\"primary\":\"#ebdbb2\",\"secondary\":\"#d5c4a1\"},\"link\":{\"default\":\"#83a598\"},\"selection\":{\"fg\":\"#ebdbb2\",\"bg\":\"#504945\"},\"blockquote\":{\"border\":\"#665c54\",\"fg\":\"#d5c4a1\",\"bg\":\"#3c3836\"},\"codeInline\":{\"fg\":\"#fe8019\",\"bg\":\"#504945\"},\"codeBlock\":{\"fg\":\"#ebdbb2\",\"bg\":\"#3c3836\"},\"table\":{\"border\":\"#665c54\",\"stripe\":\"#504945\",\"theadBg\":\"#3c3836\"}},\"components\":{\"card\":{\"bg\":\"#3c3836\",\"border\":\"#665c54\",\"headerBg\":\"#32302f\",\"footerBg\":\"#3c3836\"},\"message\":{\"bg\":\"#32302f\",\"headerBg\":\"#3c3836\",\"border\":\"#665c54\",\"bodyFg\":\"#ebdbb2\"},\"panel\":{\"bg\":\"#3c3836\",\"headerBg\":\"#32302f\",\"headerFg\":\"#ebdbb2\",\"border\":\"#665c54\",\"blockBg\":\"#32302f\",\"blockHoverBg\":\"#3c3836\",\"blockActiveBg\":\"#504945\"},\"box\":{\"bg\":\"#3c3836\",\"border\":\"#665c54\"},\"notification\":{\"bg\":\"#32302f\",\"border\":\"#665c54\"},\"modal\":{\"bg\":\"rgba(50, 48, 47, 0.9)\",\"cardBg\":\"#3c3836\",\"headerBg\":\"#32302f\",\"footerBg\":\"#3c3836\"},\"dropdown\":{\"bg\":\"#3c3836\",\"itemHoverBg\":\"#504945\",\"border\":\"#665c54\"},\"tabs\":{\"border\":\"#665c54\",\"linkBg\":\"#3c3836\",\"linkActiveBg\":\"#32302f\",\"linkHoverBg\":\"#504945\"}}}},\"gruvbox-dark\":{\"id\":\"gruvbox-dark\",\"label\":\"Gruvbox Dark\",\"vendor\":\"gruvbox\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#282828\",\"surface\":\"#3c3836\",\"overlay\":\"#504945\"},\"text\":{\"primary\":\"#ebdbb2\",\"secondary\":\"#d5c4a1\",\"inverse\":\"#282828\"},\"brand\":{\"primary\":\"#d79921\"},\"state\":{\"info\":\"#83a598\",\"success\":\"#b8bb26\",\"warning\":\"#fabd2f\",\"danger\":\"#fb4934\"},\"border\":{\"default\":\"#665c54\"},\"accent\":{\"link\":\"#83a598\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#b8bb26\",\"h2\":\"#83a598\",\"h3\":\"#8ec07c\",\"h4\":\"#fabd2f\",\"h5\":\"#d3869b\",\"h6\":\"#fb4934\"},\"body\":{\"primary\":\"#ebdbb2\",\"secondary\":\"#d5c4a1\"},\"link\":{\"default\":\"#83a598\"},\"selection\":{\"fg\":\"#ebdbb2\",\"bg\":\"#504945\"},\"blockquote\":{\"border\":\"#665c54\",\"fg\":\"#d5c4a1\",\"bg\":\"#3c3836\"},\"codeInline\":{\"fg\":\"#fe8019\",\"bg\":\"#504945\"},\"codeBlock\":{\"fg\":\"#ebdbb2\",\"bg\":\"#3c3836\"},\"table\":{\"border\":\"#665c54\",\"stripe\":\"#504945\",\"theadBg\":\"#3c3836\"}},\"components\":{\"card\":{\"bg\":\"#3c3836\",\"border\":\"#665c54\",\"headerBg\":\"#282828\",\"footerBg\":\"#3c3836\"},\"message\":{\"bg\":\"#282828\",\"headerBg\":\"#3c3836\",\"border\":\"#665c54\",\"bodyFg\":\"#ebdbb2\"},\"panel\":{\"bg\":\"#3c3836\",\"headerBg\":\"#282828\",\"headerFg\":\"#ebdbb2\",\"border\":\"#665c54\",\"blockBg\":\"#282828\",\"blockHoverBg\":\"#3c3836\",\"blockActiveBg\":\"#504945\"},\"box\":{\"bg\":\"#3c3836\",\"border\":\"#665c54\"},\"notification\":{\"bg\":\"#282828\",\"border\":\"#665c54\"},\"modal\":{\"bg\":\"rgba(40, 40, 40, 0.9)\",\"cardBg\":\"#3c3836\",\"headerBg\":\"#282828\",\"footerBg\":\"#3c3836\"},\"dropdown\":{\"bg\":\"#3c3836\",\"itemHoverBg\":\"#504945\",\"border\":\"#665c54\"},\"tabs\":{\"border\":\"#665c54\",\"linkBg\":\"#3c3836\",\"linkActiveBg\":\"#282828\",\"linkHoverBg\":\"#504945\"}}}},\"gruvbox-light-hard\":{\"id\":\"gruvbox-light-hard\",\"label\":\"Gruvbox Light Hard\",\"vendor\":\"gruvbox\",\"appearance\":\"light\",\"tokens\":{\"background\":{\"base\":\"#f9f5d7\",\"surface\":\"#fbf1c7\",\"overlay\":\"#ebdbb2\"},\"text\":{\"primary\":\"#3c3836\",\"secondary\":\"#504945\",\"inverse\":\"#f9f5d7\"},\"brand\":{\"primary\":\"#b57614\"},\"state\":{\"info\":\"#076678\",\"success\":\"#79740e\",\"warning\":\"#b57614\",\"danger\":\"#9d0006\"},\"border\":{\"default\":\"#bdae93\"},\"accent\":{\"link\":\"#076678\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#79740e\",\"h2\":\"#076678\",\"h3\":\"#427b58\",\"h4\":\"#b57614\",\"h5\":\"#8f3f71\",\"h6\":\"#9d0006\"},\"body\":{\"primary\":\"#3c3836\",\"secondary\":\"#504945\"},\"link\":{\"default\":\"#076678\"},\"selection\":{\"fg\":\"#3c3836\",\"bg\":\"#ebdbb2\"},\"blockquote\":{\"border\":\"#bdae93\",\"fg\":\"#504945\",\"bg\":\"#fbf1c7\"},\"codeInline\":{\"fg\":\"#af3a03\",\"bg\":\"#ebdbb2\"},\"codeBlock\":{\"fg\":\"#3c3836\",\"bg\":\"#fbf1c7\"},\"table\":{\"border\":\"#bdae93\",\"stripe\":\"#ebdbb2\",\"theadBg\":\"#fbf1c7\"}},\"components\":{\"card\":{\"bg\":\"#f9f5d7\",\"border\":\"#bdae93\",\"headerBg\":\"#fbf1c7\",\"footerBg\":\"#fbf1c7\"},\"message\":{\"bg\":\"#fbf1c7\",\"headerBg\":\"#f9f5d7\",\"border\":\"#bdae93\",\"bodyFg\":\"#3c3836\"},\"panel\":{\"bg\":\"#f9f5d7\",\"headerBg\":\"#fbf1c7\",\"headerFg\":\"#3c3836\",\"border\":\"#bdae93\",\"blockBg\":\"#fbf1c7\",\"blockHoverBg\":\"#f9f5d7\",\"blockActiveBg\":\"#ebdbb2\"},\"box\":{\"bg\":\"#f9f5d7\",\"border\":\"#bdae93\"},\"notification\":{\"bg\":\"#fbf1c7\",\"border\":\"#bdae93\"},\"modal\":{\"bg\":\"rgba(60, 56, 54, 0.86)\",\"cardBg\":\"#f9f5d7\",\"headerBg\":\"#fbf1c7\",\"footerBg\":\"#fbf1c7\"},\"dropdown\":{\"bg\":\"#f9f5d7\",\"itemHoverBg\":\"#fbf1c7\",\"border\":\"#bdae93\"},\"tabs\":{\"border\":\"#bdae93\",\"linkBg\":\"#fbf1c7\",\"linkActiveBg\":\"#f9f5d7\",\"linkHoverBg\":\"#ebdbb2\"}}}},\"gruvbox-light-soft\":{\"id\":\"gruvbox-light-soft\",\"label\":\"Gruvbox Light Soft\",\"vendor\":\"gruvbox\",\"appearance\":\"light\",\"tokens\":{\"background\":{\"base\":\"#f2e5bc\",\"surface\":\"#ebdbb2\",\"overlay\":\"#d5c4a1\"},\"text\":{\"primary\":\"#3c3836\",\"secondary\":\"#504945\",\"inverse\":\"#f2e5bc\"},\"brand\":{\"primary\":\"#b57614\"},\"state\":{\"info\":\"#076678\",\"success\":\"#79740e\",\"warning\":\"#b57614\",\"danger\":\"#9d0006\",\"warningText\":\"#3c3836\"},\"border\":{\"default\":\"#bdae93\"},\"accent\":{\"link\":\"#076678\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#79740e\",\"h2\":\"#076678\",\"h3\":\"#427b58\",\"h4\":\"#b57614\",\"h5\":\"#8f3f71\",\"h6\":\"#9d0006\"},\"body\":{\"primary\":\"#3c3836\",\"secondary\":\"#504945\"},\"link\":{\"default\":\"#076678\"},\"selection\":{\"fg\":\"#3c3836\",\"bg\":\"#d5c4a1\"},\"blockquote\":{\"border\":\"#bdae93\",\"fg\":\"#504945\",\"bg\":\"#ebdbb2\"},\"codeInline\":{\"fg\":\"#af3a03\",\"bg\":\"#d5c4a1\"},\"codeBlock\":{\"fg\":\"#3c3836\",\"bg\":\"#ebdbb2\"},\"table\":{\"border\":\"#bdae93\",\"stripe\":\"#d5c4a1\",\"theadBg\":\"#ebdbb2\"}},\"components\":{\"card\":{\"bg\":\"#f2e5bc\",\"border\":\"#bdae93\",\"headerBg\":\"#ebdbb2\",\"footerBg\":\"#ebdbb2\"},\"message\":{\"bg\":\"#ebdbb2\",\"headerBg\":\"#f2e5bc\",\"border\":\"#bdae93\",\"bodyFg\":\"#3c3836\"},\"panel\":{\"bg\":\"#f2e5bc\",\"headerBg\":\"#ebdbb2\",\"headerFg\":\"#3c3836\",\"border\":\"#bdae93\",\"blockBg\":\"#ebdbb2\",\"blockHoverBg\":\"#f2e5bc\",\"blockActiveBg\":\"#d5c4a1\"},\"box\":{\"bg\":\"#f2e5bc\",\"border\":\"#bdae93\"},\"notification\":{\"bg\":\"#ebdbb2\",\"border\":\"#bdae93\"},\"modal\":{\"bg\":\"rgba(60, 56, 54, 0.86)\",\"cardBg\":\"#f2e5bc\",\"headerBg\":\"#ebdbb2\",\"footerBg\":\"#ebdbb2\"},\"dropdown\":{\"bg\":\"#f2e5bc\",\"itemHoverBg\":\"#ebdbb2\",\"border\":\"#bdae93\"},\"tabs\":{\"border\":\"#bdae93\",\"linkBg\":\"#ebdbb2\",\"linkActiveBg\":\"#f2e5bc\",\"linkHoverBg\":\"#d5c4a1\"}}}},\"gruvbox-light\":{\"id\":\"gruvbox-light\",\"label\":\"Gruvbox Light\",\"vendor\":\"gruvbox\",\"appearance\":\"light\",\"tokens\":{\"background\":{\"base\":\"#fbf1c7\",\"surface\":\"#ebdbb2\",\"overlay\":\"#d5c4a1\"},\"text\":{\"primary\":\"#3c3836\",\"secondary\":\"#504945\",\"inverse\":\"#fbf1c7\"},\"brand\":{\"primary\":\"#b57614\"},\"state\":{\"info\":\"#076678\",\"success\":\"#79740e\",\"warning\":\"#b57614\",\"danger\":\"#9d0006\"},\"border\":{\"default\":\"#bdae93\"},\"accent\":{\"link\":\"#076678\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#79740e\",\"h2\":\"#076678\",\"h3\":\"#427b58\",\"h4\":\"#b57614\",\"h5\":\"#8f3f71\",\"h6\":\"#9d0006\"},\"body\":{\"primary\":\"#3c3836\",\"secondary\":\"#504945\"},\"link\":{\"default\":\"#076678\"},\"selection\":{\"fg\":\"#3c3836\",\"bg\":\"#d5c4a1\"},\"blockquote\":{\"border\":\"#bdae93\",\"fg\":\"#504945\",\"bg\":\"#ebdbb2\"},\"codeInline\":{\"fg\":\"#af3a03\",\"bg\":\"#d5c4a1\"},\"codeBlock\":{\"fg\":\"#3c3836\",\"bg\":\"#ebdbb2\"},\"table\":{\"border\":\"#bdae93\",\"stripe\":\"#d5c4a1\",\"theadBg\":\"#ebdbb2\"}},\"components\":{\"card\":{\"bg\":\"#fbf1c7\",\"border\":\"#bdae93\",\"headerBg\":\"#ebdbb2\",\"footerBg\":\"#ebdbb2\"},\"message\":{\"bg\":\"#ebdbb2\",\"headerBg\":\"#fbf1c7\",\"border\":\"#bdae93\",\"bodyFg\":\"#3c3836\"},\"panel\":{\"bg\":\"#fbf1c7\",\"headerBg\":\"#ebdbb2\",\"headerFg\":\"#3c3836\",\"border\":\"#bdae93\",\"blockBg\":\"#ebdbb2\",\"blockHoverBg\":\"#fbf1c7\",\"blockActiveBg\":\"#d5c4a1\"},\"box\":{\"bg\":\"#fbf1c7\",\"border\":\"#bdae93\"},\"notification\":{\"bg\":\"#ebdbb2\",\"border\":\"#bdae93\"},\"modal\":{\"bg\":\"rgba(60, 56, 54, 0.86)\",\"cardBg\":\"#fbf1c7\",\"headerBg\":\"#ebdbb2\",\"footerBg\":\"#ebdbb2\"},\"dropdown\":{\"bg\":\"#fbf1c7\",\"itemHoverBg\":\"#ebdbb2\",\"border\":\"#bdae93\"},\"tabs\":{\"border\":\"#bdae93\",\"linkBg\":\"#ebdbb2\",\"linkActiveBg\":\"#fbf1c7\",\"linkHoverBg\":\"#d5c4a1\"}}}},\"nord\":{\"id\":\"nord\",\"label\":\"Nord\",\"vendor\":\"nord\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#2e3440\",\"surface\":\"#3b4252\",\"overlay\":\"#434c5e\"},\"text\":{\"primary\":\"#eceff4\",\"secondary\":\"#d8dee9\",\"inverse\":\"#2e3440\"},\"brand\":{\"primary\":\"#88c0d0\"},\"state\":{\"info\":\"#5e81ac\",\"success\":\"#a3be8c\",\"warning\":\"#ebcb8b\",\"danger\":\"#bf616a\"},\"border\":{\"default\":\"#4c566a\"},\"accent\":{\"link\":\"#88c0d0\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#8fbcbb\",\"h2\":\"#88c0d0\",\"h3\":\"#81a1c1\",\"h4\":\"#ebcb8b\",\"h5\":\"#d08770\",\"h6\":\"#b48ead\"},\"body\":{\"primary\":\"#eceff4\",\"secondary\":\"#d8dee9\"},\"link\":{\"default\":\"#88c0d0\"},\"selection\":{\"fg\":\"#eceff4\",\"bg\":\"#4c566a\"},\"blockquote\":{\"border\":\"#4c566a\",\"fg\":\"#d8dee9\",\"bg\":\"#3b4252\"},\"codeInline\":{\"fg\":\"#eceff4\",\"bg\":\"#434c5e\"},\"codeBlock\":{\"fg\":\"#eceff4\",\"bg\":\"#434c5e\"},\"table\":{\"border\":\"#4c566a\",\"stripe\":\"#434c5e\",\"theadBg\":\"#3b4252\"}}}},\"rose-pine-dawn\":{\"id\":\"rose-pine-dawn\",\"label\":\"Rosé Pine Dawn\",\"vendor\":\"rose-pine\",\"appearance\":\"light\",\"tokens\":{\"background\":{\"base\":\"#faf4ed\",\"surface\":\"#fffaf3\",\"overlay\":\"#f2e9e1\"},\"text\":{\"primary\":\"#575279\",\"secondary\":\"#797593\",\"inverse\":\"#faf4ed\"},\"brand\":{\"primary\":\"#907aa9\"},\"state\":{\"info\":\"#56949f\",\"success\":\"#286983\",\"warning\":\"#ea9d34\",\"danger\":\"#b4637a\",\"warningText\":\"#000000\"},\"border\":{\"default\":\"#dfdad9\"},\"accent\":{\"link\":\"#907aa9\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#286983\",\"h2\":\"#907aa9\",\"h3\":\"#56949f\",\"h4\":\"#ea9d34\",\"h5\":\"#d7827e\",\"h6\":\"#b4637a\"},\"body\":{\"primary\":\"#575279\",\"secondary\":\"#797593\"},\"link\":{\"default\":\"#907aa9\"},\"selection\":{\"fg\":\"#575279\",\"bg\":\"#cecacd\"},\"blockquote\":{\"border\":\"#cecacd\",\"fg\":\"#575279\",\"bg\":\"#fffaf3\"},\"codeInline\":{\"fg\":\"#575279\",\"bg\":\"#f2e9e1\"},\"codeBlock\":{\"fg\":\"#575279\",\"bg\":\"#f2e9e1\"},\"table\":{\"border\":\"#cecacd\",\"stripe\":\"#f2e9e1\",\"theadBg\":\"#dfdad9\"}}}},\"rose-pine-moon\":{\"id\":\"rose-pine-moon\",\"label\":\"Rosé Pine Moon\",\"vendor\":\"rose-pine\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#232136\",\"surface\":\"#2a273f\",\"overlay\":\"#393552\"},\"text\":{\"primary\":\"#e0def4\",\"secondary\":\"#908caa\",\"inverse\":\"#232136\"},\"brand\":{\"primary\":\"#c4a7e7\"},\"state\":{\"info\":\"#9ccfd8\",\"success\":\"#3e8fb0\",\"warning\":\"#f6c177\",\"danger\":\"#eb6f92\"},\"border\":{\"default\":\"#44415a\"},\"accent\":{\"link\":\"#c4a7e7\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#3e8fb0\",\"h2\":\"#c4a7e7\",\"h3\":\"#9ccfd8\",\"h4\":\"#f6c177\",\"h5\":\"#ea9a97\",\"h6\":\"#eb6f92\"},\"body\":{\"primary\":\"#e0def4\",\"secondary\":\"#908caa\"},\"link\":{\"default\":\"#c4a7e7\"},\"selection\":{\"fg\":\"#e0def4\",\"bg\":\"#56526e\"},\"blockquote\":{\"border\":\"#56526e\",\"fg\":\"#e0def4\",\"bg\":\"#2a273f\"},\"codeInline\":{\"fg\":\"#e0def4\",\"bg\":\"#393552\"},\"codeBlock\":{\"fg\":\"#e0def4\",\"bg\":\"#393552\"},\"table\":{\"border\":\"#56526e\",\"stripe\":\"#393552\",\"theadBg\":\"#44415a\"}}}},\"rose-pine\":{\"id\":\"rose-pine\",\"label\":\"Rosé Pine\",\"vendor\":\"rose-pine\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#191724\",\"surface\":\"#1f1d2e\",\"overlay\":\"#26233a\"},\"text\":{\"primary\":\"#e0def4\",\"secondary\":\"#908caa\",\"inverse\":\"#191724\"},\"brand\":{\"primary\":\"#c4a7e7\"},\"state\":{\"info\":\"#9ccfd8\",\"success\":\"#31748f\",\"warning\":\"#f6c177\",\"danger\":\"#eb6f92\"},\"border\":{\"default\":\"#403d52\"},\"accent\":{\"link\":\"#c4a7e7\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#31748f\",\"h2\":\"#c4a7e7\",\"h3\":\"#9ccfd8\",\"h4\":\"#f6c177\",\"h5\":\"#ebbcba\",\"h6\":\"#eb6f92\"},\"body\":{\"primary\":\"#e0def4\",\"secondary\":\"#908caa\"},\"link\":{\"default\":\"#c4a7e7\"},\"selection\":{\"fg\":\"#e0def4\",\"bg\":\"#524f67\"},\"blockquote\":{\"border\":\"#524f67\",\"fg\":\"#e0def4\",\"bg\":\"#1f1d2e\"},\"codeInline\":{\"fg\":\"#e0def4\",\"bg\":\"#26233a\"},\"codeBlock\":{\"fg\":\"#e0def4\",\"bg\":\"#26233a\"},\"table\":{\"border\":\"#524f67\",\"stripe\":\"#26233a\",\"theadBg\":\"#403d52\"}}}},\"solarized-dark\":{\"id\":\"solarized-dark\",\"label\":\"Solarized Dark\",\"vendor\":\"solarized\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#002b36\",\"surface\":\"#073642\",\"overlay\":\"#586e75\"},\"text\":{\"primary\":\"#839496\",\"secondary\":\"#657b83\",\"inverse\":\"#002b36\"},\"brand\":{\"primary\":\"#268bd2\"},\"state\":{\"info\":\"#2aa198\",\"success\":\"#859900\",\"warning\":\"#b58900\",\"danger\":\"#dc322f\"},\"border\":{\"default\":\"#586e75\"},\"accent\":{\"link\":\"#268bd2\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#268bd2\",\"h2\":\"#2aa198\",\"h3\":\"#859900\",\"h4\":\"#b58900\",\"h5\":\"#cb4b16\",\"h6\":\"#d33682\"},\"body\":{\"primary\":\"#839496\",\"secondary\":\"#657b83\"},\"link\":{\"default\":\"#268bd2\"},\"selection\":{\"fg\":\"#fdf6e3\",\"bg\":\"#586e75\"},\"blockquote\":{\"border\":\"#657b83\",\"fg\":\"#839496\",\"bg\":\"#073642\"},\"codeInline\":{\"fg\":\"#2aa198\",\"bg\":\"#073642\"},\"codeBlock\":{\"fg\":\"#93a1a1\",\"bg\":\"#073642\"},\"table\":{\"border\":\"#586e75\",\"stripe\":\"#073642\",\"theadBg\":\"#586e75\"}},\"components\":{\"card\":{\"bg\":\"#073642\",\"border\":\"#586e75\",\"headerBg\":\"#002b36\",\"footerBg\":\"#073642\"},\"message\":{\"bg\":\"#002b36\",\"headerBg\":\"#073642\",\"border\":\"#586e75\",\"bodyFg\":\"#839496\"},\"panel\":{\"bg\":\"#073642\",\"headerBg\":\"#002b36\",\"headerFg\":\"#93a1a1\",\"border\":\"#586e75\",\"blockBg\":\"#002b36\",\"blockHoverBg\":\"#073642\",\"blockActiveBg\":\"#586e75\"},\"box\":{\"bg\":\"#073642\",\"border\":\"#586e75\"},\"notification\":{\"bg\":\"#002b36\",\"border\":\"#586e75\"},\"modal\":{\"bg\":\"rgba(0, 43, 54, 0.9)\",\"cardBg\":\"#073642\",\"headerBg\":\"#002b36\",\"footerBg\":\"#073642\"},\"dropdown\":{\"bg\":\"#073642\",\"itemHoverBg\":\"#586e75\",\"border\":\"#586e75\"},\"tabs\":{\"border\":\"#586e75\",\"linkBg\":\"#073642\",\"linkActiveBg\":\"#002b36\",\"linkHoverBg\":\"#586e75\"}}}},\"solarized-light\":{\"id\":\"solarized-light\",\"label\":\"Solarized Light\",\"vendor\":\"solarized\",\"appearance\":\"light\",\"tokens\":{\"background\":{\"base\":\"#fdf6e3\",\"surface\":\"#eee8d5\",\"overlay\":\"#93a1a1\"},\"text\":{\"primary\":\"#586e75\",\"secondary\":\"#657b83\",\"inverse\":\"#fdf6e3\"},\"brand\":{\"primary\":\"#268bd2\"},\"state\":{\"info\":\"#2aa198\",\"success\":\"#859900\",\"warning\":\"#b58900\",\"danger\":\"#dc322f\",\"infoText\":\"#002b36\",\"successText\":\"#002b36\",\"warningText\":\"#002b36\"},\"border\":{\"default\":\"#93a1a1\"},\"accent\":{\"link\":\"#268bd2\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#268bd2\",\"h2\":\"#2aa198\",\"h3\":\"#859900\",\"h4\":\"#b58900\",\"h5\":\"#cb4b16\",\"h6\":\"#d33682\"},\"body\":{\"primary\":\"#586e75\",\"secondary\":\"#657b83\"},\"link\":{\"default\":\"#268bd2\"},\"selection\":{\"fg\":\"#002b36\",\"bg\":\"#93a1a1\"},\"blockquote\":{\"border\":\"#93a1a1\",\"fg\":\"#657b83\",\"bg\":\"#eee8d5\"},\"codeInline\":{\"fg\":\"#6c71c4\",\"bg\":\"#eee8d5\"},\"codeBlock\":{\"fg\":\"#073642\",\"bg\":\"#eee8d5\"},\"table\":{\"border\":\"#93a1a1\",\"stripe\":\"#eee8d5\",\"theadBg\":\"#eee8d5\"}},\"components\":{\"card\":{\"bg\":\"#fdf6e3\",\"border\":\"#93a1a1\",\"headerBg\":\"#eee8d5\",\"footerBg\":\"#eee8d5\"},\"message\":{\"bg\":\"#eee8d5\",\"headerBg\":\"#fdf6e3\",\"border\":\"#93a1a1\",\"bodyFg\":\"#586e75\"},\"panel\":{\"bg\":\"#fdf6e3\",\"headerBg\":\"#eee8d5\",\"headerFg\":\"#073642\",\"border\":\"#93a1a1\",\"blockBg\":\"#eee8d5\",\"blockHoverBg\":\"#fdf6e3\",\"blockActiveBg\":\"#93a1a1\"},\"box\":{\"bg\":\"#fdf6e3\",\"border\":\"#93a1a1\"},\"notification\":{\"bg\":\"#eee8d5\",\"border\":\"#93a1a1\"},\"modal\":{\"bg\":\"rgba(0, 43, 54, 0.86)\",\"cardBg\":\"#fdf6e3\",\"headerBg\":\"#eee8d5\",\"footerBg\":\"#eee8d5\"},\"dropdown\":{\"bg\":\"#fdf6e3\",\"itemHoverBg\":\"#eee8d5\",\"border\":\"#93a1a1\"},\"tabs\":{\"border\":\"#93a1a1\",\"linkBg\":\"#eee8d5\",\"linkActiveBg\":\"#fdf6e3\",\"linkHoverBg\":\"#93a1a1\"}}}},\"tokyo-night-dark\":{\"id\":\"tokyo-night-dark\",\"label\":\"Tokyo Night Dark\",\"vendor\":\"tokyo-night\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#1a1b26\",\"surface\":\"#24283b\",\"overlay\":\"#28344a\"},\"text\":{\"primary\":\"#c0caf5\",\"secondary\":\"#a9b1d6\",\"inverse\":\"#1a1b26\"},\"brand\":{\"primary\":\"#7aa2f7\"},\"state\":{\"info\":\"#7dcfff\",\"success\":\"#9ece6a\",\"warning\":\"#e0af68\",\"danger\":\"#f7768e\"},\"border\":{\"default\":\"#565f89\"},\"accent\":{\"link\":\"#7aa2f7\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#7aa2f7\",\"h2\":\"#bb9af7\",\"h3\":\"#7dcfff\",\"h4\":\"#e0af68\",\"h5\":\"#ff9e64\",\"h6\":\"#f7768e\"},\"body\":{\"primary\":\"#c0caf5\",\"secondary\":\"#a9b1d6\"},\"link\":{\"default\":\"#7aa2f7\"},\"selection\":{\"fg\":\"#c0caf5\",\"bg\":\"#28344a\"},\"blockquote\":{\"border\":\"#565f89\",\"fg\":\"#a9b1d6\",\"bg\":\"#24283b\"},\"codeInline\":{\"fg\":\"#c0caf5\",\"bg\":\"#28344a\"},\"codeBlock\":{\"fg\":\"#c0caf5\",\"bg\":\"#28344a\"},\"table\":{\"border\":\"#565f89\",\"stripe\":\"#24283b\",\"theadBg\":\"#28344a\"}}}},\"tokyo-night-light\":{\"id\":\"tokyo-night-light\",\"label\":\"Tokyo Night Light\",\"vendor\":\"tokyo-night\",\"appearance\":\"light\",\"tokens\":{\"background\":{\"base\":\"#e6e7ed\",\"surface\":\"#d5d6dc\",\"overlay\":\"#c8d3f5\"},\"text\":{\"primary\":\"#343b58\",\"secondary\":\"#40434f\",\"inverse\":\"#e6e7ed\"},\"brand\":{\"primary\":\"#2e7de9\"},\"state\":{\"info\":\"#0089a5\",\"success\":\"#2f866c\",\"warning\":\"#8c6c3e\",\"danger\":\"#d81159\"},\"border\":{\"default\":\"#b0b4ca\"},\"accent\":{\"link\":\"#2e7de9\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#2e7de9\",\"h2\":\"#7847bd\",\"h3\":\"#0089a5\",\"h4\":\"#8c6c3e\",\"h5\":\"#f1784b\",\"h6\":\"#d81159\"},\"body\":{\"primary\":\"#343b58\",\"secondary\":\"#40434f\"},\"link\":{\"default\":\"#2e7de9\"},\"selection\":{\"fg\":\"#343b58\",\"bg\":\"#c8d3f5\"},\"blockquote\":{\"border\":\"#b0b4ca\",\"fg\":\"#40434f\",\"bg\":\"#e6e7ed\"},\"codeInline\":{\"fg\":\"#343b58\",\"bg\":\"#c8d3f5\"},\"codeBlock\":{\"fg\":\"#343b58\",\"bg\":\"#c8d3f5\"},\"table\":{\"border\":\"#b0b4ca\",\"stripe\":\"#e6e7ed\",\"theadBg\":\"#c8d3f5\"}}}},\"tokyo-night-storm\":{\"id\":\"tokyo-night-storm\",\"label\":\"Tokyo Night Storm\",\"vendor\":\"tokyo-night\",\"appearance\":\"dark\",\"tokens\":{\"background\":{\"base\":\"#24283b\",\"surface\":\"#28344a\",\"overlay\":\"#565f89\"},\"text\":{\"primary\":\"#c0caf5\",\"secondary\":\"#a9b1d6\",\"inverse\":\"#24283b\"},\"brand\":{\"primary\":\"#7aa2f7\"},\"state\":{\"info\":\"#7dcfff\",\"success\":\"#9ece6a\",\"warning\":\"#e0af68\",\"danger\":\"#f7768e\"},\"border\":{\"default\":\"#565f89\"},\"accent\":{\"link\":\"#7aa2f7\"},\"typography\":{\"fonts\":{\"sans\":\"Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, \\\"Apple Color Emoji\\\", \\\"Segoe UI Emoji\\\"\",\"mono\":\"JetBrains Mono, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, \\\"Liberation Mono\\\", \\\"Courier New\\\", monospace\"},\"webFonts\":[\"https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap\",\"https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap\"]},\"content\":{\"heading\":{\"h1\":\"#7aa2f7\",\"h2\":\"#bb9af7\",\"h3\":\"#7dcfff\",\"h4\":\"#e0af68\",\"h5\":\"#ff9e64\",\"h6\":\"#f7768e\"},\"body\":{\"primary\":\"#c0caf5\",\"secondary\":\"#a9b1d6\"},\"link\":{\"default\":\"#7aa2f7\"},\"selection\":{\"fg\":\"#c0caf5\",\"bg\":\"#28344a\"},\"blockquote\":{\"border\":\"#565f89\",\"fg\":\"#a9b1d6\",\"bg\":\"#28344a\"},\"codeInline\":{\"fg\":\"#c0caf5\",\"bg\":\"#28344a\"},\"codeBlock\":{\"fg\":\"#c0caf5\",\"bg\":\"#28344a\"},\"table\":{\"border\":\"#565f89\",\"stripe\":\"#28344a\",\"theadBg\":\"#28344a\"}}}}}"),
|
|
80
|
+
byVendor: {
|
|
81
|
+
"bulma": {
|
|
82
|
+
"name": "Bulma",
|
|
83
|
+
"homepage": "https://bulma.io/",
|
|
84
|
+
"themes": ["bulma-dark", "bulma-light"]
|
|
85
|
+
},
|
|
86
|
+
"catppuccin": {
|
|
87
|
+
"name": "Catppuccin (synced)",
|
|
88
|
+
"homepage": "https://catppuccin.com/palette/",
|
|
89
|
+
"themes": [
|
|
90
|
+
"catppuccin-frappe",
|
|
91
|
+
"catppuccin-latte",
|
|
92
|
+
"catppuccin-macchiato",
|
|
93
|
+
"catppuccin-mocha"
|
|
94
|
+
]
|
|
95
|
+
},
|
|
96
|
+
"dracula": {
|
|
97
|
+
"name": "Dracula",
|
|
98
|
+
"homepage": "https://draculatheme.com/",
|
|
99
|
+
"themes": ["dracula"]
|
|
100
|
+
},
|
|
101
|
+
"github": {
|
|
102
|
+
"name": "GitHub (synced)",
|
|
103
|
+
"homepage": "https://primer.style/",
|
|
104
|
+
"themes": ["github-dark", "github-light"]
|
|
105
|
+
},
|
|
106
|
+
"gruvbox": {
|
|
107
|
+
"name": "Gruvbox",
|
|
108
|
+
"homepage": "https://github.com/morhetz/gruvbox",
|
|
109
|
+
"themes": [
|
|
110
|
+
"gruvbox-dark-hard",
|
|
111
|
+
"gruvbox-dark-soft",
|
|
112
|
+
"gruvbox-dark",
|
|
113
|
+
"gruvbox-light-hard",
|
|
114
|
+
"gruvbox-light-soft",
|
|
115
|
+
"gruvbox-light"
|
|
116
|
+
]
|
|
117
|
+
},
|
|
118
|
+
"nord": {
|
|
119
|
+
"name": "Nord",
|
|
120
|
+
"homepage": "https://www.nordtheme.com/",
|
|
121
|
+
"themes": ["nord"]
|
|
122
|
+
},
|
|
123
|
+
"rose-pine": {
|
|
124
|
+
"name": "Rosé Pine (synced)",
|
|
125
|
+
"homepage": "https://rosepinetheme.com/",
|
|
126
|
+
"themes": [
|
|
127
|
+
"rose-pine-dawn",
|
|
128
|
+
"rose-pine-moon",
|
|
129
|
+
"rose-pine"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
"solarized": {
|
|
133
|
+
"name": "Solarized",
|
|
134
|
+
"homepage": "https://ethanschoonover.com/solarized/",
|
|
135
|
+
"themes": ["solarized-dark", "solarized-light"]
|
|
136
|
+
},
|
|
137
|
+
"tokyo-night": {
|
|
138
|
+
"name": "Tokyo Night",
|
|
139
|
+
"homepage": "https://github.com/enkia/tokyo-night-vscode-theme",
|
|
140
|
+
"themes": [
|
|
141
|
+
"tokyo-night-dark",
|
|
142
|
+
"tokyo-night-light",
|
|
143
|
+
"tokyo-night-storm"
|
|
144
|
+
]
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
};
|
|
148
|
+
/**
|
|
149
|
+
* All available theme flavors as a flat array
|
|
150
|
+
*/
|
|
151
|
+
var flavors = Object.values(tokens.themes).map((theme) => ({
|
|
152
|
+
id: theme.id,
|
|
153
|
+
label: theme.label,
|
|
154
|
+
vendor: theme.vendor,
|
|
155
|
+
appearance: theme.appearance,
|
|
156
|
+
...theme.iconUrl !== void 0 && { iconUrl: theme.iconUrl },
|
|
157
|
+
tokens: theme.tokens
|
|
158
|
+
}));
|
|
159
|
+
/**
|
|
160
|
+
* Theme flavors indexed by ID for quick lookup
|
|
161
|
+
*/
|
|
162
|
+
var themesById = /* @__PURE__ */ Object.fromEntries(flavors.map((flavor) => [flavor.id, flavor]));
|
|
163
|
+
/**
|
|
164
|
+
* All available theme packages (grouped by vendor)
|
|
165
|
+
*/
|
|
166
|
+
var packages = /* @__PURE__ */ Object.fromEntries(Object.entries(tokens.byVendor).map(([vendorId, vendor]) => [vendorId, {
|
|
167
|
+
id: vendorId,
|
|
168
|
+
name: vendor.name,
|
|
169
|
+
homepage: vendor.homepage,
|
|
170
|
+
flavors: vendor.themes.map((themeId) => themesById[themeId]).filter(Boolean)
|
|
171
|
+
}]));
|
|
172
|
+
/**
|
|
173
|
+
* Get a theme by ID
|
|
174
|
+
* @param id - Theme identifier (e.g., 'catppuccin-mocha')
|
|
175
|
+
* @returns The theme flavor or undefined if not found
|
|
176
|
+
*/
|
|
177
|
+
function getTheme(id) {
|
|
178
|
+
return themesById[id];
|
|
179
|
+
}
|
|
180
|
+
/**
|
|
181
|
+
* List of all available theme IDs
|
|
182
|
+
*/
|
|
183
|
+
var themeIds = /* @__PURE__ */ flavors.map((f) => f.id);
|
|
184
|
+
[...new Set(flavors.map((f) => f.vendor))];
|
|
185
|
+
flavors.map((f) => [f.id, f.label]);
|
|
186
|
+
flavors.map((f) => [f.id, f.appearance]);
|
|
187
|
+
/**
|
|
188
|
+
* Ordered list of vendor IDs controlling display order in dropdowns.
|
|
189
|
+
* New vendors should be appended here.
|
|
190
|
+
*/
|
|
191
|
+
var VENDOR_ORDER = [
|
|
192
|
+
"catppuccin",
|
|
193
|
+
"dracula",
|
|
194
|
+
"gruvbox",
|
|
195
|
+
"github",
|
|
196
|
+
"bulma",
|
|
197
|
+
"nord",
|
|
198
|
+
"solarized",
|
|
199
|
+
"rose-pine",
|
|
200
|
+
"tokyo-night"
|
|
201
|
+
];
|
|
202
|
+
var _missingFromOrder = Object.keys(packages).filter((id) => !VENDOR_ORDER.includes(id));
|
|
203
|
+
if (_missingFromOrder.length > 0) console.warn(`[metadata] VENDOR_ORDER is missing vendor IDs present in packages: ${_missingFromOrder.join(", ")}. Append them to VENDOR_ORDER so their themes are included in VENDOR_GROUPS.`);
|
|
204
|
+
/** O(1) flavor lookup by ID, built once at module evaluation time. */
|
|
205
|
+
var flavorById = /* @__PURE__ */ new Map(flavors.map((f) => [f.id, f]));
|
|
206
|
+
/** Cache for computed short labels. */
|
|
207
|
+
var shortLabelCache = /* @__PURE__ */ new Map();
|
|
208
|
+
/**
|
|
209
|
+
* Strip the vendor prefix from a theme label to produce a short label.
|
|
210
|
+
*
|
|
211
|
+
* For single-flavor vendors (e.g., "Dracula", "Nord") the full label is returned.
|
|
212
|
+
* For multi-flavor vendors the vendor name prefix is stripped:
|
|
213
|
+
* "Catppuccin Mocha" -> "Mocha"
|
|
214
|
+
* "Gruvbox Dark Hard" -> "Dark Hard"
|
|
215
|
+
*
|
|
216
|
+
* @param themeId - A valid theme ID
|
|
217
|
+
* @returns The short display label, or the full label if the theme is not found
|
|
218
|
+
*/
|
|
219
|
+
function getShortLabel(themeId) {
|
|
220
|
+
const cached = shortLabelCache.get(themeId);
|
|
221
|
+
if (cached !== void 0) return cached;
|
|
222
|
+
const flavor = flavorById.get(themeId);
|
|
223
|
+
if (!flavor) return themeId;
|
|
224
|
+
const vendorPkg = packages[flavor.vendor];
|
|
225
|
+
if (!vendorPkg) {
|
|
226
|
+
shortLabelCache.set(themeId, flavor.label);
|
|
227
|
+
return flavor.label;
|
|
228
|
+
}
|
|
229
|
+
if (vendorPkg.flavors.length === 1) {
|
|
230
|
+
shortLabelCache.set(themeId, flavor.label);
|
|
231
|
+
return flavor.label;
|
|
232
|
+
}
|
|
233
|
+
const displayName = vendorPkg.name.replace(/\s*\(synced\)\s*/i, "").normalize("NFC");
|
|
234
|
+
const label = flavor.label;
|
|
235
|
+
let result;
|
|
236
|
+
if (label.normalize("NFC").toLowerCase().startsWith(displayName.toLowerCase())) result = label.slice(displayName.length).trim() || label;
|
|
237
|
+
else result = label;
|
|
238
|
+
shortLabelCache.set(themeId, result);
|
|
239
|
+
return result;
|
|
240
|
+
}
|
|
241
|
+
flavors.map((f) => [f.id, getShortLabel(f.id)]);
|
|
242
|
+
//#endregion
|
|
243
|
+
//#region colors.ts
|
|
244
|
+
/**
|
|
245
|
+
* Color mappings for Tailwind preset
|
|
246
|
+
*
|
|
247
|
+
* Generates semantic color classes for each theme variant.
|
|
248
|
+
*/
|
|
249
|
+
/**
|
|
250
|
+
* Create color mappings for the given theme IDs
|
|
251
|
+
* Generates classes like `bg-theme-{id}`, `text-theme-{id}-primary`, etc.
|
|
252
|
+
*/
|
|
253
|
+
function createColorMappings(themeIds) {
|
|
254
|
+
const mappings = {};
|
|
255
|
+
themeIds.forEach((themeId) => {
|
|
256
|
+
const theme = getTheme(themeId);
|
|
257
|
+
if (!theme) return;
|
|
258
|
+
const themeKey = themeId.replace(/[^a-zA-Z0-9]/g, "-");
|
|
259
|
+
mappings[`theme-${themeKey}`] = {
|
|
260
|
+
primary: theme.tokens.brand.primary,
|
|
261
|
+
surface: theme.tokens.background.surface,
|
|
262
|
+
background: theme.tokens.background.base,
|
|
263
|
+
foreground: theme.tokens.text.primary,
|
|
264
|
+
accent: theme.tokens.accent.link,
|
|
265
|
+
success: theme.tokens.state.success,
|
|
266
|
+
warning: theme.tokens.state.warning,
|
|
267
|
+
danger: theme.tokens.state.danger,
|
|
268
|
+
info: theme.tokens.state.info,
|
|
269
|
+
border: theme.tokens.border.default
|
|
270
|
+
};
|
|
271
|
+
});
|
|
272
|
+
return mappings;
|
|
273
|
+
}
|
|
274
|
+
/**
|
|
275
|
+
* Get all available theme color mappings
|
|
276
|
+
*/
|
|
277
|
+
function getAllThemeColors() {
|
|
278
|
+
return createColorMappings(themeIds);
|
|
279
|
+
}
|
|
280
|
+
/**
|
|
281
|
+
* Create CSS custom properties for a theme
|
|
282
|
+
*/
|
|
283
|
+
function createThemeCssVariables(themeId) {
|
|
284
|
+
const theme = getTheme(themeId);
|
|
285
|
+
if (!theme) return "";
|
|
286
|
+
const tokens = theme.tokens;
|
|
287
|
+
const lines = [];
|
|
288
|
+
const addVar = (name, value) => {
|
|
289
|
+
lines.push(` --turbo-${name}: ${value};`);
|
|
290
|
+
};
|
|
291
|
+
addVar("bg-base", tokens.background.base);
|
|
292
|
+
addVar("bg-surface", tokens.background.surface);
|
|
293
|
+
addVar("bg-surface-alt", tokens.background.overlay);
|
|
294
|
+
addVar("text-primary", tokens.text.primary);
|
|
295
|
+
addVar("text-secondary", tokens.text.secondary);
|
|
296
|
+
addVar("text-inverse", tokens.text.inverse);
|
|
297
|
+
addVar("brand-primary", tokens.brand.primary);
|
|
298
|
+
addVar("state-info", tokens.state.info);
|
|
299
|
+
addVar("state-success", tokens.state.success);
|
|
300
|
+
addVar("state-warning", tokens.state.warning);
|
|
301
|
+
addVar("state-danger", tokens.state.danger);
|
|
302
|
+
addVar("border-default", tokens.border.default);
|
|
303
|
+
addVar("accent-link", tokens.accent.link);
|
|
304
|
+
addVar("heading-h1", tokens.content.heading.h1);
|
|
305
|
+
addVar("heading-h2", tokens.content.heading.h2);
|
|
306
|
+
addVar("heading-h3", tokens.content.heading.h3);
|
|
307
|
+
addVar("heading-h4", tokens.content.heading.h4);
|
|
308
|
+
addVar("heading-h5", tokens.content.heading.h5);
|
|
309
|
+
addVar("heading-h6", tokens.content.heading.h6);
|
|
310
|
+
addVar("body-primary", tokens.content.body.primary);
|
|
311
|
+
addVar("body-secondary", tokens.content.body.secondary);
|
|
312
|
+
addVar("link-default", tokens.content.link.default);
|
|
313
|
+
addVar("selection-fg", tokens.content.selection.fg);
|
|
314
|
+
addVar("selection-bg", tokens.content.selection.bg);
|
|
315
|
+
addVar("blockquote-border", tokens.content.blockquote.border);
|
|
316
|
+
addVar("blockquote-fg", tokens.content.blockquote.fg);
|
|
317
|
+
addVar("blockquote-bg", tokens.content.blockquote.bg);
|
|
318
|
+
addVar("code-inline-fg", tokens.content.codeInline.fg);
|
|
319
|
+
addVar("code-inline-bg", tokens.content.codeInline.bg);
|
|
320
|
+
addVar("code-block-fg", tokens.content.codeBlock.fg);
|
|
321
|
+
addVar("code-block-bg", tokens.content.codeBlock.bg);
|
|
322
|
+
addVar("table-border", tokens.content.table.border);
|
|
323
|
+
addVar("table-stripe", tokens.content.table.stripe);
|
|
324
|
+
addVar("table-thead-bg", tokens.content.table.theadBg);
|
|
325
|
+
if (tokens.content.table.cellBg) addVar("table-cell-bg", tokens.content.table.cellBg);
|
|
326
|
+
if (tokens.content.table.headerFg) addVar("table-header-fg", tokens.content.table.headerFg);
|
|
327
|
+
addVar("font-sans", tokens.typography.fonts.sans);
|
|
328
|
+
addVar("font-mono", tokens.typography.fonts.mono);
|
|
329
|
+
if (tokens.spacing) {
|
|
330
|
+
addVar("spacing-xs", tokens.spacing.xs);
|
|
331
|
+
addVar("spacing-sm", tokens.spacing.sm);
|
|
332
|
+
addVar("spacing-md", tokens.spacing.md);
|
|
333
|
+
addVar("spacing-lg", tokens.spacing.lg);
|
|
334
|
+
addVar("spacing-xl", tokens.spacing.xl);
|
|
335
|
+
}
|
|
336
|
+
if (tokens.elevation) {
|
|
337
|
+
addVar("elevation-none", tokens.elevation.none);
|
|
338
|
+
addVar("elevation-sm", tokens.elevation.sm);
|
|
339
|
+
addVar("elevation-md", tokens.elevation.md);
|
|
340
|
+
addVar("elevation-lg", tokens.elevation.lg);
|
|
341
|
+
addVar("elevation-xl", tokens.elevation.xl);
|
|
342
|
+
}
|
|
343
|
+
if (tokens.animation) {
|
|
344
|
+
addVar("animation-duration-fast", tokens.animation.durationFast);
|
|
345
|
+
addVar("animation-duration-normal", tokens.animation.durationNormal);
|
|
346
|
+
addVar("animation-duration-slow", tokens.animation.durationSlow);
|
|
347
|
+
addVar("animation-easing-default", tokens.animation.easingDefault);
|
|
348
|
+
addVar("animation-easing-emphasized", tokens.animation.easingEmphasized);
|
|
349
|
+
}
|
|
350
|
+
if (tokens.opacity) {
|
|
351
|
+
addVar("opacity-disabled", tokens.opacity.disabled.toString());
|
|
352
|
+
addVar("opacity-hover", tokens.opacity.hover.toString());
|
|
353
|
+
addVar("opacity-pressed", tokens.opacity.pressed.toString());
|
|
354
|
+
}
|
|
355
|
+
return `[data-theme="${themeId}"] {\n${lines.join("\n")}\n}`;
|
|
356
|
+
}
|
|
357
|
+
//#endregion
|
|
358
|
+
export { themeIds as a, getTheme as i, createThemeCssVariables as n, themesById as o, getAllThemeColors as r, createColorMappings as t };
|
|
359
|
+
|
|
360
|
+
//# sourceMappingURL=colors-CbRO_4mn.js.map
|
|
@@ -1,7 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export {
|
|
3
|
-
c as createColorMappings,
|
|
4
|
-
b as createThemeCssVariables,
|
|
5
|
-
d as getAllThemeColors
|
|
6
|
-
};
|
|
7
|
-
//# sourceMappingURL=colors.js.map
|
|
1
|
+
import { n as createThemeCssVariables, r as getAllThemeColors, t as createColorMappings } from "./colors-CbRO_4mn.js";
|
|
2
|
+
export { createColorMappings, createThemeCssVariables, getAllThemeColors };
|