@lgtm-hq/turbo-themes 0.13.0 → 0.14.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/assets/css/themes/nord.css +58 -0
- package/dist/adapters/tailwind/{colors-2bi-2d_X.js → colors-CwJgamtM.js} +3 -3
- package/dist/adapters/tailwind/colors.js +1 -1
- package/dist/adapters/tailwind/preset.js +2 -2
- package/dist/themes/packs/bulma.d.ts +1 -0
- package/dist/themes/packs/bulma.d.ts.map +1 -1
- package/dist/themes/packs/bulma.js +10 -0
- package/dist/themes/packs/bulma.js.map +1 -1
- package/dist/themes/packs/catppuccin.synced.d.ts +8 -0
- package/dist/themes/packs/catppuccin.synced.d.ts.map +1 -1
- package/dist/themes/packs/catppuccin.synced.js +18 -0
- package/dist/themes/packs/catppuccin.synced.js.map +1 -1
- package/dist/themes/packs/dracula.d.ts +1 -0
- package/dist/themes/packs/dracula.d.ts.map +1 -1
- package/dist/themes/packs/dracula.js +9 -0
- package/dist/themes/packs/dracula.js.map +1 -1
- package/dist/themes/packs/github.synced.d.ts +1 -0
- package/dist/themes/packs/github.synced.d.ts.map +1 -1
- package/dist/themes/packs/github.synced.js +14 -103
- package/dist/themes/packs/github.synced.js.map +1 -1
- package/dist/themes/packs/nord.d.ts +8 -0
- package/dist/themes/packs/nord.d.ts.map +1 -0
- package/dist/themes/packs/nord.js +106 -0
- package/dist/themes/packs/nord.js.map +1 -0
- package/dist/themes/packs/rose-pine.synced.d.ts +8 -0
- package/dist/themes/packs/rose-pine.synced.d.ts.map +1 -1
- package/dist/themes/packs/rose-pine.synced.js +18 -0
- package/dist/themes/packs/rose-pine.synced.js.map +1 -1
- package/dist/themes/registry.d.ts.map +1 -1
- package/dist/themes/registry.js +2 -0
- package/dist/themes/registry.js.map +1 -1
- package/dist/themes/types.d.ts +20 -0
- package/dist/themes/types.d.ts.map +1 -1
- package/dist/tokens/style-dictionary/nord.json +264 -0
- package/dist/tokens/style-dictionary/themes.json +203 -4
- package/dist/tokens/style-dictionary/tokens.json +95 -4
- package/package.json +2 -2
- package/packages/adapters/tailwind/dist/{colors-2bi-2d_X.js → colors-CwJgamtM.js} +3 -3
- package/packages/adapters/tailwind/dist/{colors-2bi-2d_X.js.map → colors-CwJgamtM.js.map} +1 -1
- package/packages/adapters/tailwind/dist/colors.js +1 -1
- package/packages/adapters/tailwind/dist/preset.js +2 -2
- package/packages/core/dist/themes/tokens.json +95 -4
- package/packages/core/dist/themes/types.d.ts +20 -0
- package/packages/core/dist/themes/types.d.ts.map +1 -1
- package/packages/css/dist/themes/nord.css +61 -0
- package/packages/css/dist/turbo.css +62 -0
- package/packages/theme-selector/dist/index.d.ts +1 -1
- package/packages/theme-selector/dist/index.js +6 -2
- package/packages/theme-selector/dist/index.js.map +1 -1
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
/* Generated from nord.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="nord"] {
|
|
4
|
+
--turbo-spacing-xs: 0.25rem; /* dimension */
|
|
5
|
+
--turbo-spacing-sm: 0.5rem; /* dimension */
|
|
6
|
+
--turbo-spacing-md: 1rem; /* dimension */
|
|
7
|
+
--turbo-spacing-lg: 1.5rem; /* dimension */
|
|
8
|
+
--turbo-spacing-xl: 2rem; /* dimension */
|
|
9
|
+
--turbo-elevation-none: none; /* shadow */
|
|
10
|
+
--turbo-elevation-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow */
|
|
11
|
+
--turbo-elevation-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow */
|
|
12
|
+
--turbo-elevation-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow */
|
|
13
|
+
--turbo-elevation-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow */
|
|
14
|
+
--turbo-animation-duration-fast: 150ms; /* duration */
|
|
15
|
+
--turbo-animation-duration-normal: 300ms; /* duration */
|
|
16
|
+
--turbo-animation-duration-slow: 500ms; /* duration */
|
|
17
|
+
--turbo-animation-easing-default: cubic-bezier(0.4, 0, 0.2, 1); /* cubicBezier */
|
|
18
|
+
--turbo-animation-easing-emphasized: cubic-bezier(0.05, 0.7, 0.1, 1); /* cubicBezier */
|
|
19
|
+
--turbo-opacity-disabled: 0.5; /* number */
|
|
20
|
+
--turbo-opacity-hover: 0.8; /* number */
|
|
21
|
+
--turbo-opacity-pressed: 0.6; /* number */
|
|
22
|
+
--turbo-bg-base: #2e3440; /* color */
|
|
23
|
+
--turbo-bg-surface: #3b4252; /* color */
|
|
24
|
+
--turbo-bg-overlay: #434c5e; /* color */
|
|
25
|
+
--turbo-text-primary: #eceff4; /* color */
|
|
26
|
+
--turbo-text-secondary: #d8dee9; /* color */
|
|
27
|
+
--turbo-text-inverse: #2e3440; /* color */
|
|
28
|
+
--turbo-brand-primary: #88c0d0; /* color */
|
|
29
|
+
--turbo-state-info: #5e81ac; /* color */
|
|
30
|
+
--turbo-state-success: #a3be8c; /* color */
|
|
31
|
+
--turbo-state-warning: #ebcb8b; /* color */
|
|
32
|
+
--turbo-state-danger: #bf616a; /* color */
|
|
33
|
+
--turbo-border-default: #4c566a; /* color */
|
|
34
|
+
--turbo-accent-link: #88c0d0; /* color */
|
|
35
|
+
--turbo-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji"; /* fontFamily */
|
|
36
|
+
--turbo-font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* fontFamily */
|
|
37
|
+
--turbo-heading-h1: #8fbcbb; /* color */
|
|
38
|
+
--turbo-heading-h2: #88c0d0; /* color */
|
|
39
|
+
--turbo-heading-h3: #81a1c1; /* color */
|
|
40
|
+
--turbo-heading-h4: #ebcb8b; /* color */
|
|
41
|
+
--turbo-heading-h5: #d08770; /* color */
|
|
42
|
+
--turbo-heading-h6: #b48ead; /* color */
|
|
43
|
+
--turbo-body-primary: #eceff4; /* color */
|
|
44
|
+
--turbo-body-secondary: #d8dee9; /* color */
|
|
45
|
+
--turbo-link-default: #88c0d0; /* color */
|
|
46
|
+
--turbo-selection-fg: #eceff4; /* color */
|
|
47
|
+
--turbo-selection-bg: #4c566a; /* color */
|
|
48
|
+
--turbo-blockquote-border: #4c566a; /* color */
|
|
49
|
+
--turbo-blockquote-fg: #d8dee9; /* color */
|
|
50
|
+
--turbo-blockquote-bg: #3b4252; /* color */
|
|
51
|
+
--turbo-code-inline-fg: #eceff4; /* color */
|
|
52
|
+
--turbo-code-inline-bg: #434c5e; /* color */
|
|
53
|
+
--turbo-code-block-fg: #eceff4; /* color */
|
|
54
|
+
--turbo-code-block-bg: #434c5e; /* color */
|
|
55
|
+
--turbo-table-border: #4c566a; /* color */
|
|
56
|
+
--turbo-table-stripe: #434c5e; /* color */
|
|
57
|
+
--turbo-table-thead-bg: #3b4252; /* color */
|
|
58
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
const 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"},"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"},"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"},"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"}}}},"rose-pine-dawn":{"id":"rose-pine-dawn","label":"Rosé Pine Dawn","vendor":"rose-pine","appearance":"light","iconUrl":"/assets/img/rose-pine-dawn.png","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"},"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","iconUrl":"/assets/img/rose-pine-moon.png","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","iconUrl":"/assets/img/rose-pine.png","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"}}}}}');
|
|
2
|
-
const byVendor = { "bulma": { "name": "Bulma", "homepage": "https://bulma.io/", "themes": ["bulma-dark", "bulma-light"] }, "catppuccin": { "name": "Catppuccin (synced)", "homepage": "https://catppuccin.com/palette/", "themes": ["catppuccin-frappe", "catppuccin-latte", "catppuccin-macchiato", "catppuccin-mocha"] }, "dracula": { "name": "Dracula", "homepage": "https://draculatheme.com/", "themes": ["dracula"] }, "github": { "name": "GitHub (synced)", "homepage": "https://primer.style/", "themes": ["github-dark", "github-light"] }, "rose-pine": { "name": "Rosé Pine (synced)", "homepage": "https://rosepinetheme.com/", "themes": ["rose-pine-dawn", "rose-pine-moon", "rose-pine"] } };
|
|
1
|
+
const 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"},"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"},"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"},"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"}}}},"nord":{"id":"nord","label":"Nord","vendor":"nord","appearance":"dark","iconUrl":"/assets/img/nord.png","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","iconUrl":"/assets/img/rose-pine-dawn.png","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"},"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","iconUrl":"/assets/img/rose-pine-moon.png","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","iconUrl":"/assets/img/rose-pine.png","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"}}}}}');
|
|
2
|
+
const byVendor = { "bulma": { "name": "Bulma", "homepage": "https://bulma.io/", "themes": ["bulma-dark", "bulma-light"] }, "catppuccin": { "name": "Catppuccin (synced)", "homepage": "https://catppuccin.com/palette/", "themes": ["catppuccin-frappe", "catppuccin-latte", "catppuccin-macchiato", "catppuccin-mocha"] }, "dracula": { "name": "Dracula", "homepage": "https://draculatheme.com/", "themes": ["dracula"] }, "github": { "name": "GitHub (synced)", "homepage": "https://primer.style/", "themes": ["github-dark", "github-light"] }, "nord": { "name": "Nord", "homepage": "https://www.nordtheme.com/", "themes": ["nord"] }, "rose-pine": { "name": "Rosé Pine (synced)", "homepage": "https://rosepinetheme.com/", "themes": ["rose-pine-dawn", "rose-pine-moon", "rose-pine"] } };
|
|
3
3
|
const tokensData = {
|
|
4
4
|
themes,
|
|
5
5
|
byVendor
|
|
@@ -140,4 +140,4 @@ export {
|
|
|
140
140
|
getTheme as g,
|
|
141
141
|
themeIds as t
|
|
142
142
|
};
|
|
143
|
-
//# sourceMappingURL=colors-
|
|
143
|
+
//# sourceMappingURL=colors-CwJgamtM.js.map
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { t as themeIds, c as createColorMappings } from "./colors-
|
|
2
|
-
import { g, a } from "./colors-
|
|
1
|
+
import { t as themeIds, c as createColorMappings } from "./colors-CwJgamtM.js";
|
|
2
|
+
import { g, a } from "./colors-CwJgamtM.js";
|
|
3
3
|
const defaultOptions = {
|
|
4
4
|
themes: [...themeIds],
|
|
5
5
|
darkMode: true,
|
|
@@ -3,6 +3,7 @@ import type { ThemePackage } from '../types.js';
|
|
|
3
3
|
* Bulma default themes - Light and Dark variants
|
|
4
4
|
* Based on Bulma's default color scheme with enhanced typography
|
|
5
5
|
* @see https://bulma.io/documentation/customize/with-sass/
|
|
6
|
+
* @license MIT
|
|
6
7
|
*
|
|
7
8
|
* Typography: Nunito Sans - A modern, friendly sans-serif that
|
|
8
9
|
* complements Bulma's clean, European design aesthetic.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bulma.d.ts","sourceRoot":"","sources":["../../../src/themes/packs/bulma.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD
|
|
1
|
+
{"version":3,"file":"bulma.d.ts","sourceRoot":"","sources":["../../../src/themes/packs/bulma.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD;;;;;;;;;GASG;AACH,eAAO,MAAM,WAAW,EAAE,YA2RhB,CAAC"}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* Bulma default themes - Light and Dark variants
|
|
3
3
|
* Based on Bulma's default color scheme with enhanced typography
|
|
4
4
|
* @see https://bulma.io/documentation/customize/with-sass/
|
|
5
|
+
* @license MIT
|
|
5
6
|
*
|
|
6
7
|
* Typography: Nunito Sans - A modern, friendly sans-serif that
|
|
7
8
|
* complements Bulma's clean, European design aesthetic.
|
|
@@ -11,6 +12,15 @@ export const bulmaThemes = {
|
|
|
11
12
|
id: 'bulma',
|
|
12
13
|
name: 'Bulma',
|
|
13
14
|
homepage: 'https://bulma.io/',
|
|
15
|
+
license: {
|
|
16
|
+
spdx: 'MIT',
|
|
17
|
+
url: 'https://github.com/jgthms/bulma/blob/master/LICENSE',
|
|
18
|
+
copyright: 'Jeremy Thomas',
|
|
19
|
+
},
|
|
20
|
+
source: {
|
|
21
|
+
package: 'bulma',
|
|
22
|
+
repository: 'https://github.com/jgthms/bulma',
|
|
23
|
+
},
|
|
14
24
|
flavors: [
|
|
15
25
|
{
|
|
16
26
|
id: 'bulma-light',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bulma.js","sourceRoot":"","sources":["../../../src/themes/packs/bulma.ts"],"names":[],"mappings":"AAEA
|
|
1
|
+
{"version":3,"file":"bulma.js","sourceRoot":"","sources":["../../../src/themes/packs/bulma.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,11 @@
|
|
|
1
1
|
import type { ThemePackage } from '../types.js';
|
|
2
|
+
/**
|
|
3
|
+
* Catppuccin theme - Soothing pastel theme for the high-spirited
|
|
4
|
+
* Auto-synced from @catppuccin/palette
|
|
5
|
+
* @see https://catppuccin.com/palette/
|
|
6
|
+
* @license MIT
|
|
7
|
+
*
|
|
8
|
+
* DO NOT EDIT MANUALLY - regenerate with: node scripts/sync-catppuccin.mjs
|
|
9
|
+
*/
|
|
2
10
|
export declare const catppuccinSynced: ThemePackage;
|
|
3
11
|
//# sourceMappingURL=catppuccin.synced.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catppuccin.synced.d.ts","sourceRoot":"","sources":["../../../src/themes/packs/catppuccin.synced.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD,eAAO,MAAM,gBAAgB,EAAE,
|
|
1
|
+
{"version":3,"file":"catppuccin.synced.d.ts","sourceRoot":"","sources":["../../../src/themes/packs/catppuccin.synced.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD;;;;;;;GAOG;AACH,eAAO,MAAM,gBAAgB,EAAE,YA4VrB,CAAC"}
|
|
@@ -1,7 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Catppuccin theme - Soothing pastel theme for the high-spirited
|
|
3
|
+
* Auto-synced from @catppuccin/palette
|
|
4
|
+
* @see https://catppuccin.com/palette/
|
|
5
|
+
* @license MIT
|
|
6
|
+
*
|
|
7
|
+
* DO NOT EDIT MANUALLY - regenerate with: node scripts/sync-catppuccin.mjs
|
|
8
|
+
*/
|
|
1
9
|
export const catppuccinSynced = {
|
|
2
10
|
id: 'catppuccin',
|
|
3
11
|
name: 'Catppuccin (synced)',
|
|
4
12
|
homepage: 'https://catppuccin.com/palette/',
|
|
13
|
+
license: {
|
|
14
|
+
spdx: 'MIT',
|
|
15
|
+
url: 'https://github.com/catppuccin/catppuccin/blob/main/LICENSE',
|
|
16
|
+
copyright: 'Catppuccin',
|
|
17
|
+
},
|
|
18
|
+
source: {
|
|
19
|
+
package: '@catppuccin/palette',
|
|
20
|
+
version: '1.7.1',
|
|
21
|
+
repository: 'https://github.com/catppuccin/palette',
|
|
22
|
+
},
|
|
5
23
|
flavors: [
|
|
6
24
|
{
|
|
7
25
|
id: 'catppuccin-latte',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"catppuccin.synced.js","sourceRoot":"","sources":["../../../src/themes/packs/catppuccin.synced.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"catppuccin.synced.js","sourceRoot":"","sources":["../../../src/themes/packs/catppuccin.synced.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,6 +3,7 @@ import type { ThemePackage } from '../types.js';
|
|
|
3
3
|
* Dracula theme
|
|
4
4
|
* Based on the official Dracula color palette
|
|
5
5
|
* @see https://draculatheme.com/contribute
|
|
6
|
+
* @license MIT
|
|
6
7
|
*/
|
|
7
8
|
export declare const draculaThemes: ThemePackage;
|
|
8
9
|
//# sourceMappingURL=dracula.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dracula.d.ts","sourceRoot":"","sources":["../../../src/themes/packs/dracula.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD
|
|
1
|
+
{"version":3,"file":"dracula.d.ts","sourceRoot":"","sources":["../../../src/themes/packs/dracula.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,aAAa,EAAE,YAkJlB,CAAC"}
|
|
@@ -2,11 +2,20 @@
|
|
|
2
2
|
* Dracula theme
|
|
3
3
|
* Based on the official Dracula color palette
|
|
4
4
|
* @see https://draculatheme.com/contribute
|
|
5
|
+
* @license MIT
|
|
5
6
|
*/
|
|
6
7
|
export const draculaThemes = {
|
|
7
8
|
id: 'dracula',
|
|
8
9
|
name: 'Dracula',
|
|
9
10
|
homepage: 'https://draculatheme.com/',
|
|
11
|
+
license: {
|
|
12
|
+
spdx: 'MIT',
|
|
13
|
+
url: 'https://github.com/dracula/dracula-theme/blob/master/LICENSE',
|
|
14
|
+
copyright: 'Zeno Rocha',
|
|
15
|
+
},
|
|
16
|
+
source: {
|
|
17
|
+
repository: 'https://github.com/dracula/dracula-theme',
|
|
18
|
+
},
|
|
10
19
|
flavors: [
|
|
11
20
|
{
|
|
12
21
|
id: 'dracula',
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dracula.js","sourceRoot":"","sources":["../../../src/themes/packs/dracula.ts"],"names":[],"mappings":"AAEA
|
|
1
|
+
{"version":3,"file":"dracula.js","sourceRoot":"","sources":["../../../src/themes/packs/dracula.ts"],"names":[],"mappings":"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"}
|
|
@@ -3,6 +3,7 @@ import type { ThemePackage } from '../types.js';
|
|
|
3
3
|
* GitHub themes - auto-synced from @primer/primitives
|
|
4
4
|
* Based on GitHub's Primer design system colors
|
|
5
5
|
* @see https://primer.style/foundations/color
|
|
6
|
+
* @license MIT
|
|
6
7
|
*
|
|
7
8
|
* DO NOT EDIT MANUALLY - regenerate with: node scripts/sync-github.mjs
|
|
8
9
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"github.synced.d.ts","sourceRoot":"","sources":["../../../src/themes/packs/github.synced.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD
|
|
1
|
+
{"version":3,"file":"github.synced.d.ts","sourceRoot":"","sources":["../../../src/themes/packs/github.synced.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAEhD;;;;;;;GAOG;AACH,eAAO,MAAM,YAAY,EAAE,YAsLjB,CAAC"}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
* GitHub themes - auto-synced from @primer/primitives
|
|
3
3
|
* Based on GitHub's Primer design system colors
|
|
4
4
|
* @see https://primer.style/foundations/color
|
|
5
|
+
* @license MIT
|
|
5
6
|
*
|
|
6
7
|
* DO NOT EDIT MANUALLY - regenerate with: node scripts/sync-github.mjs
|
|
7
8
|
*/
|
|
@@ -9,6 +10,16 @@ export const githubSynced = {
|
|
|
9
10
|
id: 'github',
|
|
10
11
|
name: 'GitHub (synced)',
|
|
11
12
|
homepage: 'https://primer.style/',
|
|
13
|
+
license: {
|
|
14
|
+
spdx: 'MIT',
|
|
15
|
+
url: 'https://github.com/primer/primitives/blob/main/LICENSE',
|
|
16
|
+
copyright: 'GitHub Inc.',
|
|
17
|
+
},
|
|
18
|
+
source: {
|
|
19
|
+
package: '@primer/primitives',
|
|
20
|
+
version: '11.3.2',
|
|
21
|
+
repository: 'https://github.com/primer/primitives',
|
|
22
|
+
},
|
|
12
23
|
flavors: [
|
|
13
24
|
{
|
|
14
25
|
id: 'github-light',
|
|
@@ -88,57 +99,7 @@ export const githubSynced = {
|
|
|
88
99
|
table: {
|
|
89
100
|
border: '#d1d9e0',
|
|
90
101
|
stripe: '#f6f8fa',
|
|
91
|
-
theadBg: '#
|
|
92
|
-
cellBg: '#ffffff',
|
|
93
|
-
headerFg: '#1f2328',
|
|
94
|
-
},
|
|
95
|
-
},
|
|
96
|
-
components: {
|
|
97
|
-
card: {
|
|
98
|
-
bg: '#ffffff',
|
|
99
|
-
border: '#d1d9e0',
|
|
100
|
-
headerBg: '#f6f8fa',
|
|
101
|
-
footerBg: '#f6f8fa',
|
|
102
|
-
},
|
|
103
|
-
message: {
|
|
104
|
-
bg: '#f6f8fa',
|
|
105
|
-
headerBg: '#eaeef2',
|
|
106
|
-
border: '#d1d9e0',
|
|
107
|
-
bodyFg: '#1f2328',
|
|
108
|
-
},
|
|
109
|
-
panel: {
|
|
110
|
-
bg: '#ffffff',
|
|
111
|
-
headerBg: '#f6f8fa',
|
|
112
|
-
headerFg: '#1f2328',
|
|
113
|
-
border: '#d1d9e0',
|
|
114
|
-
blockBg: '#f6f8fa',
|
|
115
|
-
blockHoverBg: '#eaeef2',
|
|
116
|
-
blockActiveBg: '#ddf4ff',
|
|
117
|
-
},
|
|
118
|
-
box: {
|
|
119
|
-
bg: '#ffffff',
|
|
120
|
-
border: '#d1d9e0',
|
|
121
|
-
},
|
|
122
|
-
notification: {
|
|
123
|
-
bg: '#f6f8fa',
|
|
124
|
-
border: '#d1d9e0',
|
|
125
|
-
},
|
|
126
|
-
modal: {
|
|
127
|
-
bg: 'rgba(31, 35, 40, 0.5)',
|
|
128
|
-
cardBg: '#ffffff',
|
|
129
|
-
headerBg: '#f6f8fa',
|
|
130
|
-
footerBg: '#f6f8fa',
|
|
131
|
-
},
|
|
132
|
-
dropdown: {
|
|
133
|
-
bg: '#ffffff',
|
|
134
|
-
itemHoverBg: '#f6f8fa',
|
|
135
|
-
border: '#d1d9e0',
|
|
136
|
-
},
|
|
137
|
-
tabs: {
|
|
138
|
-
border: '#d1d9e0',
|
|
139
|
-
linkBg: '#f6f8fa',
|
|
140
|
-
linkActiveBg: '#ffffff',
|
|
141
|
-
linkHoverBg: '#eaeef2',
|
|
102
|
+
theadBg: '#f6f8fa',
|
|
142
103
|
},
|
|
143
104
|
},
|
|
144
105
|
},
|
|
@@ -220,58 +181,8 @@ export const githubSynced = {
|
|
|
220
181
|
},
|
|
221
182
|
table: {
|
|
222
183
|
border: '#3d444d',
|
|
223
|
-
stripe: '#
|
|
224
|
-
theadBg: '#
|
|
225
|
-
cellBg: '#0d1117',
|
|
226
|
-
headerFg: '#f0f6fc',
|
|
227
|
-
},
|
|
228
|
-
},
|
|
229
|
-
components: {
|
|
230
|
-
card: {
|
|
231
|
-
bg: '#161b22',
|
|
232
|
-
border: '#3d444d',
|
|
233
|
-
headerBg: '#21262d',
|
|
234
|
-
footerBg: '#161b22',
|
|
235
|
-
},
|
|
236
|
-
message: {
|
|
237
|
-
bg: '#161b22',
|
|
238
|
-
headerBg: '#21262d',
|
|
239
|
-
border: '#3d444d',
|
|
240
|
-
bodyFg: '#e6edf3',
|
|
241
|
-
},
|
|
242
|
-
panel: {
|
|
243
|
-
bg: '#161b22',
|
|
244
|
-
headerBg: '#21262d',
|
|
245
|
-
headerFg: '#f0f6fc',
|
|
246
|
-
border: '#3d444d',
|
|
247
|
-
blockBg: '#0d1117',
|
|
248
|
-
blockHoverBg: '#1c2128',
|
|
249
|
-
blockActiveBg: '#264f78',
|
|
250
|
-
},
|
|
251
|
-
box: {
|
|
252
|
-
bg: '#161b22',
|
|
253
|
-
border: '#3d444d',
|
|
254
|
-
},
|
|
255
|
-
notification: {
|
|
256
|
-
bg: '#161b22',
|
|
257
|
-
border: '#3d444d',
|
|
258
|
-
},
|
|
259
|
-
modal: {
|
|
260
|
-
bg: 'rgba(1, 4, 9, 0.8)',
|
|
261
|
-
cardBg: '#161b22',
|
|
262
|
-
headerBg: '#21262d',
|
|
263
|
-
footerBg: '#161b22',
|
|
264
|
-
},
|
|
265
|
-
dropdown: {
|
|
266
|
-
bg: '#161b22',
|
|
267
|
-
itemHoverBg: '#1c2128',
|
|
268
|
-
border: '#3d444d',
|
|
269
|
-
},
|
|
270
|
-
tabs: {
|
|
271
|
-
border: '#3d444d',
|
|
272
|
-
linkBg: '#1c2128',
|
|
273
|
-
linkActiveBg: '#161b22',
|
|
274
|
-
linkHoverBg: '#21262d',
|
|
184
|
+
stripe: '#151b23',
|
|
185
|
+
theadBg: '#151b23',
|
|
275
186
|
},
|
|
276
187
|
},
|
|
277
188
|
},
|