@upstart.gg/sdk 0.0.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (126) hide show
  1. package/LICENSE +633 -0
  2. package/README.md +11 -0
  3. package/custom-attrs.d.ts +63 -0
  4. package/dist/node/cli/api.js +3 -0
  5. package/dist/node/cli/commands/build/cmd-build.js +3 -0
  6. package/dist/node/cli/commands/login/cmd-login.js +10 -0
  7. package/dist/node/cli/commands/logout/cmd-logout.js +3 -0
  8. package/dist/node/cli/commands/publish/cmd-publish.js +36 -0
  9. package/dist/node/cli/commands/publish/parse-gitignore.js +14 -0
  10. package/dist/node/cli/commands/publish/uploader.js +17 -0
  11. package/dist/node/cli/constants.js +2 -0
  12. package/dist/node/cli/program.js +48 -0
  13. package/dist/node/cli/store.js +3 -0
  14. package/dist/node/cli/types.js +1 -0
  15. package/dist/node/cli/utils.js +2 -0
  16. package/dist/node/metafile-esm.json +1 -0
  17. package/dist/node/shared/config.js +12 -0
  18. package/dist/node/shared/logger.js +3 -0
  19. package/dist/shared/ajv.d.ts +6 -0
  20. package/dist/shared/ajv.js +2 -0
  21. package/dist/shared/attributes.d.ts +102 -0
  22. package/dist/shared/attributes.js +2 -0
  23. package/dist/shared/bricks.d.ts +140 -0
  24. package/dist/shared/bricks.js +2 -0
  25. package/dist/shared/datasources/external/facebook/posts/fetcher.d.ts +16 -0
  26. package/dist/shared/datasources/external/facebook/posts/fetcher.js +2 -0
  27. package/dist/shared/datasources/external/facebook/posts/schema.d.ts +31 -0
  28. package/dist/shared/datasources/external/facebook/posts/schema.js +2 -0
  29. package/dist/shared/datasources/external/instagram/feed/fetcher.d.ts +16 -0
  30. package/dist/shared/datasources/external/instagram/feed/fetcher.js +2 -0
  31. package/dist/shared/datasources/external/instagram/feed/schema.d.ts +23 -0
  32. package/dist/shared/datasources/external/instagram/feed/schema.js +2 -0
  33. package/dist/shared/datasources/external/json/fetcher.d.ts +17 -0
  34. package/dist/shared/datasources/external/json/fetcher.js +2 -0
  35. package/dist/shared/datasources/external/json/options.d.ts +11 -0
  36. package/dist/shared/datasources/external/json/options.js +2 -0
  37. package/dist/shared/datasources/external/mastodon/account/fetcher.d.ts +15 -0
  38. package/dist/shared/datasources/external/mastodon/account/fetcher.js +2 -0
  39. package/dist/shared/datasources/external/mastodon/account/schema.d.ts +43 -0
  40. package/dist/shared/datasources/external/mastodon/account/schema.js +2 -0
  41. package/dist/shared/datasources/external/mastodon/options.d.ts +10 -0
  42. package/dist/shared/datasources/external/mastodon/options.js +2 -0
  43. package/dist/shared/datasources/external/mastodon/status/fetcher.d.ts +15 -0
  44. package/dist/shared/datasources/external/mastodon/status/fetcher.js +2 -0
  45. package/dist/shared/datasources/external/mastodon/status/sample.array.d.ts +53 -0
  46. package/dist/shared/datasources/external/mastodon/status/sample.array.js +2 -0
  47. package/dist/shared/datasources/external/mastodon/status/sample.single.d.ts +53 -0
  48. package/dist/shared/datasources/external/mastodon/status/sample.single.js +2 -0
  49. package/dist/shared/datasources/external/mastodon/status/schema.d.ts +261 -0
  50. package/dist/shared/datasources/external/mastodon/status/schema.js +2 -0
  51. package/dist/shared/datasources/external/meta/oauth/config.d.ts +21 -0
  52. package/dist/shared/datasources/external/meta/oauth/config.js +1 -0
  53. package/dist/shared/datasources/external/meta/options.d.ts +10 -0
  54. package/dist/shared/datasources/external/meta/options.js +2 -0
  55. package/dist/shared/datasources/external/rss/fetcher.d.ts +15 -0
  56. package/dist/shared/datasources/external/rss/fetcher.js +2 -0
  57. package/dist/shared/datasources/external/rss/options.d.ts +10 -0
  58. package/dist/shared/datasources/external/rss/options.js +2 -0
  59. package/dist/shared/datasources/external/rss/schema.d.ts +19 -0
  60. package/dist/shared/datasources/external/rss/schema.js +2 -0
  61. package/dist/shared/datasources/external/threads/media/fetcher.d.ts +19 -0
  62. package/dist/shared/datasources/external/threads/media/fetcher.js +2 -0
  63. package/dist/shared/datasources/external/threads/media/schema.d.ts +30 -0
  64. package/dist/shared/datasources/external/threads/media/schema.js +2 -0
  65. package/dist/shared/datasources/external/tiktok/oauth/config.d.ts +22 -0
  66. package/dist/shared/datasources/external/tiktok/oauth/config.js +1 -0
  67. package/dist/shared/datasources/external/tiktok/video/fetcher.d.ts +16 -0
  68. package/dist/shared/datasources/external/tiktok/video/fetcher.js +2 -0
  69. package/dist/shared/datasources/external/tiktok/video/options.d.ts +10 -0
  70. package/dist/shared/datasources/external/tiktok/video/options.js +2 -0
  71. package/dist/shared/datasources/external/tiktok/video/schema.d.ts +25 -0
  72. package/dist/shared/datasources/external/tiktok/video/schema.js +2 -0
  73. package/dist/shared/datasources/external/youtube/list/fetcher.d.ts +16 -0
  74. package/dist/shared/datasources/external/youtube/list/fetcher.js +2 -0
  75. package/dist/shared/datasources/external/youtube/list/options.d.ts +14 -0
  76. package/dist/shared/datasources/external/youtube/list/options.js +2 -0
  77. package/dist/shared/datasources/external/youtube/list/schema.d.ts +43 -0
  78. package/dist/shared/datasources/external/youtube/list/schema.js +2 -0
  79. package/dist/shared/datasources/external/youtube/oauth/config.d.ts +22 -0
  80. package/dist/shared/datasources/external/youtube/oauth/config.js +1 -0
  81. package/dist/shared/datasources/internal/contact-info/schema.d.ts +17 -0
  82. package/dist/shared/datasources/internal/contact-info/schema.js +2 -0
  83. package/dist/shared/datasources/internal/faq/schema.d.ts +12 -0
  84. package/dist/shared/datasources/internal/faq/schema.js +2 -0
  85. package/dist/shared/datasources/internal/links/schema.d.ts +12 -0
  86. package/dist/shared/datasources/internal/links/schema.js +2 -0
  87. package/dist/shared/datasources/samples.d.ts +13 -0
  88. package/dist/shared/datasources/samples.js +2 -0
  89. package/dist/shared/datasources/types.d.ts +9 -0
  90. package/dist/shared/datasources/types.js +2 -0
  91. package/dist/shared/datasources/utils.d.ts +3 -0
  92. package/dist/shared/datasources/utils.js +2 -0
  93. package/dist/shared/datasources-DAysbbXK.d.ts +201 -0
  94. package/dist/shared/datasources.d.ts +9 -0
  95. package/dist/shared/datasources.js +2 -0
  96. package/dist/shared/env.d.ts +27 -0
  97. package/dist/shared/env.js +1 -0
  98. package/dist/shared/errors.d.ts +1 -0
  99. package/dist/shared/errors.js +2 -0
  100. package/dist/shared/index.d.ts +5 -0
  101. package/dist/shared/index.js +2 -0
  102. package/dist/shared/layout-constants.d.ts +20 -0
  103. package/dist/shared/layout-constants.js +2 -0
  104. package/dist/shared/manifest.d.ts +34 -0
  105. package/dist/shared/manifest.js +2 -0
  106. package/dist/shared/metafile-esm.json +1 -0
  107. package/dist/shared/page.d.ts +9 -0
  108. package/dist/shared/page.js +2 -0
  109. package/dist/shared/responsive.d.ts +6 -0
  110. package/dist/shared/responsive.js +2 -0
  111. package/dist/shared/social-icons.d.ts +6 -0
  112. package/dist/shared/social-icons.js +2 -0
  113. package/dist/shared/template-config.d.ts +9 -0
  114. package/dist/shared/template-config.js +1 -0
  115. package/dist/shared/theme.d.ts +37 -0
  116. package/dist/shared/theme.js +2 -0
  117. package/dist/shared/themes/all-themes.d.ts +6 -0
  118. package/dist/shared/themes/all-themes.js +2 -0
  119. package/dist/shared/themes/color-system.d.ts +323 -0
  120. package/dist/shared/themes/color-system.js +2 -0
  121. package/dist/shared/utils/invariant.d.ts +8 -0
  122. package/dist/shared/utils/invariant.js +2 -0
  123. package/dist/shared/utils/layout-utils.d.ts +24 -0
  124. package/dist/shared/utils/layout-utils.js +2 -0
  125. package/env.d.ts +24 -0
  126. package/package.json +162 -0
@@ -0,0 +1 @@
1
+ {"inputs":{"src/shared/ajv.ts":{"bytes":1076,"imports":[{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true}],"format":"esm"},"src/shared/attributes.ts":{"bytes":8687,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox/value","kind":"import-statement","external":true}],"format":"esm"},"src/shared/layout-constants.ts":{"bytes":488,"imports":[],"format":"esm"},"src/shared/bricks.ts":{"bytes":7546,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"nanoid","kind":"import-statement","external":true},{"path":"src/shared/layout-constants.ts","kind":"import-statement","original":"./layout-constants"}],"format":"esm"},"src/shared/datasources/external/youtube/list/schema.ts":{"bytes":1172,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/facebook/posts/schema.ts":{"bytes":861,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/instagram/feed/schema.ts":{"bytes":684,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/mastodon/account/schema.ts":{"bytes":1328,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/mastodon/status/schema.ts":{"bytes":3756,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"src/shared/datasources/external/mastodon/account/schema.ts","kind":"import-statement","original":"../account/schema"}],"format":"esm"},"src/shared/datasources/external/rss/schema.ts":{"bytes":1468,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/threads/media/schema.ts":{"bytes":997,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/tiktok/video/schema.ts":{"bytes":692,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/types.ts":{"bytes":1195,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"zod","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/youtube/list/options.ts":{"bytes":499,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"src/shared/datasources/types.ts","kind":"import-statement","original":"~/shared/datasources/types"}],"format":"esm"},"src/shared/datasources/external/meta/options.ts":{"bytes":288,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"src/shared/datasources/types.ts","kind":"import-statement","original":"../../types"}],"format":"esm"},"src/shared/datasources/external/mastodon/options.ts":{"bytes":321,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"src/shared/datasources/types.ts","kind":"import-statement","original":"~/shared/datasources/types"}],"format":"esm"},"src/shared/datasources/external/json/options.ts":{"bytes":354,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"src/shared/datasources/types.ts","kind":"import-statement","original":"../../types"}],"format":"esm"},"src/shared/datasources/external/rss/options.ts":{"bytes":300,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"src/shared/datasources/types.ts","kind":"import-statement","original":"~/shared/datasources/types"}],"format":"esm"},"src/shared/datasources/external/tiktok/video/options.ts":{"bytes":312,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"src/shared/datasources/types.ts","kind":"import-statement","original":"~/shared/datasources/types"}],"format":"esm"},"src/shared/datasources.ts":{"bytes":4214,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"src/shared/datasources/external/youtube/list/schema.ts","kind":"import-statement","original":"./datasources/external/youtube/list/schema"},{"path":"src/shared/datasources/external/facebook/posts/schema.ts","kind":"import-statement","original":"./datasources/external/facebook/posts/schema"},{"path":"src/shared/datasources/external/instagram/feed/schema.ts","kind":"import-statement","original":"./datasources/external/instagram/feed/schema"},{"path":"src/shared/datasources/external/mastodon/status/schema.ts","kind":"import-statement","original":"./datasources/external/mastodon/status/schema"},{"path":"src/shared/datasources/external/rss/schema.ts","kind":"import-statement","original":"./datasources/external/rss/schema"},{"path":"src/shared/datasources/external/threads/media/schema.ts","kind":"import-statement","original":"./datasources/external/threads/media/schema"},{"path":"src/shared/datasources/external/tiktok/video/schema.ts","kind":"import-statement","original":"./datasources/external/tiktok/video/schema"},{"path":"src/shared/datasources/external/youtube/list/options.ts","kind":"import-statement","original":"./datasources/external/youtube/list/options"},{"path":"src/shared/datasources/external/meta/options.ts","kind":"import-statement","original":"./datasources/external/meta/options"},{"path":"src/shared/datasources/external/mastodon/options.ts","kind":"import-statement","original":"./datasources/external/mastodon/options"},{"path":"src/shared/datasources/external/json/options.ts","kind":"import-statement","original":"./datasources/external/json/options"},{"path":"src/shared/datasources/external/rss/options.ts","kind":"import-statement","original":"./datasources/external/rss/options"},{"path":"src/shared/datasources/external/tiktok/video/options.ts","kind":"import-statement","original":"./datasources/external/tiktok/video/options"},{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/env.ts":{"bytes":865,"imports":[],"format":"esm"},"src/shared/errors.ts":{"bytes":58,"imports":[{"path":"http-errors-enhanced","kind":"import-statement","external":true}],"format":"esm"},"src/shared/index.ts":{"bytes":42,"imports":[],"format":"esm"},"src/shared/manifest.ts":{"bytes":605,"imports":[{"path":"zod","kind":"import-statement","external":true}],"format":"esm"},"src/shared/utils/invariant.ts":{"bytes":846,"imports":[],"format":"esm"},"src/shared/page.ts":{"bytes":2329,"imports":[{"path":"src/shared/attributes.ts","kind":"import-statement","original":"./attributes"},{"path":"src/shared/utils/invariant.ts","kind":"import-statement","original":"./utils/invariant"}],"format":"esm"},"src/shared/responsive.ts":{"bytes":144,"imports":[{"path":"zod","kind":"import-statement","external":true}],"format":"esm"},"src/shared/social-icons.ts":{"bytes":30136,"imports":[],"format":"esm"},"src/shared/template-config.ts":{"bytes":706,"imports":[],"format":"esm"},"src/shared/theme.ts":{"bytes":6991,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/facebook/posts/sample.ts":{"bytes":970,"imports":[],"format":"esm"},"src/shared/datasources/external/instagram/feed/sample.ts":{"bytes":647,"imports":[],"format":"esm"},"src/shared/datasources/external/mastodon/status/sample.array.ts":{"bytes":1923,"imports":[],"format":"esm"},"src/shared/datasources/external/rss/sample.ts":{"bytes":684,"imports":[],"format":"esm"},"src/shared/datasources/external/threads/media/sample.ts":{"bytes":1076,"imports":[],"format":"esm"},"src/shared/datasources/external/tiktok/video/sample.ts":{"bytes":700,"imports":[],"format":"esm"},"src/shared/datasources/external/youtube/list/sample.ts":{"bytes":1989,"imports":[],"format":"esm"},"src/shared/datasources/samples.ts":{"bytes":1014,"imports":[{"path":"src/shared/datasources/external/facebook/posts/sample.ts","kind":"import-statement","original":"./external/facebook/posts/sample"},{"path":"src/shared/datasources/external/instagram/feed/sample.ts","kind":"import-statement","original":"./external/instagram/feed/sample"},{"path":"src/shared/datasources/external/mastodon/status/sample.array.ts","kind":"import-statement","original":"./external/mastodon/status/sample.array"},{"path":"src/shared/datasources/external/rss/sample.ts","kind":"import-statement","original":"./external/rss/sample"},{"path":"src/shared/datasources/external/threads/media/sample.ts","kind":"import-statement","original":"./external/threads/media/sample"},{"path":"src/shared/datasources/external/tiktok/video/sample.ts","kind":"import-statement","original":"./external/tiktok/video/sample"},{"path":"src/shared/datasources/external/youtube/list/sample.ts","kind":"import-statement","original":"./external/youtube/list/sample"}],"format":"esm"},"src/shared/datasources/utils.ts":{"bytes":223,"imports":[],"format":"esm"},"src/shared/themes/all-themes.ts":{"bytes":57886,"imports":[],"format":"esm"},"src/shared/themes/color-system.ts":{"bytes":24770,"imports":[{"path":"chroma-js","kind":"import-statement","external":true},{"path":"../utils/invariant","kind":"import-statement","external":true},{"path":"chroma-js","kind":"import-statement","external":true},{"path":"@upstart.gg/style-system/twind","kind":"import-statement","external":true}],"format":"esm"},"src/shared/utils/layout-utils.ts":{"bytes":3295,"imports":[{"path":"src/shared/layout-constants.ts","kind":"import-statement","original":"../layout-constants"}],"format":"esm"},"src/shared/datasources/external/json/fetcher.ts":{"bytes":1163,"imports":[{"path":"lodash-es","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/rss/fetcher.ts":{"bytes":1068,"imports":[{"path":"htmlparser2","kind":"import-statement","external":true},{"path":"src/shared/datasources/external/rss/schema.ts","kind":"import-statement","original":"./schema"},{"path":"src/shared/ajv.ts","kind":"import-statement","original":"~/shared/ajv"}],"format":"esm"},"src/shared/datasources/internal/links/schema.ts":{"bytes":454,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/internal/contact-info/schema.ts":{"bytes":312,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"src/shared/datasources/internal/links/schema.ts","kind":"import-statement","original":"../links/schema"}],"format":"esm"},"src/shared/datasources/internal/faq/schema.ts":{"bytes":457,"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"format":"esm"},"src/shared/datasources/external/facebook/posts/fetcher.ts":{"bytes":1835,"imports":[{"path":"src/shared/datasources/external/facebook/posts/schema.ts","kind":"import-statement","original":"./schema"},{"path":"src/shared/errors.ts","kind":"import-statement","original":"~/shared/errors"},{"path":"src/shared/datasources/utils.ts","kind":"import-statement","original":"~/shared/datasources/utils"},{"path":"src/shared/ajv.ts","kind":"import-statement","original":"~/shared/ajv"}],"format":"esm"},"src/shared/datasources/external/instagram/feed/fetcher.ts":{"bytes":1626,"imports":[{"path":"src/shared/datasources/external/instagram/feed/schema.ts","kind":"import-statement","original":"./schema"},{"path":"src/shared/errors.ts","kind":"import-statement","original":"~/shared/errors"},{"path":"src/shared/datasources/utils.ts","kind":"import-statement","original":"~/shared/datasources/utils"},{"path":"src/shared/ajv.ts","kind":"import-statement","original":"~/shared/ajv"}],"format":"esm"},"src/shared/datasources/external/mastodon/account/fetcher.ts":{"bytes":1111,"imports":[{"path":"src/shared/datasources/external/mastodon/account/schema.ts","kind":"import-statement","original":"./schema"},{"path":"src/shared/ajv.ts","kind":"import-statement","original":"~/shared/ajv"}],"format":"esm"},"src/shared/datasources/external/mastodon/status/fetcher.ts":{"bytes":1479,"imports":[{"path":"src/shared/datasources/external/mastodon/status/schema.ts","kind":"import-statement","original":"./schema"},{"path":"src/shared/datasources/external/mastodon/account/fetcher.ts","kind":"import-statement","original":"../account/fetcher"},{"path":"src/shared/errors.ts","kind":"import-statement","original":"~/shared/errors"},{"path":"src/shared/ajv.ts","kind":"import-statement","original":"~/shared/ajv"}],"format":"esm"},"src/shared/datasources/external/mastodon/status/sample.single.ts":{"bytes":1786,"imports":[],"format":"esm"},"src/shared/datasources/external/meta/oauth/config.ts":{"bytes":300,"imports":[],"format":"esm"},"src/shared/datasources/external/threads/media/fetcher.ts":{"bytes":2027,"imports":[{"path":"src/shared/datasources/external/threads/media/schema.ts","kind":"import-statement","original":"./schema"},{"path":"src/shared/utils/invariant.ts","kind":"import-statement","original":"~/shared/utils/invariant"},{"path":"src/shared/errors.ts","kind":"import-statement","original":"~/shared/errors"},{"path":"src/shared/datasources/utils.ts","kind":"import-statement","original":"~/shared/datasources/utils"},{"path":"src/shared/ajv.ts","kind":"import-statement","original":"~/shared/ajv"}],"format":"esm"},"src/shared/datasources/external/tiktok/oauth/config.ts":{"bytes":324,"imports":[],"format":"esm"},"src/shared/datasources/external/tiktok/video/fetcher.ts":{"bytes":1710,"imports":[{"path":"src/shared/datasources/external/tiktok/video/schema.ts","kind":"import-statement","original":"./schema"},{"path":"src/shared/errors.ts","kind":"import-statement","original":"~/shared/errors"},{"path":"src/shared/ajv.ts","kind":"import-statement","original":"~/shared/ajv"}],"format":"esm"},"src/shared/datasources/external/youtube/list/fetcher.ts":{"bytes":1484,"imports":[{"path":"src/shared/datasources/external/youtube/list/schema.ts","kind":"import-statement","original":"./schema"},{"path":"src/shared/errors.ts","kind":"import-statement","original":"~/shared/errors"},{"path":"src/shared/datasources/utils.ts","kind":"import-statement","original":"~/shared/datasources/utils"},{"path":"src/shared/ajv.ts","kind":"import-statement","original":"~/shared/ajv"}],"format":"esm"},"src/shared/datasources/external/youtube/oauth/config.ts":{"bytes":328,"imports":[],"format":"esm"}},"outputs":{"dist/shared/ajv.js":{"imports":[{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true}],"exports":["ajv","serializeAjvErrors"],"entryPoint":"src/shared/ajv.ts","inputs":{"src/shared/ajv.ts":{"bytesInOutput":556}},"bytes":696},"dist/shared/attributes.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox/value","kind":"import-statement","external":true}],"exports":["attr","defineAttributes","resolveAttributes"],"entryPoint":"src/shared/attributes.ts","inputs":{"src/shared/attributes.ts":{"bytesInOutput":4184}},"bytes":4346},"dist/shared/bricks.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"nanoid","kind":"import-statement","external":true}],"exports":["createRow","defineBrickManifest","defineBricks","generateId"],"entryPoint":"src/shared/bricks.ts","inputs":{"src/shared/bricks.ts":{"bytesInOutput":1999},"src/shared/layout-constants.ts":{"bytesInOutput":29}},"bytes":2209},"dist/shared/datasources.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"zod","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["defineDataSources","ds","providersOptionsMap","providersSchemaMap"],"entryPoint":"src/shared/datasources.ts","inputs":{"src/shared/datasources.ts":{"bytesInOutput":432},"src/shared/datasources/external/youtube/list/schema.ts":{"bytesInOutput":637},"src/shared/datasources/external/facebook/posts/schema.ts":{"bytesInOutput":465},"src/shared/datasources/external/instagram/feed/schema.ts":{"bytesInOutput":395},"src/shared/datasources/external/mastodon/status/schema.ts":{"bytesInOutput":2218},"src/shared/datasources/external/mastodon/account/schema.ts":{"bytesInOutput":871},"src/shared/datasources/external/rss/schema.ts":{"bytesInOutput":899},"src/shared/datasources/external/threads/media/schema.ts":{"bytesInOutput":573},"src/shared/datasources/external/tiktok/video/schema.ts":{"bytesInOutput":355},"src/shared/datasources/external/youtube/list/options.ts":{"bytesInOutput":235},"src/shared/datasources/types.ts":{"bytesInOutput":246},"src/shared/datasources/external/meta/options.ts":{"bytesInOutput":105},"src/shared/datasources/external/mastodon/options.ts":{"bytesInOutput":96},"src/shared/datasources/external/json/options.ts":{"bytesInOutput":143},"src/shared/datasources/external/rss/options.ts":{"bytesInOutput":105},"src/shared/datasources/external/tiktok/video/options.ts":{"bytesInOutput":96}},"bytes":8062},"dist/shared/env.js":{"imports":[],"exports":[],"entryPoint":"src/shared/env.ts","inputs":{"src/shared/env.ts":{"bytesInOutput":0}},"bytes":98},"dist/shared/errors.js":{"imports":[{"path":"http-errors-enhanced","kind":"import-statement","external":true}],"exports":["UnauthorizedError"],"entryPoint":"src/shared/errors.ts","inputs":{"src/shared/errors.ts":{"bytesInOutput":57}},"bytes":187},"dist/shared/index.js":{"imports":[],"exports":["default"],"entryPoint":"src/shared/index.ts","inputs":{"src/shared/index.ts":{"bytesInOutput":26}},"bytes":146},"dist/shared/layout-constants.js":{"imports":[],"exports":["LAYOUT_BREAKPOINTS","LAYOUT_COLS","LAYOUT_ROW_HEIGHT"],"entryPoint":"src/shared/layout-constants.ts","inputs":{"src/shared/layout-constants.ts":{"bytesInOutput":60}},"bytes":231},"dist/shared/manifest.js":{"imports":[{"path":"zod","kind":"import-statement","external":true}],"exports":["defineManifest","templateManifestSchema"],"entryPoint":"src/shared/manifest.ts","inputs":{"src/shared/manifest.ts":{"bytesInOutput":292}},"bytes":447},"dist/shared/page.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox/value","kind":"import-statement","external":true}],"exports":["createPageConfigSampleFromTemplateConfig","definePages"],"entryPoint":"src/shared/page.ts","inputs":{"src/shared/attributes.ts":{"bytesInOutput":3970},"src/shared/utils/invariant.ts":{"bytesInOutput":124},"src/shared/page.ts":{"bytesInOutput":349}},"bytes":4613},"dist/shared/responsive.js":{"imports":[{"path":"zod","kind":"import-statement","external":true}],"exports":["responsiveMode"],"entryPoint":"src/shared/responsive.ts","inputs":{"src/shared/responsive.ts":{"bytesInOutput":54}},"bytes":181},"dist/shared/social-icons.js":{"imports":[],"exports":["socialIcons"],"entryPoint":"src/shared/social-icons.ts","inputs":{"src/shared/social-icons.ts":{"bytesInOutput":28645}},"bytes":28769},"dist/shared/template-config.js":{"imports":[],"exports":[],"entryPoint":"src/shared/template-config.ts","inputs":{"src/shared/template-config.ts":{"bytesInOutput":0}},"bytes":98},"dist/shared/theme.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["defineCustomThemes","themeSchema"],"entryPoint":"src/shared/theme.ts","inputs":{"src/shared/theme.ts":{"bytesInOutput":4237}},"bytes":4385},"dist/shared/datasources/samples.js":{"imports":[],"exports":["samples"],"entryPoint":"src/shared/datasources/samples.ts","inputs":{"src/shared/datasources/external/facebook/posts/sample.ts":{"bytesInOutput":615},"src/shared/datasources/external/instagram/feed/sample.ts":{"bytesInOutput":425},"src/shared/datasources/external/mastodon/status/sample.array.ts":{"bytesInOutput":1368},"src/shared/datasources/external/rss/sample.ts":{"bytesInOutput":459},"src/shared/datasources/external/threads/media/sample.ts":{"bytesInOutput":675},"src/shared/datasources/external/tiktok/video/sample.ts":{"bytesInOutput":401},"src/shared/datasources/external/youtube/list/sample.ts":{"bytesInOutput":1551},"src/shared/datasources/samples.ts":{"bytesInOutput":124}},"bytes":5738},"dist/shared/datasources/types.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"zod","kind":"import-statement","external":true}],"exports":["datasourceProvider","providerOptions"],"entryPoint":"src/shared/datasources/types.ts","inputs":{"src/shared/datasources/types.ts":{"bytesInOutput":245}},"bytes":397},"dist/shared/datasources/utils.js":{"imports":[],"exports":["stringifyObjectValues"],"entryPoint":"src/shared/datasources/utils.ts","inputs":{"src/shared/datasources/utils.ts":{"bytesInOutput":90}},"bytes":224},"dist/shared/themes/all-themes.js":{"imports":[],"exports":["themes"],"entryPoint":"src/shared/themes/all-themes.ts","inputs":{"src/shared/themes/all-themes.ts":{"bytesInOutput":37034}},"bytes":37153},"dist/shared/themes/color-system.js":{"imports":[{"path":"chroma-js","kind":"import-statement","external":true},{"path":"chroma-js","kind":"import-statement","external":true},{"path":"@upstart.gg/style-system/twind","kind":"import-statement","external":true}],"exports":["chroma","colorAdjustmentBaseValues","colorAdjustments","colorAdjustmentsLuminous","colorAdjustmentsSubdued","colorFamilies","generateColorsVars","generateReadableTextColor","generateShades","generateTextColors","generateVariantClasses","getColorsSuggestions","getHarmoniousHues","isStandardColor","propToStyle","shades"],"entryPoint":"src/shared/themes/color-system.ts","inputs":{"src/shared/themes/color-system.ts":{"bytesInOutput":11223}},"bytes":11699},"dist/shared/utils/invariant.js":{"imports":[],"exports":["default"],"entryPoint":"src/shared/utils/invariant.ts","inputs":{"src/shared/utils/invariant.ts":{"bytesInOutput":124}},"bytes":244},"dist/shared/utils/layout-utils.js":{"imports":[],"exports":["adjustMobileLayout","canDropOnLayout"],"entryPoint":"src/shared/utils/layout-utils.ts","inputs":{"src/shared/layout-constants.ts":{"bytesInOutput":29},"src/shared/utils/layout-utils.ts":{"bytesInOutput":724}},"bytes":905},"dist/shared/datasources/external/json/fetcher.js":{"imports":[{"path":"lodash-es","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/shared/datasources/external/json/fetcher.ts","inputs":{"src/shared/datasources/external/json/fetcher.ts":{"bytesInOutput":411}},"bytes":531},"dist/shared/datasources/external/json/options.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"zod","kind":"import-statement","external":true}],"exports":["httpJsonOptions"],"entryPoint":"src/shared/datasources/external/json/options.ts","inputs":{"src/shared/datasources/external/json/options.ts":{"bytesInOutput":143},"src/shared/datasources/types.ts":{"bytesInOutput":245}},"bytes":516},"dist/shared/datasources/external/mastodon/options.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"zod","kind":"import-statement","external":true}],"exports":["mastodonCommonOptions"],"entryPoint":"src/shared/datasources/external/mastodon/options.ts","inputs":{"src/shared/datasources/external/mastodon/options.ts":{"bytesInOutput":96},"src/shared/datasources/types.ts":{"bytesInOutput":245}},"bytes":475},"dist/shared/datasources/external/meta/options.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"zod","kind":"import-statement","external":true}],"exports":["metaOptions"],"entryPoint":"src/shared/datasources/external/meta/options.ts","inputs":{"src/shared/datasources/external/meta/options.ts":{"bytesInOutput":105},"src/shared/datasources/types.ts":{"bytesInOutput":245}},"bytes":474},"dist/shared/datasources/external/rss/fetcher.js":{"imports":[{"path":"htmlparser2","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/shared/datasources/external/rss/fetcher.ts","inputs":{"src/shared/datasources/external/rss/fetcher.ts":{"bytesInOutput":430},"src/shared/datasources/external/rss/schema.ts":{"bytesInOutput":899},"src/shared/ajv.ts":{"bytesInOutput":556}},"bytes":2005},"dist/shared/datasources/external/rss/options.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"zod","kind":"import-statement","external":true}],"exports":["rssOptions"],"entryPoint":"src/shared/datasources/external/rss/options.ts","inputs":{"src/shared/datasources/external/rss/options.ts":{"bytesInOutput":105},"src/shared/datasources/types.ts":{"bytesInOutput":245}},"bytes":473},"dist/shared/datasources/external/rss/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["rssSchema"],"entryPoint":"src/shared/datasources/external/rss/schema.ts","inputs":{"src/shared/datasources/external/rss/schema.ts":{"bytesInOutput":899}},"bytes":1021},"dist/shared/datasources/internal/contact-info/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["contactInfo"],"entryPoint":"src/shared/datasources/internal/contact-info/schema.ts","inputs":{"src/shared/datasources/internal/contact-info/schema.ts":{"bytesInOutput":142},"src/shared/datasources/internal/links/schema.ts":{"bytesInOutput":263}},"bytes":529},"dist/shared/datasources/internal/faq/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["faq"],"entryPoint":"src/shared/datasources/internal/faq/schema.ts","inputs":{"src/shared/datasources/internal/faq/schema.ts":{"bytesInOutput":266}},"bytes":382},"dist/shared/datasources/internal/links/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["links"],"entryPoint":"src/shared/datasources/internal/links/schema.ts","inputs":{"src/shared/datasources/internal/links/schema.ts":{"bytesInOutput":263}},"bytes":381},"dist/shared/datasources/external/facebook/posts/fetcher.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"http-errors-enhanced","kind":"import-statement","external":true},{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/shared/datasources/external/facebook/posts/fetcher.ts","inputs":{"src/shared/datasources/external/facebook/posts/schema.ts":{"bytesInOutput":465},"src/shared/errors.ts":{"bytesInOutput":57},"src/shared/datasources/utils.ts":{"bytesInOutput":90},"src/shared/ajv.ts":{"bytesInOutput":556},"src/shared/datasources/external/facebook/posts/fetcher.ts":{"bytesInOutput":715}},"bytes":2003},"dist/shared/datasources/external/facebook/posts/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["facebookPostSchema"],"entryPoint":"src/shared/datasources/external/facebook/posts/schema.ts","inputs":{"src/shared/datasources/external/facebook/posts/schema.ts":{"bytesInOutput":465}},"bytes":596},"dist/shared/datasources/external/instagram/feed/fetcher.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"http-errors-enhanced","kind":"import-statement","external":true},{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/shared/datasources/external/instagram/feed/fetcher.ts","inputs":{"src/shared/datasources/external/instagram/feed/schema.ts":{"bytesInOutput":395},"src/shared/errors.ts":{"bytesInOutput":57},"src/shared/datasources/utils.ts":{"bytesInOutput":90},"src/shared/ajv.ts":{"bytesInOutput":556},"src/shared/datasources/external/instagram/feed/fetcher.ts":{"bytesInOutput":604}},"bytes":1822},"dist/shared/datasources/external/instagram/feed/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["instagramFeedSchema"],"entryPoint":"src/shared/datasources/external/instagram/feed/schema.ts","inputs":{"src/shared/datasources/external/instagram/feed/schema.ts":{"bytesInOutput":395}},"bytes":527},"dist/shared/datasources/external/mastodon/account/fetcher.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/shared/datasources/external/mastodon/account/fetcher.ts","inputs":{"src/shared/datasources/external/mastodon/account/schema.ts":{"bytesInOutput":871},"src/shared/ajv.ts":{"bytesInOutput":556},"src/shared/datasources/external/mastodon/account/fetcher.ts":{"bytesInOutput":398}},"bytes":1945},"dist/shared/datasources/external/mastodon/account/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["mastodonAccountSchema"],"entryPoint":"src/shared/datasources/external/mastodon/account/schema.ts","inputs":{"src/shared/datasources/external/mastodon/account/schema.ts":{"bytesInOutput":871}},"bytes":1005},"dist/shared/datasources/external/mastodon/status/fetcher.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true},{"path":"http-errors-enhanced","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/shared/datasources/external/mastodon/status/fetcher.ts","inputs":{"src/shared/datasources/external/mastodon/status/schema.ts":{"bytesInOutput":2218},"src/shared/datasources/external/mastodon/account/schema.ts":{"bytesInOutput":871},"src/shared/ajv.ts":{"bytesInOutput":556},"src/shared/datasources/external/mastodon/account/fetcher.ts":{"bytesInOutput":398},"src/shared/errors.ts":{"bytesInOutput":57},"src/shared/datasources/external/mastodon/status/fetcher.ts":{"bytesInOutput":504}},"bytes":4724},"dist/shared/datasources/external/mastodon/status/sample.array.js":{"imports":[],"exports":["sample"],"entryPoint":"src/shared/datasources/external/mastodon/status/sample.array.ts","inputs":{"src/shared/datasources/external/mastodon/status/sample.array.ts":{"bytesInOutput":1368}},"bytes":1487},"dist/shared/datasources/external/mastodon/status/sample.single.js":{"imports":[],"exports":["sample"],"entryPoint":"src/shared/datasources/external/mastodon/status/sample.single.ts","inputs":{"src/shared/datasources/external/mastodon/status/sample.single.ts":{"bytesInOutput":1366}},"bytes":1485},"dist/shared/datasources/external/mastodon/status/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["mastodonStatusArraySchema"],"entryPoint":"src/shared/datasources/external/mastodon/status/schema.ts","inputs":{"src/shared/datasources/external/mastodon/status/schema.ts":{"bytesInOutput":2218},"src/shared/datasources/external/mastodon/account/schema.ts":{"bytesInOutput":871}},"bytes":3227},"dist/shared/datasources/external/meta/oauth/config.js":{"imports":[],"exports":[],"entryPoint":"src/shared/datasources/external/meta/oauth/config.ts","inputs":{"src/shared/datasources/external/meta/oauth/config.ts":{"bytesInOutput":0}},"bytes":98},"dist/shared/datasources/external/threads/media/fetcher.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"http-errors-enhanced","kind":"import-statement","external":true},{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/shared/datasources/external/threads/media/fetcher.ts","inputs":{"src/shared/datasources/external/threads/media/schema.ts":{"bytesInOutput":573},"src/shared/utils/invariant.ts":{"bytesInOutput":124},"src/shared/errors.ts":{"bytesInOutput":57},"src/shared/datasources/utils.ts":{"bytesInOutput":90},"src/shared/ajv.ts":{"bytesInOutput":556},"src/shared/datasources/external/threads/media/fetcher.ts":{"bytesInOutput":755}},"bytes":2275},"dist/shared/datasources/external/threads/media/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["threadsMediaSchema"],"entryPoint":"src/shared/datasources/external/threads/media/schema.ts","inputs":{"src/shared/datasources/external/threads/media/schema.ts":{"bytesInOutput":573}},"bytes":704},"dist/shared/datasources/external/tiktok/oauth/config.js":{"imports":[],"exports":[],"entryPoint":"src/shared/datasources/external/tiktok/oauth/config.ts","inputs":{"src/shared/datasources/external/tiktok/oauth/config.ts":{"bytesInOutput":0}},"bytes":98},"dist/shared/datasources/external/tiktok/video/fetcher.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"http-errors-enhanced","kind":"import-statement","external":true},{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/shared/datasources/external/tiktok/video/fetcher.ts","inputs":{"src/shared/datasources/external/tiktok/video/schema.ts":{"bytesInOutput":355},"src/shared/errors.ts":{"bytesInOutput":57},"src/shared/ajv.ts":{"bytesInOutput":556},"src/shared/datasources/external/tiktok/video/fetcher.ts":{"bytesInOutput":712}},"bytes":1800},"dist/shared/datasources/external/tiktok/video/options.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"zod","kind":"import-statement","external":true}],"exports":["tiktokVideoOptions"],"entryPoint":"src/shared/datasources/external/tiktok/video/options.ts","inputs":{"src/shared/datasources/external/tiktok/video/options.ts":{"bytesInOutput":96},"src/shared/datasources/types.ts":{"bytesInOutput":245}},"bytes":472},"dist/shared/datasources/external/tiktok/video/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["tiktokVideoResponseSchema"],"entryPoint":"src/shared/datasources/external/tiktok/video/schema.ts","inputs":{"src/shared/datasources/external/tiktok/video/schema.ts":{"bytesInOutput":355}},"bytes":493},"dist/shared/datasources/external/youtube/list/fetcher.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"http-errors-enhanced","kind":"import-statement","external":true},{"path":"ajv","kind":"import-statement","external":true},{"path":"ajv-formats","kind":"import-statement","external":true}],"exports":["default"],"entryPoint":"src/shared/datasources/external/youtube/list/fetcher.ts","inputs":{"src/shared/datasources/external/youtube/list/schema.ts":{"bytesInOutput":637},"src/shared/errors.ts":{"bytesInOutput":57},"src/shared/datasources/utils.ts":{"bytesInOutput":90},"src/shared/ajv.ts":{"bytesInOutput":556},"src/shared/datasources/external/youtube/list/fetcher.ts":{"bytesInOutput":518}},"bytes":1978},"dist/shared/datasources/external/youtube/list/options.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"@sinclair/typebox","kind":"import-statement","external":true},{"path":"zod","kind":"import-statement","external":true}],"exports":["youtubeListOptions"],"entryPoint":"src/shared/datasources/external/youtube/list/options.ts","inputs":{"src/shared/datasources/external/youtube/list/options.ts":{"bytesInOutput":235},"src/shared/datasources/types.ts":{"bytesInOutput":245}},"bytes":611},"dist/shared/datasources/external/youtube/list/schema.js":{"imports":[{"path":"@sinclair/typebox","kind":"import-statement","external":true}],"exports":["youtubeListSchema"],"entryPoint":"src/shared/datasources/external/youtube/list/schema.ts","inputs":{"src/shared/datasources/external/youtube/list/schema.ts":{"bytesInOutput":637}},"bytes":767},"dist/shared/datasources/external/youtube/oauth/config.js":{"imports":[],"exports":[],"entryPoint":"src/shared/datasources/external/youtube/oauth/config.ts","inputs":{"src/shared/datasources/external/youtube/oauth/config.ts":{"bytesInOutput":0}},"bytes":98}}}
@@ -0,0 +1,9 @@
1
+ import '@sinclair/typebox';
2
+ export { G as GenericPageConfig, P as PageBasicInfo, b as PageConfig, T as TemplatePage, c as createPageConfigSampleFromTemplateConfig, d as definePages } from './datasources-DAysbbXK.js';
3
+ import './attributes.js';
4
+ import './bricks.js';
5
+ import 'zod';
6
+ import './manifest.js';
7
+ import './themes/color-system.js';
8
+ import './theme.js';
9
+ import 'chroma-js';
@@ -0,0 +1,2 @@
1
+ /*! Enpage - Copyright (C) 2024 Flippable - https://github.com/enpage/enpage/blob/main/LICENSE */
2
+ import{Type as r}from"@sinclair/typebox";import{Value as d}from"@sinclair/typebox/value";var a={string(t,e="",i){return r.String({title:t,default:e,...i})},number(t,e=0,i){return r.Number({title:t,default:e,...i})},boolean(t,e=!1,i){let n={"ui:field":"switch"};return r.Boolean({title:t,default:e,...n,...i})},enum(t,e,i){let n={"ui:field":"enum","ui:display":i.displayAs||"select"},{options:p,displayAs:m,...g}=i;return r.Union(p.map(o=>r.Literal(typeof o=="string"?o:o.value,{title:typeof o=="string"?o:o.title,"ui:icon":typeof o=="string"?void 0:o.icon})),{title:t,default:e,...n,...g})},file(t,e="",i={}){return r.String({title:t,default:e,...i,format:"data-url"})},url(t,e="",i={}){return r.String({title:t,default:e,...i,format:"uri"})},color(t,e="",i){let n={"ui:field":"color"};return r.String({title:t,default:e,...n,...i})},date(t,e=new Date,i={}){return r.String({title:t,default:e.toISOString(),...i,format:"date"})},datetime(t,e=new Date,i={}){return r.String({title:t,default:e.toISOString(),...i,format:"date-time"})},geolocation(t,e,i={}){return r.Object({lat:r.Number({minimum:-90,maximum:90}),lng:r.Number({minimum:-180,maximum:180}),name:r.Optional(r.String({title:"Name"}))},{title:t,default:e,...i})}},b={$pageLanguage:a.enum("Page language","en",{options:[{value:"ar",title:"Arabic"},{value:"zh",title:"Chinese"},{value:"cs",title:"Czech"},{value:"nl",title:"Dutch"},{value:"en",title:"English"},{value:"fr",title:"French"},{value:"de",title:"German"},{value:"he",title:"Hebrew"},{value:"hi",title:"Hindi"},{value:"it",title:"Italian"},{value:"ja",title:"Japanese"},{value:"ko",title:"Korean"},{value:"fa",title:"Persian"},{value:"pl",title:"Polish"},{value:"pt",title:"Portuguese"},{value:"ru",title:"Russian"},{value:"es",title:"Spanish"},{value:"tr",title:"Turkish"},{value:"vi",title:"Vietnamese"}],"ui:group":"meta","ui:group:title":"Meta tags / SEO"}),$pagePath:a.string("Page path","/",{description:"The URL path of the page","ui:group":"location","ui:group:title":"Location","ui:group:order":1,"ui:field":"path"}),$pageTitle:a.string("Page title","Untitled",{"ui:group":"meta","ui:group:title":"Meta tags / SEO"}),$pageDescription:a.string("Page description","",{"ui:widget":"textarea","ui:options":{rows:3,widget:"textarea"},"ui:group":"meta","ui:group:title":"Meta tags / SEO"}),$pageKeywords:a.string("Page keywords","",{"ui:group":"meta","ui:group:title":"Meta tags / SEO"}),$pageLastUpdated:a.datetime("Last updated",void 0,{"ui:hidden":!0}),$pageWidth:a.enum("Page width","max-w-screen-2xl",{options:[{value:"max-w-screen-lg",title:"M",description:"Common for text-heavy content/blog posts"},{value:"max-w-screen-xl",title:"L",description:"Usefull or some landing pages"},{value:"max-w-screen-2xl",title:"XL",description:"Common width"},{value:"max-w-full",title:"Full",description:"Takes the entire space"}],description:"The maximum width of the page. Desktop only.",displayAs:"button-group","ui:group":"layout","ui:group:title":"Page Layout & Design"}),$pagePaddingVertical:a.enum("Page vertical spacing","20",{options:[{value:"0",title:"None"},{value:"10",title:"S"},{value:"20",title:"M"},{value:"30",title:"L"},{value:"50",title:"XL"}],description:"Vertical spacing. Desktop only.",displayAs:"button-group","ui:group":"layout","ui:group:title":"Page Layout & Design"}),$pagePaddingHorizontal:a.enum("Page horizontal spacing","20",{options:[{value:"0",title:"None"},{value:"10",title:"S"},{value:"20",title:"M"},{value:"30",title:"L"},{value:"50",title:"XL"}],description:"Horizontal spacing. Desktop only.",displayAs:"button-group","ui:group":"layout","ui:group:title":"Page Layout & Design"}),$backgroundColor:a.color("Page background color","#ffffff",{"ui:field":"color","ui:group":"layout","ui:group:title":"Page Layout & Design"}),$textColor:a.color("Default text color","#222222",{"ui:field":"color","ui:group":"layout","ui:group:title":"Page Layout & Design","ui:color-type":"page-text"})};function l(t){return d.Create(t)}var s="Invariant failed";function u(t,e){if(t)return;let i=typeof e=="function"?e():e,n=i?`${s}: ${i}`:s;throw new Error(n)}function P(t,e="/"){let i=t.pages.find(n=>n.path===e)?.bricks;return u(i,`createPageConfigSampleFromTemplateConfig: No bricks found for path ${e}`),{id:"page-1",siteId:"site-1",hostname:"localhost",label:"Page #1",pagesMap:[],path:e,datasources:t.datasources,data:void 0,attributes:t.attributes,attr:l(t.attributes),bricks:i}}function x(t){return t}export{P as createPageConfigSampleFromTemplateConfig,x as definePages};
@@ -0,0 +1,6 @@
1
+ import z from 'zod';
2
+
3
+ declare const responsiveMode: z.ZodEnum<["mobile", "desktop"]>;
4
+ type ResponsiveMode = z.infer<typeof responsiveMode>;
5
+
6
+ export { type ResponsiveMode, responsiveMode };
@@ -0,0 +1,2 @@
1
+ /*! Enpage - Copyright (C) 2024 Flippable - https://github.com/enpage/enpage/blob/main/LICENSE */
2
+ import e from"zod";var p=e.enum(["mobile","desktop"]);export{p as responsiveMode};
@@ -0,0 +1,6 @@
1
+ declare const socialIcons: {
2
+ label: string;
3
+ svg: string;
4
+ }[];
5
+
6
+ export { socialIcons };
@@ -0,0 +1,2 @@
1
+ /*! Enpage - Copyright (C) 2024 Flippable - https://github.com/enpage/enpage/blob/main/LICENSE */
2
+ var o=[{label:"YouTube",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon></svg>'},{label:"Twitter/X",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path></svg>'},{label:"Instagram",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="2" width="20" height="20" rx="5" ry="5"></rect><path d="M16 11.37A4 4 0 1 1 12.63 8 4 4 0 0 1 16 11.37z"></path><line x1="17.5" y1="6.5" x2="17.51" y2="6.5"></line></svg>'},{label:"TikTok",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M9 12A4 4 0 1 0 9 20 4 4 0 1 0 9 12z"></path><path d="M15 8a4 4 0 1 0 0-8 4 4 0 0 0 0 8z"></path><path d="M15 8v8c0 1 1 4 4 4"></path></svg>'},{label:"Facebook",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z"></path></svg>'},{label:"OnlyFans",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z"></path><path d="M12 8v8"></path><path d="M8 12h8"></path></svg>'},{label:"LinkedIn",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z"></path><rect x="2" y="9" width="4" height="12"></rect><circle cx="4" cy="4" r="2"></circle></svg>'},{label:"Pinterest",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8 12a4 4 0 1 1 8 0 4 4 0 0 1-8 0z"></path><path d="M3 12h1m17 0h1M12 3v1m0 17v1m-.5-3.5L9 17m7.5 0L14 20.5M7.5 6.5L4 11m16-4.5L16.5 11"></path></svg>'},{label:"Flickr",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"Reddit",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="9"></circle><path d="M15 14a3 3 0 0 1-3 3m-3-3a3 3 0 0 0 3 3"></path><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path><line x1="12" y1="17" x2="12.01" y2="17"></line></svg>'},{label:"Snapchat",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2a10 10 0 0 0-10 10c0 1.8.5 3.5 1.3 5l-1.2 4.7 4.7-1.2c1.5.8 3.2 1.3 5 1.3a10 10 0 0 0 10-10 10 10 0 0 0-10-10z"></path><path d="M8.5 15.5c.8-2.3 2.5-3 3.5-3s2.7.7 3.5 3"></path></svg>'},{label:"Twitch",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 2H3v16h5v4l4-4h5l4-4V2zm-10 9V7m5 4V7"></path></svg>'},{label:"Discord",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.317 4.3698a19.7913 19.7913 0 00-4.8851-1.5152.0741.0741 0 00-.0785.0371c-.211.3753-.4447.8648-.6083 1.2495-1.8447-.2762-3.68-.2762-5.4868 0-.1636-.3933-.4058-.8742-.6177-1.2495a.077.077 0 00-.0785-.037 19.7363 19.7363 0 00-4.8852 1.515.0699.0699 0 00-.0321.0277C.5334 9.0458-.319 13.5799.0992 18.0578a.0824.0824 0 00.0312.0561c2.0528 1.5076 4.0413 2.4228 5.9929 3.0294a.0777.0777 0 00.0842-.0276c.4616-.6304.8731-1.2952 1.226-1.9942a.076.076 0 00-.0416-.1057c-.6528-.2476-1.2743-.5495-1.8722-.8923a.077.077 0 01-.0076-.1277c.1258-.0943.2517-.1923.3718-.2914a.0743.0743 0 01.0776-.0105c3.9278 1.7933 8.18 1.7933 12.0614 0a.0739.0739 0 01.0785.0095c.1202.099.246.1981.3728.2924a.077.077 0 01-.0066.1276 12.2986 12.2986 0 01-1.873.8914.0766.0766 0 00-.0407.1067c.3604.698.7719 1.3628 1.225 1.9932a.076.076 0 00.0842.0286c1.961-.6067 3.9495-1.5219 6.0023-3.0294a.077.077 0 00.0313-.0552c.5004-5.177-.8382-9.6739-3.5485-13.6604a.061.061 0 00-.0312-.0286zM8.02 15.3312c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9555-2.4189 2.157-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.9555 2.4189-2.1569 2.4189zm7.9748 0c-1.1825 0-2.1569-1.0857-2.1569-2.419 0-1.3332.9554-2.4189 2.1569-2.4189 1.2108 0 2.1757 1.0952 2.1568 2.419 0 1.3332-.946 2.4189-2.1568 2.4189Z"></path></svg>'},{label:"WhatsApp",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 11.5a8.38 8.38 0 0 1-.9 3.8 8.5 8.5 0 0 1-7.6 4.7 8.38 8.38 0 0 1-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 0 1-.9-3.8 8.5 8.5 0 0 1 4.7-7.6 8.38 8.38 0 0 1 3.8-.9h.5a8.48 8.48 0 0 1 8 8v.5z"></path></svg>'},{label:"Medium",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"Vimeo",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 3a10.9 10.9 0 0 1-3.14 1.53A4.48 4.48 0 0 0 18.3 6a9.72 9.72 0 0 1-6.16-2.36A4.48 4.48 0 0 0 12 4v1a4.48 4.48 0 0 0 1.88 3.69A4.48 4.48 0 0 1 15 9.5h1a4.48 4.48 0 0 0 3.69-1.88A9.72 9.72 0 0 1 23 3z"></path></svg>'},{label:"Quora",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"Github",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 0 0-3.8 23.4c.6.1.8-.3.8-.6v-2.2c-3.4.7-4.1-1.6-4.1-1.6-.5-1.3-1.3-1.6-1.3-1.6-1-.7.1-.7.1-.7 1.2.1 1.8 1.3 1.8 1.3 1 1.8 2.6 1.3 3.2 1 .1-.7.4-1.3.7-1.6-2.7-.3-5.6-1.3-5.6-5.9 0-1.3.5-2.4 1.2-3.2-.1-.3-.5-1.4.1-3 0 0 1-.3 3.2 1.2a11 11 0 0 1 5.8 0c2.2-1.5 3.2-1.2 3.2-1.2.6 1.6.2 2.7.1 3a4.6 4.6 0 0 1 1.2 3.2c0 4.6-2.9 5.6-5.7 5.9.4.3.8 1 .8 2.1v3.1c0 .3.2.7.8.6A12 12 0 0 0 12 0"></path></svg>'},{label:"GitLab",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="9.9,2 2,22 12,17 22,22 14.1,2"></polygon></svg>'},{label:"Bitbucket",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 2H2v20h20V2zM10 20H2v-7.6h8v7.6zm12-3.4h-8v-8h8v8z"></path></svg>'},{label:"Stack Overflow",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 22h16v-2H4v2zM4 17h16v-2H4v2zM8 12h8v2H8v-2zM12 7l4 4-4 4-4-4 4-4z"></path></svg>'},{label:"Behance",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M16 8h4v2h-4z"></path><path d="M16 12h4v2h-4z"></path><path d="M4 2h16v16H4z"></path></svg>'},{label:"Dribbble",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm2.5 3.5C16.5 7.5 18 9 18 9s-1.5 2-2 3.5c-1-1.5-2.5-2.5-4.5-3.5-1-1-2.5-2.5-2.5-2.5s1.5-1 2.5-2c1 0 2.5 1 2.5 1zm-5 0c0 1.5-.5 3-.5 3S6.5 10 6.5 10c0-2 2-3.5 2-3.5zm0 6c.5 1 1 2 1.5 3s.5 1.5 1.5 3-1 3.5-1 3.5 1.5 1 1.5 1 3-2 3-3.5-2-4.5-2-4.5-2 1.5-3.5 0zm8 4.5c-.5-1-1.5-3-3-4s-2-1-3-1 0 0 0 0c-1 0-2 0-3 1-1 1-2 3-2 4 0 1 0 2 1 2 1 0 3 0 4-1 1 0 3 0 4-1z"></path></svg>'},{label:"DeviantArt",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0L2 10h7v4H2l10 10 10-10h-7v-4h7L12 0z"></path></svg>'},{label:"CodePen",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0L2 6l10 6 10-6-10-6zm0 22.5L1.5 16l10-6 10 6-10 6.5zm-10-12L12 0v22L2 10.5zM12 0v22l10-12L12 0z"></path></svg>'},{label:"Dev.to",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M0 0v24h24V0H0zm10.75 18.63c0 .13-.09.27-.27.36-1.34.54-2.74.78-4.25.78C3.36 19.77 2 18.41 2 17V7c0-1.4 1.36-2.77 4.25-2.77 1.5 0 2.91.25 4.25.79.18.09.27.23.27.36v13.25zm3.5-7.5v5.5c0 1.02-.92 2.26-4.02 2.26-1.09 0-2.09-.19-3.02-.55v-10c.93-.36 1.93-.55 3.02-.55 3.1 0 4.02 1.24 4.02 2.26zm6.5 7.5c0 .13-.09.27-.27.36-1.34.54-2.74.78-4.25.78-1.5 0-2.91-.25-4.25-.79-.18-.09-.27-.23-.27-.36V4.88c0-.13.09-.27.27-.36 1.34-.54 2.74-.78 4.25-.78 1.5 0 2.91.25 4.25.78.18.09.27.23.27.36v12.5z"></path></svg>'},{label:"Slack",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M14.5 3a1.5 1.5 0 1 1 0 3H10a1.5 1.5 0 0 1 0-3z"></path><path d="M14.5 21a1.5 1.5 0 1 1 0 3H10a1.5 1.5 0 0 1 0-3z"></path><path d="M17 12.5a1.5 1.5 0 1 1 0-3H21a1.5 1.5 0 0 1 0 3z"></path><path d="M7 12.5a1.5 1.5 0 1 1 0-3H11a1.5 1.5 0 0 1 0 3z"></path><path d="M12.5 17a1.5 1.5 0 1 1 3 0V21a1.5 1.5 0 0 1-3 0z"></path><path d="M12.5 7a1.5 1.5 0 1 1 3 0V11a1.5 1.5 0 0 1-3 0z"></path><path d="M7 3a1.5 1.5 0 1 1 3 0V7a1.5 1.5 0 0 1-3 0z"></path><path d="M3 17a1.5 1.5 0 1 1 3 0V21a1.5 1.5 0 0 1-3 0z"></path></svg>'},{label:"Spotify",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 21 3z"></path></svg>'},{label:"SoundCloud",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 15.5a3.5 3.5 0 0 0-3.5-3.5H8a4 4 0 0 0 0 8h10a3.5 3.5 0 0 0 3-3.5z"></path><path d="M8 9a4 4 0 1 1 0-8 4 4 0 0 1 0 8z"></path></svg>'},{label:"Line",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.5 3A4.5 4.5 0 0 1 23 7.5v9A4.5 4.5 0 0 1 18.5 21h-13A4.5 4.5 0 0 1 1 16.5v-9A4.5 4.5 0 0 1 5.5 3z"></path><path d="M12 17l-3.5 3v-3H8a4.5 4.5 0 0 1 0-9h7a4.5 4.5 0 0 1 0 9h-1.5v3z"></path></svg>'},{label:"KakaoTalk",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 0 0-12 12c0 6.63 9 12 12 12s12-5.37 12-12S18.63 0 12 0zm0 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12z"></path></svg>'},{label:"Viber",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 3a10.9 10.9 0 0 1-3.14 1.53A4.48 4.48 0 0 0 15 6v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 21 3z"></path></svg>'},{label:"Periscope",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 0 0-12 12c0 6.63 9 12 12 12s12-5.37 12-12S18.63 0 12 0zm0 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12z"></path></svg>'},{label:"Mix",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 3a10.9 10.9 0 0 1-3.14 1.53A4.48 4.48 0 0 0 15 6v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 21 3z"></path></svg>'},{label:"Goodreads",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.5 3A4.5 4.5 0 0 1 23 7.5v9A4.5 4.5 0 0 1 18.5 21h-13A4.5 4.5 0 0 1 1 16.5v-9A4.5 4.5 0 0 1 5.5 3z"></path><path d="M12 12.5c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3z"></path></svg>'},{label:"Patreon",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.5 3A4.5 4.5 0 0 1 23 7.5v9A4.5 4.5 0 0 1 18.5 21h-13A4.5 4.5 0 0 1 1 16.5v-9A4.5 4.5 0 0 1 5.5 3z"></path><path d="M15 15.5c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z"></path></svg>'},{label:"PayPal",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon></svg>'},{label:"GoFundMe",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12a10 10 0 1 0-10 10A10 10 0 0 0 22 12z"></path><circle cx="12" cy="12" r="3"></circle><line x1="2" y1="2" x2="22" y2="22"></line></svg>'},{label:"OpenCollective",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2a10 10 0 0 0 0 20 10 10 0 0 0 0-20z"></path></svg>'},{label:"Ko-fi",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M8 10h8l1 6H7l1-6zM9 6h6v4H9V6z"></path></svg>'},{label:"Buy Me a Coffee",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 8H4v12h16V8zm0 0H4l-2 2h20l-2-2z"></path><path d="M8 18h8v4H8v-4z"></path></svg>'},{label:"Liberapay",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M15 9a3 3 0 0 0-6 0 3 3 0 0 0 6 0z"></path><path d="M9 9a3 3 0 0 1 6 0v6a3 3 0 0 1-6 0V9z"></path></svg>'},{label:"Gratipay",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 6a6 6 0 0 0 0 12 6 6 0 0 0 0-12z"></path></svg>'},{label:"BountySource",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M15 9a3 3 0 0 0-6 0 3 3 0 0 0 6 0z"></path><path d="M9 9a3 3 0 0 1 6 0v6a3 3 0 0 1-6 0V9z"></path></svg>'},{label:"Tidelift",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 6V2h-2v4H7l5 6h4v4h2v-4h-3l5-6h-4V2h-2v4h-2z"></path><path d="M12 12h4l-4 4h-4l4-4z"></path></svg>'},{label:"Indiegogo",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"Kickstarter",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"JustGiving",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 0 0-12 12c0 6.63 9 12 12 12s12-5.37 12-12S18.63 0 12 0zm0 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12z"></path></svg>'},{label:"Donorbox",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 0 0-12 12c0 6.63 9 12 12 12s12-5.37 12-12S18.63 0 12 0zm0 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12z"></path></svg>'},{label:"Tiltify",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"GlobalGiving",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12a10 10 0 1 0-10 10A10 10 0 0 0 22 12z"></path><circle cx="12" cy="12" r="3"></circle><line x1="2" y1="2" x2="22" y2="22"></line></svg>'},{label:"Network for Good",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.5 3A4.5 4.5 0 0 1 23 7.5v9A4.5 4.5 0 0 1 18.5 21h-13A4.5 4.5 0 0 1 1 16.5v-9A4.5 4.5 0 0 1 5.5 3z"></path><path d="M12 12.5c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3z"></path></svg>'},{label:"Fundly",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"FundRazr",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"GiveLively",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"Causes",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 0 0-12 12c0 6.63 9 12 12 12s12-5.37 12-12S18.63 0 12 0zm0 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12z"></path></svg>'},{label:"Clubhouse",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.5 3A4.5 4.5 0 0 1 23 7.5v9A4.5 4.5 0 0 1 18.5 21h-13A4.5 4.5 0 0 1 1 16.5v-9A4.5 4.5 0 0 1 5.5 3z"></path><path d="M12 8.5c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3z"></path></svg>'},{label:"Mastodon",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 0 0-12 12c0 6.63 9 12 12 12s12-5.37 12-12S18.63 0 12 0zm0 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12z"></path></svg>'},{label:"ManyVids",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"JustForFans",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 2H3v20h18V2zM16 12.3C16 15.4 13.4 18 10.3 18 7.2 18 4.7 15.4 4.7 12.3 4.7 9.2 7.2 6.6 10.3 6.6 13.4 6.6 16 9.2 16 12.3z"></path><path d="M12 4V0"></path></svg>'},{label:"QQ",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0zm0 22a10 10 0 1 1 10-10A10 10 0 0 1 12 22z"></path><path d="M12 5a7 7 0 1 1-7 7 7 7 0 0 1 7-7m0-1A8 8 0 1 0 20 12 8 8 0 0 0 12 4z"></path></svg>'},{label:"Weibo",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0zm0 22a10 10 0 1 1 10-10A10 10 0 0 1 12 22z"></path><path d="M12 5a7 7 0 1 1-7 7 7 7 0 0 1 7-7m0-1A8 8 0 1 0 20 12 8 8 0 0 0 12 4z"></path></svg>'},{label:"Qzone",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0zm0 22a10 10 0 1 1 10-10A10 10 0 0 1 12 22z"></path><path d="M12 5a7 7 0 1 1-7 7 7 7 0 0 1 7-7m0-1A8 8 0 1 0 20 12 8 8 0 0 0 12 4z"></path></svg>'},{label:"Sina Weibo",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0zm0 22a10 10 0 1 1 10-10A10 10 0 0 1 12 22z"></path><path d="M12 5a7 7 0 1 1-7 7 7 7 0 0 1 7-7m0-1A8 8 0 1 0 20 12 8 8 0 0 0 12 4z"></path></svg>'},{label:"Douyin",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 2H3v20h18V2zm-7 14c-1 0-1.75.75-1.75 1.75S13 19.5 14 19.5s1.75-.75 1.75-1.75S15 16 14 16z"></path><path d="M10 2v12a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2V2h10z"></path></svg>'},{label:"Kuaishou",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 2H3v20h18V2zm-7 14c-1 0-1.75.75-1.75 1.75S13 19.5 14 19.5s1.75-.75 1.75-1.75S15 16 14 16z"></path><path d="M10 2v12a2 2 0 0 1-2 2h-6a2 2 0 0 1-2-2V2h10z"></path></svg>'},{label:"Baidu Tieba",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 0a12 12 0 1 0 12 12A12 12 0 0 0 12 0zm0 22a10 10 0 1 1 10-10A10 10 0 0 1 12 22z"></path><path d="M12 5a7 7 0 1 1-7 7 7 7 0 0 1 7-7m0-1A8 8 0 1 0 20 12 8 8 0 0 0 12 4z"></path></svg>'},{label:"Nextdoor",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21 10V6c0-1.1-.9-2-2-2h-1V3a2 2 0 0 0-2-2h-8a2 2 0 0 0-2 2v1H5c-1.1 0-2 .9-2 2v4H1v11a2 2 0 0 0 2 2h18a2 2 0 0 0 2-2V10h-2zm-1 11H4v-9h16v9zm-9-8h-2v6h2v-6zm4 0h-2v6h2v-6zm-8 0H7v6h2v-6z"></path></svg>'},{label:"Parler",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M21.9 8.6c.4-1.4.6-2.9.6-4.5 0-2.8-1-5.3-2.7-7.2-1.7-1.9-4-2.9-6.6-2.9s-5 .9-6.6 2.8c-1.7 1.9-2.7 4.4-2.7 7.2 0 1.6.2 3.1.6 4.5L.1 14.9v6.8L3.7 24H7v-6.9L4.2 14.6zM8 19v5H5.3l-1.7-1.6V15l2.7 2.7zm-1.6-7c-1.1-.9-1.8-2.2-1.8-3.8 0-2.8 1.5-5.1 3.5-5.1s3.5 2.3 3.5 5.1c0 1.6-.7 2.9-1.8 3.8l1.6 1.4c1.4-1.2 2.3-3 2.3-5.2 0-3.7-2.1-6.8-4.6-6.8S5.4 7.3 5.4 11c0 2.1.9 4 2.3 5.2z"></path></svg>'},{label:"Gab",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22.54 6.42a2.78 2.78 0 0 0-1.94-2C18.88 4 12 4 12 4s-6.88 0-8.6.46a2.78 2.78 0 0 0-1.94 2A29 29 0 0 0 1 11.75a29 29 0 0 0 .46 5.33A2.78 2.78 0 0 0 3.4 19c1.72.46 8.6.46 8.6.46s6.88 0 8.6-.46a2.78 2.78 0 0 0 1.94-2 29 29 0 0 0 .46-5.25 29 29 0 0 0-.46-5.33z"></path><polygon points="9.75 15.02 15.5 11.75 9.75 8.48 9.75 15.02"></polygon></svg>'},{label:"MeWe",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M18.5 3A4.5 4.5 0 0 1 23 7.5v9A4.5 4.5 0 0 1 18.5 21h-13A4.5 4.5 0 0 1 1 16.5v-9A4.5 4.5 0 0 1 5.5 3z"></path><path d="M12 12.5c1.7 0 3-1.3 3-3s-1.3-3-3-3-3 1.3-3 3 1.3 3 3 3z"></path></svg>'},{label:"Vero",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 13.6l-4.2-4.2-4.2 4.2H12l4.2-4.2 4.2 4.2h-4.2z"></path></svg>'},{label:"Ello",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M14.31 14.31a4 4 0 0 1-5.62 0"></path></svg>'},{label:"Threads",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2v20"></path><path d="M2 12h20"></path></svg>'},{label:"Anchor",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2a1 1 0 0 1 1 1v1h-2V3a1 1 0 0 1 1-1z"></path><path d="M5 8a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0V9a1 1 0 0 1 1-1z"></path><path d="M18 8a1 1 0 0 1 1 1v5a1 1 0 0 1-2 0V9a1 1 0 0 1 1-1z"></path><path d="M9 21a1 1 0 0 1 1-1h4a1 1 0 0 1 1 1v1h-6v-1z"></path><path d="M12 12a2 2 0 1 1-2-2 2 2 0 0 1 2 2z"></path><path d="M19 21h-1v-6a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v6H5"></path></svg>'},{label:"Substack",svg:'<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M22 11.08c0 .6-.41 1.11-.99 1.25a1.64 1.64 0 0 1-.71.02c-.6-.11-1.12-.61-1.19-1.23-.03-.28.02-.56.17-.8a1.15 1.15 0 0 1 1.73-.26c.28.25.44.6.44.98v0h0z"></path><path d="M2 9h20v12H2z"></path><path d="M5 6h14v3H5z"></path><path d="M5 3h14v3H5z"></path></svg>'}];export{o as socialIcons};
@@ -0,0 +1,9 @@
1
+ export { E as EnpageTemplateConfig } from './datasources-DAysbbXK.js';
2
+ import './attributes.js';
3
+ import './manifest.js';
4
+ import '@sinclair/typebox';
5
+ import 'zod';
6
+ import './bricks.js';
7
+ import './themes/color-system.js';
8
+ import './theme.js';
9
+ import 'chroma-js';
@@ -0,0 +1 @@
1
+ /*! Enpage - Copyright (C) 2024 Flippable - https://github.com/enpage/enpage/blob/main/LICENSE */
@@ -0,0 +1,37 @@
1
+ import * as _sinclair_typebox from '@sinclair/typebox';
2
+ import { Static } from '@sinclair/typebox';
3
+
4
+ declare const themeSchema: _sinclair_typebox.TObject<{
5
+ id: _sinclair_typebox.TString;
6
+ name: _sinclair_typebox.TString;
7
+ description: _sinclair_typebox.TString;
8
+ tags: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TString>>;
9
+ colors: _sinclair_typebox.TObject<{
10
+ primary: _sinclair_typebox.TString;
11
+ secondary: _sinclair_typebox.TString;
12
+ accent: _sinclair_typebox.TString;
13
+ neutral: _sinclair_typebox.TString;
14
+ }>;
15
+ typography: _sinclair_typebox.TObject<{
16
+ base: _sinclair_typebox.TNumber;
17
+ heading: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"system-ui">, _sinclair_typebox.TLiteral<"transitional">, _sinclair_typebox.TLiteral<"old-style">, _sinclair_typebox.TLiteral<"humanist">, _sinclair_typebox.TLiteral<"geometric-humanist">, _sinclair_typebox.TLiteral<"classical-humanist">, _sinclair_typebox.TLiteral<"neo-grotesque">, _sinclair_typebox.TLiteral<"monospace-slab-serif">, _sinclair_typebox.TLiteral<"monospace-code">, _sinclair_typebox.TLiteral<"industrial">, _sinclair_typebox.TLiteral<"rounded-sans">, _sinclair_typebox.TLiteral<"slab-serif">, _sinclair_typebox.TLiteral<"antique">, _sinclair_typebox.TLiteral<"didone">, _sinclair_typebox.TLiteral<"handwritten">]>;
18
+ body: _sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"system-ui">, _sinclair_typebox.TLiteral<"transitional">, _sinclair_typebox.TLiteral<"old-style">, _sinclair_typebox.TLiteral<"humanist">, _sinclair_typebox.TLiteral<"geometric-humanist">, _sinclair_typebox.TLiteral<"classical-humanist">, _sinclair_typebox.TLiteral<"neo-grotesque">, _sinclair_typebox.TLiteral<"monospace-slab-serif">, _sinclair_typebox.TLiteral<"monospace-code">, _sinclair_typebox.TLiteral<"industrial">, _sinclair_typebox.TLiteral<"rounded-sans">, _sinclair_typebox.TLiteral<"slab-serif">, _sinclair_typebox.TLiteral<"antique">, _sinclair_typebox.TLiteral<"didone">, _sinclair_typebox.TLiteral<"handwritten">]>;
19
+ }>;
20
+ customFonts: _sinclair_typebox.TOptional<_sinclair_typebox.TArray<_sinclair_typebox.TObject<{
21
+ name: _sinclair_typebox.TString;
22
+ src: _sinclair_typebox.TString;
23
+ display: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"auto">, _sinclair_typebox.TLiteral<"swap">, _sinclair_typebox.TLiteral<"block">, _sinclair_typebox.TLiteral<"fallback">, _sinclair_typebox.TLiteral<"optional">]>>;
24
+ stretch: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"normal">, _sinclair_typebox.TLiteral<"ultra-condensed">, _sinclair_typebox.TLiteral<"extra-condensed">, _sinclair_typebox.TLiteral<"condensed">, _sinclair_typebox.TLiteral<"semi-condensed">, _sinclair_typebox.TLiteral<"semi-expanded">, _sinclair_typebox.TLiteral<"expanded">, _sinclair_typebox.TLiteral<"extra-expanded">, _sinclair_typebox.TLiteral<"ultra-expanded">, _sinclair_typebox.TString]>>;
25
+ style: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"normal">, _sinclair_typebox.TLiteral<"italic">, _sinclair_typebox.TLiteral<"oblique">]>>;
26
+ weight: _sinclair_typebox.TOptional<_sinclair_typebox.TUnion<[_sinclair_typebox.TLiteral<"normal">, _sinclair_typebox.TLiteral<"bold">, _sinclair_typebox.TLiteral<"bolder">, _sinclair_typebox.TLiteral<"lighter">, _sinclair_typebox.TLiteral<"100">, _sinclair_typebox.TLiteral<"200">, _sinclair_typebox.TLiteral<"300">, _sinclair_typebox.TLiteral<"400">, _sinclair_typebox.TLiteral<"500">, _sinclair_typebox.TLiteral<"600">, _sinclair_typebox.TLiteral<"700">, _sinclair_typebox.TLiteral<"800">, _sinclair_typebox.TLiteral<"900">]>>;
27
+ }>>>;
28
+ }>;
29
+ type Theme = Static<typeof themeSchema>;
30
+ /**
31
+ * Define one or more custom themes
32
+ * @param theme
33
+ * @returns
34
+ */
35
+ declare function defineCustomThemes<T extends Theme>(theme: T | T[]): T[];
36
+
37
+ export { type Theme, defineCustomThemes, themeSchema };
@@ -0,0 +1,2 @@
1
+ /*! Enpage - Copyright (C) 2024 Flippable - https://github.com/enpage/enpage/blob/main/LICENSE */
2
+ import{Type as t}from"@sinclair/typebox";var l=t.Object({id:t.String({title:"ID",description:"The unique identifier of the theme"}),name:t.String({title:"Name",description:"The name of the theme"}),description:t.String({title:"Description",description:"The description of the theme"}),tags:t.Optional(t.Array(t.String({title:"Tag"}),{title:"Tags",description:"The tags of the theme"})),colors:t.Object({primary:t.String({title:"Primary color",description:"The brand's primary color"}),secondary:t.String({title:"Secondary color",description:"The brand's second most used color"}),accent:t.String({title:"Accent color",description:"The brand's least used color"}),neutral:t.String({title:"Neutral color",description:"The base grey color"})}),typography:t.Object({base:t.Number({title:"Base font size",description:"The base font size in pixels. It is safe to keep it as is.",default:16}),heading:t.Union([t.Literal("system-ui",{title:"System UI"}),t.Literal("transitional",{title:"Transitional"}),t.Literal("old-style",{title:"Old style"}),t.Literal("humanist",{title:"Humanist"}),t.Literal("geometric-humanist",{title:"Geometric humanist"}),t.Literal("classical-humanist",{title:"Classical humanist"}),t.Literal("neo-grotesque",{title:"Neo-grotesque"}),t.Literal("monospace-slab-serif",{title:"Monospace slab serif"}),t.Literal("monospace-code",{title:"Monospace code"}),t.Literal("industrial",{title:"Industrial"}),t.Literal("rounded-sans",{title:"Rounded sans"}),t.Literal("slab-serif",{title:"Slab serif"}),t.Literal("antique",{title:"Antique"}),t.Literal("didone",{title:"Didone"}),t.Literal("handwritten",{title:"Handwritten"})],{title:"Heading font",description:"Used for titles and headings",default:"system-ui"}),body:t.Union([t.Literal("system-ui",{title:"System UI"}),t.Literal("transitional",{title:"Transitional"}),t.Literal("old-style",{title:"Old style"}),t.Literal("humanist",{title:"Humanist"}),t.Literal("geometric-humanist",{title:"Geometric humanist"}),t.Literal("classical-humanist",{title:"Classical humanist"}),t.Literal("neo-grotesque",{title:"Neo-grotesque"}),t.Literal("monospace-slab-serif",{title:"Monospace slab serif"}),t.Literal("monospace-code",{title:"Monospace code"}),t.Literal("industrial",{title:"Industrial"}),t.Literal("rounded-sans",{title:"Rounded sans"}),t.Literal("slab-serif",{title:"Slab serif"}),t.Literal("antique",{title:"Antique"}),t.Literal("didone",{title:"Didone"}),t.Literal("handwritten",{title:"Handwritten"})],{title:"Body font",description:"Used for paragraphs and body text",default:"system-ui"})}),customFonts:t.Optional(t.Array(t.Object({name:t.String({title:"Name",description:"The name of the font"}),src:t.String({title:"Font URL",description:"The URL of the font"}),display:t.Optional(t.Union([t.Literal("auto",{title:"Auto"}),t.Literal("swap",{title:"Swap"}),t.Literal("block",{title:"Block"}),t.Literal("fallback",{title:"Fallback"}),t.Literal("optional",{title:"Optional"})],{title:"Display",default:"auto"})),stretch:t.Optional(t.Union([t.Literal("normal",{title:"Normal"}),t.Literal("ultra-condensed",{title:"Ultra condensed"}),t.Literal("extra-condensed",{title:"Extra condensed"}),t.Literal("condensed",{title:"Condensed"}),t.Literal("semi-condensed",{title:"Semi condensed"}),t.Literal("semi-expanded",{title:"Semi expanded"}),t.Literal("expanded",{title:"Expanded"}),t.Literal("extra-expanded",{title:"Extra expanded"}),t.Literal("ultra-expanded",{title:"Ultra expanded"}),t.String({title:"Custom"})],{title:"Stretch",default:"normal"})),style:t.Optional(t.Union([t.Literal("normal",{title:"Normal"}),t.Literal("italic",{title:"Italic"}),t.Literal("oblique",{title:"Oblique"})],{title:"Style",default:"normal"})),weight:t.Optional(t.Union([t.Literal("normal",{title:"Normal"}),t.Literal("bold",{title:"Bold"}),t.Literal("bolder",{title:"Bolder"}),t.Literal("lighter",{title:"Lighter"}),t.Literal("100",{title:"100"}),t.Literal("200",{title:"200"}),t.Literal("300",{title:"300"}),t.Literal("400",{title:"400"}),t.Literal("500",{title:"500"}),t.Literal("600",{title:"600"}),t.Literal("700",{title:"700"}),t.Literal("800",{title:"800"}),t.Literal("900",{title:"900"})],{title:"Weight",default:"normal"}))})))},{$id:"Theme"});function a(e){return Array.isArray(e)?e:[e]}export{a as defineCustomThemes,l as themeSchema};
@@ -0,0 +1,6 @@
1
+ import { Theme } from '../theme.js';
2
+ import '@sinclair/typebox';
3
+
4
+ declare const themes: Theme[];
5
+
6
+ export { themes };
@@ -0,0 +1,2 @@
1
+ /*! Enpage - Copyright (C) 2024 Flippable - https://github.com/enpage/enpage/blob/main/LICENSE */
2
+ var e=[{id:"clarity",name:"Clarity",tags:["modern","professional","minimal","tech","light","corporate","flat"],description:"Clean and focused design with confident, purposeful elements",colors:{primary:"#2563eb",secondary:"#3b82f6",accent:"#f59e0b",neutral:"#64748b"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"}},{id:"vivid",name:"Vivid",tags:["bold","energetic","vibrant","creative","modern","gradient","startup"],description:"Bold and expressive design with dynamic color combinations",colors:{primary:"#8b5cf6",secondary:"#ec4899",accent:"#f43f5e",neutral:"#71717a"},typography:{base:18,heading:"transitional",body:"geometric-humanist"},customFonts:[{name:"ClashDisplay",src:"https://fonts.cdnfonts.com/css/clash-display",weight:"700",display:"swap"}]},{id:"serene",name:"Serene",description:"Balanced and harmonious design with natural undertones",tags:["organic","calm","earthy","healthcare","light","wellness","minimal"],colors:{primary:"#059669",secondary:"#10b981",accent:"#f59e0b",neutral:"#6b7280"},typography:{base:16,heading:"humanist",body:"humanist"}},{id:"authority",name:"Authority",description:"Strong and reliable design with established presence",tags:["professional","corporate","serious","dark","finance","classic","business"],colors:{primary:"#1e40af",secondary:"#0369a1",accent:"#b91c1c",neutral:"#4b5563"},typography:{base:16,heading:"classical-humanist",body:"transitional"}},{id:"prestige",name:"Prestige",description:"Refined and sophisticated design with subtle luxury",tags:["luxury","elegant","dark","fashion","professional","premium","minimal"],colors:{primary:"#18181b",secondary:"#27272a",accent:"#c2855a",neutral:"#71717a"},typography:{base:16,heading:"didone",body:"transitional"}},{id:"momentum",name:"Momentum",description:"Dynamic and progressive design with forward movement",tags:["modern","energetic","vibrant","startup","tech","gradient","bold"],colors:{primary:"#7c3aed",secondary:"#2dd4bf",accent:"#f43f5e",neutral:"#6b7280"},typography:{base:16,heading:"geometric-humanist",body:"neo-grotesque"}},{id:"tranquil",name:"Tranquil",description:"Peaceful and balanced design with gentle flow",tags:["calm","minimal","light","wellness","healthcare","professional","clean"],colors:{primary:"#0891b2",secondary:"#14b8a6",accent:"#f97316",neutral:"#78716c"},typography:{base:16,heading:"humanist",body:"geometric-humanist"}},{id:"wisdom",name:"Wisdom",description:"Engaging and insightful design with clear hierarchy",tags:["professional","education","modern","light","clean","minimal","academic"],colors:{primary:"#3b82f6",secondary:"#6366f1",accent:"#22c55e",neutral:"#6b7280"},typography:{base:16,heading:"geometric-humanist",body:"system-ui"}},{id:"warmth",name:"Warmth",description:"Rich and welcoming design with comfortable presence",tags:["organic","friendly","earthy","hospitality","welcoming","restaurant","warm"],colors:{primary:"#b91c1c",secondary:"#c2855a",accent:"#059669",neutral:"#78716c"},typography:{base:18,heading:"transitional",body:"humanist"},customFonts:[{name:"Cormorant Garamond",src:"https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600&display=swap",weight:"600",display:"swap"}]},{id:"trust",name:"Trust",description:"Stable and confident design with professional appeal",tags:["corporate","professional","serious","finance","business","classic","reliable"],colors:{primary:"#0c4a6e",secondary:"#475569",accent:"#84cc16",neutral:"#64748b"},typography:{base:16,heading:"classical-humanist",body:"system-ui"}},{id:"energy",name:"Energy",description:"Bold and dynamic design with vibrant intensity",tags:["bold","vibrant","modern","startup","tech","gradient","dynamic"],colors:{primary:"#6d28d9",secondary:"#22d3ee",accent:"#dc2626",neutral:"#1f2937"},typography:{base:16,heading:"neo-grotesque",body:"geometric-humanist"}},{id:"elegance",name:"Elegance",description:"Graceful and refined design with subtle sophistication",tags:["luxury","elegant","fashion","premium","sophisticated","modern","refined"],colors:{primary:"#831843",secondary:"#581c87",accent:"#ca8a04",neutral:"#404040"},typography:{base:16,heading:"didone",body:"transitional"}},{id:"playful",name:"Playful",description:"Cheerful and lively design with joyful spirit",tags:["friendly","creative","vibrant","education","startup","modern","fun"],colors:{primary:"#f97316",secondary:"#4ade80",accent:"#f43f5e",neutral:"#737373"},typography:{base:16,heading:"rounded-sans",body:"geometric-humanist"}},{id:"pulse",name:"Pulse",description:"Rhythmic and engaging design with dynamic flow",tags:["dynamic","modern","creative","tech","startup","vibrant","bold"],colors:{primary:"#7e22ce",secondary:"#f43f5e",accent:"#eab308",neutral:"#525252"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"}},{id:"clarity-plus",name:"Clarity Plus",description:"Precise and reassuring design with professional confidence",tags:["professional","clean","modern","tech","corporate","minimal","precise"],colors:{primary:"#0891b2",secondary:"#0284c7",accent:"#6366f1",neutral:"#4b5563"},typography:{base:16,heading:"humanist",body:"system-ui"}},{id:"elevate",name:"Elevate",description:"Bold and optimistic design for ambitious startups",tags:["startup","modern","bold","professional","tech","energetic","ambitious"],colors:{primary:"#6366f1",secondary:"#818cf8",accent:"#f43f5e",neutral:"#64748b"},typography:{base:16,heading:"geometric-humanist",body:"neo-grotesque"},customFonts:[{name:"GeneralSans",src:"https://fonts.googleapis.com/css2?family=GeneralSans:wght@600&display=swap",weight:"600",display:"swap"}]},{id:"scale",name:"Scale",description:"Growth-focused design with data-friendly aesthetics",tags:["professional","data","tech","growth","clean","modern","analytical"],colors:{primary:"#0f766e",secondary:"#14b8a6",accent:"#f59e0b",neutral:"#4b5563"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"}},{id:"vertex",name:"Vertex",description:"Sharp, decisive design for tech innovators",tags:["tech","professional","modern","bold","innovative","sharp","decisive"],colors:{primary:"#1e293b",secondary:"#334155",accent:"#06b6d4",neutral:"#94a3b8"},typography:{base:16,heading:"industrial",body:"geometric-humanist"}},{id:"launch",name:"Launch",description:"High-energy design for product launches",tags:["startup","energetic","dynamic","modern","bold","tech","vibrant"],colors:{primary:"#4f46e5",secondary:"#6366f1",accent:"#22c55e",neutral:"#6b7280"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"},customFonts:[{name:"Switzer",src:"https://fonts.googleapis.com/css2?family=Switzer:wght@700&display=swap",weight:"700",display:"swap"}]},{id:"pulse-pro",name:"Pulse Pro",description:"Dynamic design for SaaS and analytics platforms",tags:["tech","analytics","professional","modern","dynamic","data","saas"],colors:{primary:"#2e1065",secondary:"#4c1d95",accent:"#10b981",neutral:"#4b5563"},typography:{base:16,heading:"geometric-humanist",body:"neo-grotesque"}},{id:"horizon",name:"Horizon",description:"Forward-looking design for innovative platforms",tags:["innovative","modern","tech","professional","forward","clean","bold"],colors:{primary:"#0c4a6e",secondary:"#0369a1",accent:"#ec4899",neutral:"#64748b"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"}},{id:"nexus",name:"Nexus",description:"Connected design for platform startups",tags:["tech","startup","modern","professional","connected","dark","sleek"],colors:{primary:"#18181b",secondary:"#27272a",accent:"#3b82f6",neutral:"#52525b"},typography:{base:16,heading:"geometric-humanist",body:"neo-grotesque"}},{id:"spark",name:"Spark",description:"Creative design for innovative solutions",tags:["creative","modern","innovative","vibrant","dynamic","bold","tech"],colors:{primary:"#db2777",secondary:"#ec4899",accent:"#0ea5e9",neutral:"#6b7280"},typography:{base:16,heading:"industrial",body:"geometric-humanist"}},{id:"fusion",name:"Fusion",description:"Seamless design for integrated platforms",tags:["tech","modern","integrated","professional","clean","sophisticated","seamless"],colors:{primary:"#7c3aed",secondary:"#8b5cf6",accent:"#f59e0b",neutral:"#71717a"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"},customFonts:[{name:"Aspekta",src:"https://fonts.googleapis.com/css2?family=Aspekta:wght@700&display=swap",weight:"700",display:"swap"}]},{id:"metric",name:"Metric",description:"Data-driven design for analytics startups",tags:["data","analytics","tech","professional","precise","modern","structured"],colors:{primary:"#0f172a",secondary:"#1e293b",accent:"#22c55e",neutral:"#475569"},typography:{base:16,heading:"monospace-code",body:"neo-grotesque"}},{id:"radius",name:"Radius",description:"Approachable design for community platforms",tags:["community","friendly","modern","approachable","clean","professional","social"],colors:{primary:"#0284c7",secondary:"#0ea5e9",accent:"#f43f5e",neutral:"#94a3b8"},typography:{base:16,heading:"rounded-sans",body:"geometric-humanist"}},{id:"swift",name:"Swift",description:"High-performance design for tech products",tags:["tech","performance","modern","professional","dark","sleek","powerful"],colors:{primary:"#020617",secondary:"#0f172a",accent:"#10b981",neutral:"#334155"},typography:{base:16,heading:"industrial",body:"neo-grotesque"}},{id:"accelerate",name:"Accelerate",description:"High-velocity design for fast-growing startups",tags:["startup","tech","modern","dynamic","professional","bold","energetic"],colors:{primary:"#3b82f6",secondary:"#60a5fa",accent:"#f43f5e",neutral:"#475569"},typography:{base:16,heading:"geometric-humanist",body:"neo-grotesque"},customFonts:[{name:"Geist",src:"https://fonts.googleapis.com/css2?family=Geist:wght@600&display=swap",weight:"600",display:"swap"}]},{id:"nucleus-pro",name:"Nucleus Pro",description:"Core-focused design for enterprise solutions",tags:["tech","corporate","professional","modern","clean","enterprise","focused"],colors:{primary:"#1e40af",secondary:"#2563eb",accent:"#22c55e",neutral:"#64748b"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"}},{id:"quantum-edge",name:"Quantum Edge",description:"Cutting-edge design for AI/ML startups",tags:["tech","ai","modern","dark","futuristic","innovative","cutting-edge"],colors:{primary:"#18181b",secondary:"#27272a",accent:"#06b6d4",neutral:"#52525b"},typography:{base:16,heading:"monospace-code",body:"neo-grotesque"}},{id:"synapse",name:"Synapse",description:"Neural network-inspired design for tech innovators",tags:["tech","ai","modern","bold","innovative","dynamic","scientific"],colors:{primary:"#4c1d95",secondary:"#6d28d9",accent:"#2dd4bf",neutral:"#6b7280"},typography:{base:16,heading:"industrial",body:"geometric-humanist"}},{id:"helios",name:"Helios",description:"Bright, energetic design for breakthrough products",tags:["energetic","bright","modern","tech","professional","bold","dynamic"],colors:{primary:"#0369a1",secondary:"#0891b2",accent:"#eab308",neutral:"#94a3b8"},typography:{base:16,heading:"geometric-humanist",body:"system-ui"}},{id:"vault",name:"Vault",description:"Secure, trustworthy design for fintech",tags:["fintech","corporate","professional","secure","trustworthy","serious","business"],colors:{primary:"#0f172a",secondary:"#1e293b",accent:"#059669",neutral:"#475569"},typography:{base:16,heading:"classical-humanist",body:"transitional"}},{id:"covalent",name:"Covalent",description:"Connected design for collaboration platforms",tags:["collaboration","modern","tech","professional","connected","clean","startup"],colors:{primary:"#7c3aed",secondary:"#8b5cf6",accent:"#14b8a6",neutral:"#71717a"},typography:{base:16,heading:"neo-grotesque",body:"geometric-humanist"},customFonts:[{name:"Plus Jakarta Sans",src:"https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700&display=swap",weight:"700",display:"swap"}]},{id:"prime",name:"Prime",description:"Premium design for high-end B2B solutions",tags:["corporate","premium","business","professional","elegant","serious","enterprise"],colors:{primary:"#0c4a6e",secondary:"#075985",accent:"#ca8a04",neutral:"#64748b"},typography:{base:16,heading:"transitional",body:"system-ui"}},{id:"flux",name:"Flux",description:"Adaptive design for transformative platforms",tags:["dynamic","modern","tech","startup","bold","innovative","energetic"],colors:{primary:"#581c87",secondary:"#7e22ce",accent:"#f59e0b",neutral:"#6b7280"},typography:{base:16,heading:"geometric-humanist",body:"neo-grotesque"}},{id:"beacon",name:"Beacon",description:"Clear, guiding design for analytics platforms",tags:["analytics","tech","professional","data","clean","precise","modern"],colors:{primary:"#0f766e",secondary:"#0d9488",accent:"#f43f5e",neutral:"#4b5563"},typography:{base:16,heading:"monospace-code",body:"system-ui"}},{id:"apex",name:"Apex",description:"Peak performance design for optimization tools",tags:["tech","performance","professional","bold","modern","powerful","focused"],colors:{primary:"#1e1b4b",secondary:"#312e81",accent:"#22c55e",neutral:"#4b5563"},typography:{base:16,heading:"industrial",body:"neo-grotesque"}},{id:"nova",name:"Nova",description:"Brilliant design for innovative solutions",tags:["creative","modern","vibrant","bold","innovative","dynamic","energetic"],colors:{primary:"#be185d",secondary:"#db2777",accent:"#0ea5e9",neutral:"#6b7280"},typography:{base:16,heading:"geometric-humanist",body:"system-ui"},customFonts:[{name:"Supreme",src:"https://fonts.googleapis.com/css2?family=Supreme:wght@700&display=swap",weight:"700",display:"swap"}]},{id:"heritage",name:"Heritage",description:"Authentic and timeless design with natural character",tags:["traditional","natural","rustic","authentic","earthy","timeless","organic"],colors:{primary:"#854d0e",secondary:"#a16207",accent:"#4d7c0f",neutral:"#57534e"},typography:{base:16,heading:"slab-serif",body:"transitional"}},{id:"power",name:"Power",description:"Strong and decisive design with bold presence",tags:["bold","dynamic","strong","modern","energetic","powerful","decisive"],colors:{primary:"#dc2626",secondary:"#171717",accent:"#eab308",neutral:"#404040"},typography:{base:16,heading:"industrial",body:"neo-grotesque"}},{id:"frost",name:"Frost",description:"Modern glassmorphic design with ethereal transparency and depth",tags:["glassmorphic","modern","light","tech","minimal","clean","elegant"],colors:{primary:"#0ea5e9",secondary:"#38bdf8",accent:"#f0f9ff",neutral:"#94a3b8"},typography:{base:16,heading:"geometric-humanist",body:"neo-grotesque"}},{id:"midnight",name:"Midnight",description:"Rich dark mode design with vibrant accent highlights",tags:["dark","modern","tech","professional","sleek","minimal","bold"],colors:{primary:"#0f172a",secondary:"#1e293b",accent:"#38bdf8",neutral:"#475569"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"},customFonts:[{name:"Cal Sans",src:"https://fonts.googleapis.com/css2?family=Cal+Sans:wght@600&display=swap",weight:"600",display:"swap"}]},{id:"prism",name:"Prism",description:"Dynamic gradient-rich design with flowing color transitions",tags:["gradient","creative","vibrant","modern","dynamic","bold","artistic"],colors:{primary:"#8b5cf6",secondary:"#6366f1",accent:"#ec4899",neutral:"#64748b"},typography:{base:16,heading:"geometric-humanist",body:"transitional"}},{id:"zen",name:"Zen",description:"Ultra-minimal design with thoughtful whitespace and balance",tags:["minimal","calm","clean","modern","professional","elegant","focused"],colors:{primary:"#262626",secondary:"#404040",accent:"#525252",neutral:"#a3a3a3"},typography:{base:16,heading:"humanist",body:"system-ui"}},{id:"neomorph",name:"Neomorph",description:"Soft UI design with subtle shadows and dimensional depth",tags:["neumorphic","modern","minimal","tech","clean","soft","elegant"],colors:{primary:"#e2e8f0",secondary:"#f1f5f9",accent:"#0ea5e9",neutral:"#64748b"},typography:{base:16,heading:"geometric-humanist",body:"system-ui"}},{id:"botanical",name:"Botanical",description:"Organic design with natural hues and breathing space",tags:["organic","natural","light","wellness","calm","eco","fresh"],colors:{primary:"#f0fdf4",secondary:"#dcfce7",accent:"#16a34a",neutral:"#84cc16"},typography:{base:16,heading:"transitional",body:"humanist"}},{id:"aurora",name:"Aurora",description:"Vibrant gradients with ethereal color transitions",tags:["gradient","vibrant","modern","creative","dynamic","artistic","bold"],colors:{primary:"#7c3aed",secondary:"#2dd4bf",accent:"#ec4899",neutral:"#4b5563"},typography:{base:16,heading:"neo-grotesque",body:"geometric-humanist"},customFonts:[{name:"Cabinet Grotesk",src:"https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@700&display=swap",weight:"700",display:"swap"}]},{id:"cosmic",name:"Cosmic",description:"Space-inspired design with deep backgrounds and bright accents",tags:["dark","tech","modern","bold","futuristic","dramatic","space"],colors:{primary:"#020617",secondary:"#0f172a",accent:"#eab308",neutral:"#334155"},typography:{base:16,heading:"industrial",body:"neo-grotesque"}},{id:"cascade",name:"Cascade",description:"Layered design with flowing visual hierarchy",tags:["modern","tech","clean","professional","minimal","gradient","flow"],colors:{primary:"#06b6d4",secondary:"#0891b2",accent:"#f0f9ff",neutral:"#475569"},typography:{base:16,heading:"neo-grotesque",body:"geometric-humanist"},customFonts:[{name:"Decimal",src:"https://fonts.googleapis.com/css2?family=Decimal:wght@500&display=swap",weight:"500",display:"swap"}]},{id:"retro-wave",name:"Retro Wave",description:"Modern retro-inspired design with bold contrasts",tags:["retro","bold","vibrant","creative","neon","vintage","dynamic"],colors:{primary:"#4c1d95",secondary:"#7e22ce",accent:"#ec4899",neutral:"#1f2937"},typography:{base:16,heading:"industrial",body:"monospace-code"}},{id:"origami",name:"Origami",description:"Precise geometric design with crisp folds and angles",tags:["geometric","minimal","clean","modern","precise","light","structured"],colors:{primary:"#fafaf9",secondary:"#f5f5f4",accent:"#ef4444",neutral:"#78716c"},typography:{base:16,heading:"geometric-humanist",body:"neo-grotesque"}},{id:"quantum",name:"Quantum",description:"Futuristic design with high-tech minimalism",tags:["tech","dark","minimal","futuristic","modern","sleek","professional"],colors:{primary:"#18181b",secondary:"#27272a",accent:"#22d3ee",neutral:"#52525b"},typography:{base:16,heading:"monospace-code",body:"neo-grotesque"}},{id:"luminous",name:"Luminous",description:"Light-inspired design with glowing accents",tags:["light","bright","modern","minimal","clean","fresh","airy"],colors:{primary:"#fef9c3",secondary:"#fef08a",accent:"#1e293b",neutral:"#94a3b8"},typography:{base:16,heading:"transitional",body:"humanist"}},{id:"breeze",name:"Breeze",description:"Light and airy design with gentle color transitions",tags:["pastel","light","soft","calm","minimal","clean","gentle"],colors:{primary:"#bfdbfe",secondary:"#dbeafe",accent:"#f472b6",neutral:"#cbd5e1"},typography:{base:16,heading:"geometric-humanist",body:"system-ui"},customFonts:[{name:"Satoshi",src:"https://fonts.googleapis.com/css2?family=Satoshi:wght@500&display=swap",weight:"500",display:"swap"}]},{id:"cotton",name:"Cotton",description:"Soft, comfortable design with inviting presence",tags:["pastel","soft","light","gentle","minimal","calm","delicate"],colors:{primary:"#fce7f3",secondary:"#fbcfe8",accent:"#7dd3fc",neutral:"#e5e7eb"},typography:{base:16,heading:"transitional",body:"humanist"}},{id:"bloom",name:"Bloom",description:"Fresh spring-inspired design with natural warmth",tags:["pastel","organic","fresh","light","spring","friendly","natural"],colors:{primary:"#d9f99d",secondary:"#bef264",accent:"#fda4af",neutral:"#d4d4d8"},typography:{base:16,heading:"rounded-sans",body:"geometric-humanist"}},{id:"cloud",name:"Cloud",description:"Light and dreamy design with gentle gradients",tags:["light","soft","minimal","clean","gentle","airy","calm"],colors:{primary:"#e0f2fe",secondary:"#f0f9ff",accent:"#c084fc",neutral:"#f1f5f9"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"}},{id:"sorbet",name:"Sorbet",description:"Sweet, refreshing design with playful tones",tags:["pastel","playful","sweet","light","fresh","friendly","cheerful"],colors:{primary:"#fef9c3",secondary:"#fde047",accent:"#c084fc",neutral:"#e5e7eb"},typography:{base:16,heading:"geometric-humanist",body:"humanist"}},{id:"powder",name:"Powder",description:"Delicate design with subtle color variations",tags:["pastel","soft","gentle","light","calm","minimal","delicate"],colors:{primary:"#ddd6fe",secondary:"#ede9fe",accent:"#fb923c",neutral:"#e2e8f0"},typography:{base:16,heading:"transitional",body:"system-ui"}},{id:"glacier",name:"Glacier",description:"Cool, composed design with icy undertones",tags:["cool","minimal","clean","modern","fresh","professional","crisp"],colors:{primary:"#cffafe",secondary:"#a5f3fc",accent:"#f9a8d4",neutral:"#e2e8f0"},typography:{base:16,heading:"neo-grotesque",body:"geometric-humanist"},customFonts:[{name:"General Sans",src:"https://fonts.googleapis.com/css2?family=General+Sans:wght@600&display=swap",weight:"600",display:"swap"}]},{id:"sage",name:"Sage",description:"Organic design with calming natural tones",tags:["organic","natural","calm","wellness","eco","gentle","balanced"],colors:{primary:"#d1fae5",secondary:"#a7f3d0",accent:"#fda4af",neutral:"#d4d4d8"},typography:{base:16,heading:"humanist",body:"transitional"}},{id:"aurora-soft",name:"Aurora Soft",description:"Gentle multicolor design with ethereal feel",tags:["pastel","gentle","ethereal","modern","soft","gradient","calm"],colors:{primary:"#ddd6fe",secondary:"#c7d2fe",accent:"#93c5fd",neutral:"#e2e8f0"},typography:{base:16,heading:"geometric-humanist",body:"system-ui"}},{id:"lily",name:"Lily",description:"Delicate floral-inspired design with soft edges",tags:["pastel","feminine","soft","gentle","elegant","delicate","light"],colors:{primary:"#fce7f3",secondary:"#fbcfe8",accent:"#a78bfa",neutral:"#f1f5f9"},typography:{base:16,heading:"transitional",body:"humanist"}},{id:"meringue",name:"Meringue",description:"Light and airy design with whimsical touches",tags:["pastel","light","soft","playful","gentle","friendly","warm"],colors:{primary:"#fef3c7",secondary:"#fde68a",accent:"#c084fc",neutral:"#f1f5f9"},typography:{base:16,heading:"rounded-sans",body:"geometric-humanist"}},{id:"opal",name:"Opal",description:"Iridescent-inspired design with gentle color shifts",tags:["iridescent","pastel","modern","gentle","elegant","dynamic","subtle"],colors:{primary:"#a5f3fc",secondary:"#99f6e4",accent:"#f0abfc",neutral:"#e2e8f0"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"}},{id:"marshmallow",name:"Marshmallow",description:"Ultra-soft design with gentle tonal shifts",tags:["pastel","soft","gentle","light","minimal","friendly","warm"],colors:{primary:"#fdf2f8",secondary:"#fce7f3",accent:"#93c5fd",neutral:"#f8fafc"},typography:{base:16,heading:"rounded-sans",body:"geometric-humanist"}},{id:"pistachio",name:"Pistachio",description:"Fresh pastel design with natural undertones",tags:["pastel","natural","fresh","organic","light","gentle","eco"],colors:{primary:"#dcfce7",secondary:"#bbf7d0",accent:"#fda4af",neutral:"#f0fdf4"},typography:{base:16,heading:"humanist",body:"system-ui"},customFonts:[{name:"Outfit",src:"https://fonts.googleapis.com/css2?family=Outfit:wght@500&display=swap",weight:"500",display:"swap"}]},{id:"bubble",name:"Bubble",description:"Playful pastel design with rounded elements",tags:["pastel","playful","friendly","soft","rounded","gentle","approachable"],colors:{primary:"#dbeafe",secondary:"#bfdbfe",accent:"#fda4af",neutral:"#f1f5f9"},typography:{base:16,heading:"rounded-sans",body:"geometric-humanist"}},{id:"lavender-mist",name:"Lavender Mist",description:"Ethereal design with purple undertones",tags:["pastel","ethereal","soft","gentle","calm","elegant","soothing"],colors:{primary:"#f5f3ff",secondary:"#ede9fe",accent:"#6ee7b7",neutral:"#f8fafc"},typography:{base:16,heading:"transitional",body:"humanist"}},{id:"lemon-chiffon",name:"Lemon Chiffon",description:"Light and airy design with warm undertones",tags:["pastel","light","warm","fresh","gentle","friendly","cheerful"],colors:{primary:"#fefce8",secondary:"#fef9c3",accent:"#93c5fd",neutral:"#f8fafc"},typography:{base:16,heading:"geometric-humanist",body:"system-ui"}},{id:"cotton-candy",name:"Cotton Candy",description:"Sweet pastel design with playful tones",tags:["pastel","playful","sweet","soft","friendly","gentle","fun"],colors:{primary:"#fae8ff",secondary:"#f5d0fe",accent:"#7dd3fc",neutral:"#faf5ff"},typography:{base:16,heading:"rounded-sans",body:"geometric-humanist"}},{id:"seafoam",name:"Seafoam",description:"Ocean-inspired pastel design with calming tones",tags:["pastel","ocean","calm","fresh","gentle","natural","serene"],colors:{primary:"#ecfeff",secondary:"#cffafe",accent:"#f9a8d4",neutral:"#f0fdfa"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"}},{id:"rose-quartz",name:"Rose Quartz",description:"Crystal-inspired design with soft pink hues",tags:["pastel","crystal","gentle","elegant","soft","minimal","refined"],colors:{primary:"#fff1f2",secondary:"#ffe4e6",accent:"#a5f3fc",neutral:"#fafafa"},typography:{base:16,heading:"transitional",body:"humanist"},customFonts:[{name:"Manrope",src:"https://fonts.googleapis.com/css2?family=Manrope:wght@600&display=swap",weight:"600",display:"swap"}]},{id:"apricot",name:"Apricot",description:"Warm pastel design with peachy tones",tags:["pastel","warm","soft","friendly","gentle","natural","welcoming"],colors:{primary:"#fff7ed",secondary:"#ffedd5",accent:"#a5b4fc",neutral:"#f8fafc"},typography:{base:16,heading:"humanist",body:"geometric-humanist"}},{id:"mint-cream",name:"Mint Cream",description:"Fresh minty design with cool undertones",tags:["pastel","fresh","clean","cool","minimal","gentle","crisp"],colors:{primary:"#f0fdfa",secondary:"#ccfbf1",accent:"#fda4af",neutral:"#f9fafb"},typography:{base:16,heading:"geometric-humanist",body:"system-ui"}},{id:"dreamscape",name:"Dreamscape",description:"Ethereal pastel design with multicolor harmony",tags:["pastel","ethereal","gentle","soft","harmonious","calm","dreamy"],colors:{primary:"#f5f3ff",secondary:"#dbeafe",accent:"#fda4af",neutral:"#f8fafc"},typography:{base:16,heading:"neo-grotesque",body:"humanist"}},{id:"enterprise-blue",name:"Enterprise Blue",description:"Classic corporate design with modern refinement",tags:["corporate","professional","business","serious","classic","reliable","traditional"],colors:{primary:"#0f284e",secondary:"#1e40af",accent:"#dc2626",neutral:"#475569"},typography:{base:16,heading:"classical-humanist",body:"transitional"},customFonts:[{name:"Ginto Nord",src:"https://fonts.googleapis.com/css2?family=Ginto+Nord:wght@600&display=swap",weight:"600",display:"swap"}]},{id:"capital",name:"Capital",description:"Premium enterprise design with executive appeal",tags:["corporate","luxury","professional","premium","business","elegant","executive"],colors:{primary:"#18181b",secondary:"#27272a",accent:"#854d0e",neutral:"#52525b"},typography:{base:16,heading:"transitional",body:"system-ui"}},{id:"counsel",name:"Counsel",description:"Trustworthy design for professional services",tags:["professional","corporate","trustworthy","business","serious","reliable","classic"],colors:{primary:"#1e293b",secondary:"#334155",accent:"#0891b2",neutral:"#64748b"},typography:{base:16,heading:"classical-humanist",body:"transitional"}},{id:"diplomat",name:"Diplomat",description:"Sophisticated design for international business",tags:["professional","corporate","elegant","international","sophisticated","classic","refined"],colors:{primary:"#0c4a6e",secondary:"#075985",accent:"#b91c1c",neutral:"#4b5563"},typography:{base:16,heading:"transitional",body:"system-ui"}},{id:"cornerstone",name:"Cornerstone",description:"Solid foundation design for established institutions",tags:["corporate","traditional","professional","solid","established","trustworthy","institutional"],colors:{primary:"#292524",secondary:"#44403c",accent:"#0284c7",neutral:"#78716c"},typography:{base:16,heading:"classical-humanist",body:"transitional"}},{id:"summit",name:"Summit",description:"Elevated design for market leaders",tags:["corporate","professional","premium","leadership","established","modern","elegant"],colors:{primary:"#0f172a",secondary:"#1e293b",accent:"#15803d",neutral:"#475569"},typography:{base:16,heading:"transitional",body:"neo-grotesque"},customFonts:[{name:"Articulat CF",src:"https://fonts.googleapis.com/css2?family=Articulat+CF:wght@700&display=swap",weight:"700",display:"swap"}]},{id:"guardian",name:"Guardian",description:"Secure and reliable design for financial services",tags:["finance","secure","professional","corporate","trustworthy","reliable","serious"],colors:{primary:"#14532d",secondary:"#166534",accent:"#1e40af",neutral:"#4b5563"},typography:{base:16,heading:"classical-humanist",body:"transitional"}},{id:"insignia",name:"Insignia",description:"Distinguished design for premium services",tags:["premium","corporate","professional","elegant","distinguished","classic","refined"],colors:{primary:"#312e81",secondary:"#3730a3",accent:"#b91c1c",neutral:"#4b5563"},typography:{base:16,heading:"transitional",body:"system-ui"}},{id:"precedent",name:"Precedent",description:"Authoritative design for legal and consulting",tags:["legal","corporate","professional","authoritative","serious","traditional","trustworthy"],colors:{primary:"#1e1b4b",secondary:"#312e81",accent:"#ca8a04",neutral:"#52525b"},typography:{base:16,heading:"classical-humanist",body:"transitional"}},{id:"sterling",name:"Sterling",description:"Premium design for financial technology",tags:["fintech","premium","professional","modern","tech","refined","corporate"],colors:{primary:"#27272a",secondary:"#3f3f46",accent:"#0891b2",neutral:"#71717a"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"},customFonts:[{name:"Inter Tight",src:"https://fonts.googleapis.com/css2?family=Inter+Tight:wght@600&display=swap",weight:"600",display:"swap"}]},{id:"fortress",name:"Fortress",description:"Strong, secure design for enterprise solutions",tags:["enterprise","secure","professional","corporate","strong","reliable","serious"],colors:{primary:"#0c4a6e",secondary:"#0369a1",accent:"#15803d",neutral:"#64748b"},typography:{base:16,heading:"transitional",body:"neo-grotesque"}},{id:"macaroon",name:"Macaroon",description:"Delicate pastel design with confectionery-inspired colors",tags:["pastel","sweet","delicate","soft","playful","gentle","charming"],colors:{primary:"#fce7f3",secondary:"#fef3c7",accent:"#c7d2fe",neutral:"#fafaf9"},typography:{base:16,heading:"rounded-sans",body:"geometric-humanist"}},{id:"kinetic",name:"Kinetic",description:"Movement-focused design with dynamic elements",tags:["dynamic","modern","bold","energetic","tech","movement","vibrant"],colors:{primary:"#6d28d9",secondary:"#4f46e5",accent:"#10b981",neutral:"#6b7280"},typography:{base:16,heading:"industrial",body:"geometric-humanist"}},{id:"silk",name:"Silk",description:"Smooth, luxurious design with flowing elements",tags:["luxury","elegant","soft","refined","premium","smooth","sophisticated"],colors:{primary:"#fdf2f8",secondary:"#fce7f3",accent:"#db2777",neutral:"#9ca3af"},typography:{base:16,heading:"didone",body:"transitional"}},{id:"monolith",name:"Monolith",description:"Bold brutalist design with strong typography",tags:["brutalist","bold","modern","minimal","strong","dramatic","stark"],colors:{primary:"#000000",secondary:"#0a0a0a",accent:"#ffffff",neutral:"#404040"},typography:{base:18,heading:"industrial",body:"monospace-code"},customFonts:[{name:"Aeonik",src:"https://fonts.googleapis.com/css2?family=Aeonik:wght@700&display=swap",weight:"700",display:"swap"}]},{id:"velvet",name:"Velvet",description:"Rich, textured design with depth and warmth",tags:["luxury","rich","elegant","premium","sophisticated","bold","dramatic"],colors:{primary:"#701a75",secondary:"#86198f",accent:"#fbbf24",neutral:"#525252"},typography:{base:16,heading:"transitional",body:"humanist"}},{id:"binary",name:"Binary",description:"Clean, technical design with precise spacing",tags:["tech","minimal","clean","precise","modern","structured","systematic"],colors:{primary:"#e5e7eb",secondary:"#d1d5db",accent:"#111827",neutral:"#6b7280"},typography:{base:16,heading:"monospace-code",body:"monospace-code"}},{id:"oasis",name:"Oasis",description:"Calm, refreshing design with subtle gradients",tags:["calm","refreshing","natural","serene","balanced","gentle","peaceful"],colors:{primary:"#0d9488",secondary:"#14b8a6",accent:"#fbbf24",neutral:"#64748b"},typography:{base:16,heading:"humanist",body:"geometric-humanist"}},{id:"plasma",name:"Plasma",description:"Fluid, energetic design with vivid color transitions",tags:["gradient","dynamic","modern","energetic","vibrant","fluid","bold"],colors:{primary:"#4f46e5",secondary:"#7c3aed",accent:"#14b8a6",neutral:"#4b5563"},typography:{base:16,heading:"neo-grotesque",body:"system-ui"}},{id:"echo",name:"Echo",description:"Ethereal design with subtle repetitive elements and depth",tags:["subtle","minimal","modern","clean","structured","balanced","refined"],colors:{primary:"#e0f2fe",secondary:"#bae6fd",accent:"#3b82f6",neutral:"#cbd5e1"},typography:{base:16,heading:"classical-humanist",body:"geometric-humanist"}},{id:"nucleus",name:"Nucleus",description:"Cellular-inspired organic design with fluid forms",tags:["organic","modern","scientific","innovative","fluid","tech","dynamic"],colors:{primary:"#faf5ff",secondary:"#f3e8ff",accent:"#9333ea",neutral:"#a1a1aa"},typography:{base:16,heading:"rounded-sans",body:"humanist"}},{id:"analog",name:"Analog",description:"Neo-vintage design with modern precision",tags:["vintage","retro","modern","warm","nostalgic","classic","refined"],colors:{primary:"#44403c",secondary:"#57534e",accent:"#f97316",neutral:"#a8a29e"},typography:{base:16,heading:"slab-serif",body:"monospace-code"},customFonts:[{name:"RecklessNeue",src:"https://fonts.googleapis.com/css2?family=RecklessNeue:wght@500&display=swap",weight:"500",display:"swap"}]},{id:"cipher",name:"Cipher",description:"Cryptographic-inspired design with structured patterns",tags:["tech","cryptic","modern","structured","systematic","precise","bold"],colors:{primary:"#0f172a",secondary:"#1e293b",accent:"#84cc16",neutral:"#475569"},typography:{base:16,heading:"monospace-code",body:"monospace-slab-serif"}},{id:"helix",name:"Helix",description:"DNA-inspired design with interweaving elements",tags:["scientific","tech","modern","innovative","dynamic","precise","professional"],colors:{primary:"#083344",secondary:"#164e63",accent:"#fb7185",neutral:"#475569"},typography:{base:16,heading:"neo-grotesque",body:"geometric-humanist"}},{id:"genesis",name:"Genesis",description:"Primordial design with raw, elemental aesthetics",tags:["organic","earthy","natural","raw","bold","elemental","primitive"],colors:{primary:"#422006",secondary:"#854d0e",accent:"#16a34a",neutral:"#78716c"},typography:{base:16,heading:"antique",body:"old-style"}},{id:"ionic",name:"Ionic",description:"Charged minimal design with electric accents",tags:["minimal","modern","clean","tech","precise","structured","electric"],colors:{primary:"#fafafa",secondary:"#f5f5f5",accent:"#2563eb",neutral:"#737373"},typography:{base:16,heading:"industrial",body:"neo-grotesque"},customFonts:[{name:"Author",src:"https://fonts.googleapis.com/css2?family=Author:wght@700&display=swap",weight:"700",display:"swap"}]},{id:"meridian",name:"Meridian",description:"Geographical precision with cartographic inspiration",tags:["precise","technical","structured","professional","modern","systematic","geometric"],colors:{primary:"#1c1917",secondary:"#292524",accent:"#facc15",neutral:"#57534e"},typography:{base:16,heading:"transitional",body:"monospace-code"}},{id:"spectra",name:"Spectra",description:"Light-spectrum inspired with prismatic effects",tags:["gradient","vibrant","modern","creative","dynamic","colorful","energetic"],colors:{primary:"#7c3aed",secondary:"#4f46e5",accent:"#f472b6",neutral:"#6b7280"},typography:{base:16,heading:"geometric-humanist",body:"system-ui"}},{id:"terra",name:"Terra",description:"Earth-tone minimalism with organic texture",tags:["organic","earthy","natural","minimal","warm","textured","balanced"],colors:{primary:"#451a03",secondary:"#78350f",accent:"#65a30d",neutral:"#57534e"},typography:{base:16,heading:"slab-serif",body:"humanist"}},{id:"quartz",name:"Quartz",description:"Crystalline design with sharp angles and clarity",tags:["minimal","clean","crystal","modern","sharp","precise","elegant"],colors:{primary:"#f8fafc",secondary:"#f1f5f9",accent:"#6366f1",neutral:"#94a3b8"},typography:{base:16,heading:"industrial",body:"neo-grotesque"}},{id:"matrix",name:"Matrix",description:"Grid-based design with systematic layout",tags:["tech","systematic","dark","modern","grid","structured","bold"],colors:{primary:"#020617",secondary:"#0f172a",accent:"#4ade80",neutral:"#334155"},typography:{base:16,heading:"monospace-code",body:"monospace-code"}}];export{e as themes};