this.gui 1.3.41 → 1.3.42

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 (310) hide show
  1. package/package.json +3 -2
  2. package/src/GUI.tsx +46 -0
  3. package/src/QRouter/QRegistry.tsx +53 -0
  4. package/src/QRouter/QRouter.stories.tsx +31 -0
  5. package/src/QRouter/QRouter.tsx +57 -0
  6. package/src/gui/Theme/GuiProvider.tsx +111 -0
  7. package/src/gui/Theme/Icon/Icon.resolver.tsx +29 -0
  8. package/src/gui/Theme/Icon/Icon.tsx +43 -0
  9. package/src/gui/Theme/Layout/Content/Content.resolver.tsx +0 -0
  10. package/src/gui/Theme/Layout/Content/Content.stories.tsx +88 -0
  11. package/src/gui/Theme/Layout/Content/Content.tsx +53 -0
  12. package/src/gui/Theme/Layout/Content/Content.types.tsx +40 -0
  13. package/src/gui/Theme/Layout/Footer/Footer.resolver.tsx +45 -0
  14. package/src/gui/Theme/Layout/Footer/Footer.stories.tsx +205 -0
  15. package/src/gui/Theme/Layout/Footer/Footer.tsx +337 -0
  16. package/src/gui/Theme/Layout/Footer/Footer.types.ts +40 -0
  17. package/src/gui/Theme/Layout/Layout/Layout.resolver.tsx +37 -0
  18. package/src/gui/Theme/Layout/Layout/Layout.stories.tsx +289 -0
  19. package/src/gui/Theme/Layout/Layout/Layout.tsx +117 -0
  20. package/src/gui/Theme/Layout/Layout/Layout.types.ts +57 -0
  21. package/src/gui/Theme/Layout/Layout/useLayoutBreakpoints.ts +9 -0
  22. package/src/gui/Theme/Layout/Namespace/Namespace.stories.tsx +105 -0
  23. package/src/gui/Theme/Layout/Namespace/Namespace.tsx +26 -0
  24. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/LeftSidebar.resolver.tsx +87 -0
  25. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/LeftSidebar.stories.tsx +199 -0
  26. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/LeftSidebar.tsx +311 -0
  27. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/LeftSidebar.types.ts +41 -0
  28. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/SidebarToggleButton.tsx +53 -0
  29. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/components/LeftSidebarAction/LeftSidebarAction.resolver.tsx +19 -0
  30. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/components/LeftSidebarAction/LeftSidebarAction.tsx +107 -0
  31. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/components/LeftSidebarLink/LeftSidebarLink.resolver.tsx +0 -0
  32. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/components/LeftSidebarLink/LeftSidebarLink.tsx +134 -0
  33. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/components/LeftSidebarLink/LeftSidebarLink.types.ts +15 -0
  34. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/components/LeftSidebarMenu/LeftSidebarMenu.tsx +142 -0
  35. package/src/gui/Theme/Layout/Sidebars/LeftSidebar/components/LeftSidebarToggleButton/LeftSidebarToggleButton.tsx +23 -0
  36. package/src/gui/Theme/Layout/Sidebars/RightSidebar/RightSidebar.resolver.tsx +35 -0
  37. package/src/gui/Theme/Layout/Sidebars/RightSidebar/RightSidebar.stories.tsx +239 -0
  38. package/src/gui/Theme/Layout/Sidebars/RightSidebar/RightSidebar.tsx +319 -0
  39. package/src/gui/Theme/Layout/Sidebars/RightSidebar/RightSidebar.types.ts +17 -0
  40. package/src/gui/Theme/Layout/Sidebars/RightSidebar/components/RightSidebarAction/RightSidebarAction.tsx +102 -0
  41. package/src/gui/Theme/Layout/Sidebars/RightSidebar/components/RightSidebarLink/RightSidebarLink.tsx +132 -0
  42. package/src/gui/Theme/Layout/Sidebars/RightSidebar/components/RightSidebarMenu/RightSidebarMenu.tsx +140 -0
  43. package/src/gui/Theme/Layout/Sidebars/RightSidebar/components/RightSidebarToggleButton/RightSidebarToggleButton.tsx +22 -0
  44. package/src/gui/Theme/Layout/StickyOptions/StickyOptionsTop.stories.tsx +469 -0
  45. package/src/gui/Theme/Layout/StickyOptions/StickyOptionsTop.tsx +489 -0
  46. package/src/gui/Theme/Layout/TopBar/TopBar.resolver.tsx +86 -0
  47. package/src/gui/Theme/Layout/TopBar/TopBar.stories.tsx +350 -0
  48. package/src/gui/Theme/Layout/TopBar/TopBar.tsx +292 -0
  49. package/src/gui/Theme/Layout/TopBar/TopBar.types.ts +39 -0
  50. package/src/gui/Theme/Layout/TopBar/components/TopBarAction/TopBarAction.stories.tsx +83 -0
  51. package/src/gui/Theme/Layout/TopBar/components/TopBarAction/TopBarAction.tsx +18 -0
  52. package/src/gui/Theme/Layout/TopBar/components/TopBarAction/TopBarAction.types.ts +4 -0
  53. package/src/gui/Theme/Layout/TopBar/components/TopBarLink/TopBarLink.stories.tsx +189 -0
  54. package/src/gui/Theme/Layout/TopBar/components/TopBarLink/TopBarLink.tsx +30 -0
  55. package/src/gui/Theme/Layout/TopBar/components/TopBarLink/TopBarLink.types.ts +9 -0
  56. package/src/gui/Theme/Layout/TopBar/components/TopBarMenu/TopBarMenu.resolver.tsx +14 -0
  57. package/src/gui/Theme/Layout/TopBar/components/TopBarMenu/TopBarMenu.stories.tsx +56 -0
  58. package/src/gui/Theme/Layout/TopBar/components/TopBarMenu/TopBarMenu.tsx +123 -0
  59. package/src/gui/Theme/Layout/TopBar/components/TopBarMenu/TopBarMenu.types.ts +44 -0
  60. package/src/gui/Theme/catalog/CherryByte/CherryByte.png +0 -0
  61. package/src/gui/Theme/catalog/CherryByte/dark.tokens.ts +47 -0
  62. package/src/gui/Theme/catalog/CherryByte/light.tokens.ts +47 -0
  63. package/src/gui/Theme/catalog/CherryByte/manifest.ts +24 -0
  64. package/src/gui/Theme/catalog/GhostShell/dark.tokens.ts +43 -0
  65. package/src/gui/Theme/catalog/GhostShell/ghost.png +0 -0
  66. package/src/gui/Theme/catalog/GhostShell/light.tokens.ts +39 -0
  67. package/src/gui/Theme/catalog/GhostShell/manifest.ts +24 -0
  68. package/src/gui/Theme/catalog/LunaHex/LunaHex.png +0 -0
  69. package/src/gui/Theme/catalog/LunaHex/dark.tokens.ts +34 -0
  70. package/src/gui/Theme/catalog/LunaHex/light.tokens.ts +74 -0
  71. package/src/gui/Theme/catalog/LunaHex/manifest.ts +24 -0
  72. package/src/gui/Theme/catalog/MUI/MUI.png +0 -0
  73. package/src/gui/Theme/catalog/MUI/dark.tokens.ts +58 -0
  74. package/src/gui/Theme/catalog/MUI/light.tokens.ts +74 -0
  75. package/src/gui/Theme/catalog/MUI/manifest.ts +24 -0
  76. package/src/gui/Theme/catalog/PrinceOfDarkness/dark.tokens.ts +48 -0
  77. package/src/gui/Theme/catalog/PrinceOfDarkness/light.tokens.ts +47 -0
  78. package/src/gui/Theme/catalog/PrinceOfDarkness/manifest.ts +24 -0
  79. package/src/gui/Theme/catalog/PrinceOfDarkness/prince.png +0 -0
  80. package/src/gui/Theme/catalog/PrinceOfDarkness/princeOfDarkness.png +0 -0
  81. package/src/gui/Theme/catalog/Seafoam/dark.tokens.ts +49 -0
  82. package/src/gui/Theme/catalog/Seafoam/light.tokens.ts +47 -0
  83. package/src/gui/Theme/catalog/Seafoam/manifest.ts +24 -0
  84. package/src/gui/Theme/catalog/Seafoam/seaFoam.png +0 -0
  85. package/src/gui/Theme/catalog/neurons/dark.tokens.ts +58 -0
  86. package/src/gui/Theme/catalog/neurons/light.tokens.ts +74 -0
  87. package/src/gui/Theme/catalog/neurons/manifest.ts +24 -0
  88. package/src/gui/Theme/catalog/neurons/neurons.me.png +0 -0
  89. package/src/gui/Theme/fromTokens.ts +272 -0
  90. package/src/gui/Theme/gui.css +31 -0
  91. package/src/gui/Theme/index.ts +17 -0
  92. package/src/gui/Theme/styles/buildShadows.ts +83 -0
  93. package/src/gui/Theme/styles/theme.tokens.ts +108 -0
  94. package/src/gui/Theme/utils/catalog.ts +61 -0
  95. package/src/gui/Theme/utils/persistence.ts +66 -0
  96. package/src/gui/Theme/utils/themeUtils.ts +34 -0
  97. package/src/gui/components/atoms/AppBar/AppBar.resolver.tsx +46 -0
  98. package/src/gui/components/atoms/AppBar/AppBar.stories.tsx +251 -0
  99. package/src/gui/components/atoms/AppBar/AppBar.tsx +107 -0
  100. package/src/gui/components/atoms/AppBar/AppBar.types.ts +28 -0
  101. package/src/gui/components/atoms/Avatar/Avatar.resolver.tsx +61 -0
  102. package/src/gui/components/atoms/Avatar/Avatar.stories.tsx +36 -0
  103. package/src/gui/components/atoms/Avatar/Avatar.tsx +14 -0
  104. package/src/gui/components/atoms/Box/Box.resolver.tsx +171 -0
  105. package/src/gui/components/atoms/Box/Box.stories.tsx +263 -0
  106. package/src/gui/components/atoms/Box/Box.tsx +15 -0
  107. package/src/gui/components/atoms/Button/Button.resolver.tsx +103 -0
  108. package/src/gui/components/atoms/Button/Button.stories.tsx +219 -0
  109. package/src/gui/components/atoms/Button/Button.tsx +40 -0
  110. package/src/gui/components/atoms/Card/Card.resolver.tsx +63 -0
  111. package/src/gui/components/atoms/Card/Card.stories.tsx +54 -0
  112. package/src/gui/components/atoms/Card/Card.tsx +13 -0
  113. package/src/gui/components/atoms/CardActions/CardActions.resolver.tsx +59 -0
  114. package/src/gui/components/atoms/CardActions/CardActions.stories.tsx +32 -0
  115. package/src/gui/components/atoms/CardActions/CardActions.tsx +14 -0
  116. package/src/gui/components/atoms/CardContent/CardContent.resolver.tsx +60 -0
  117. package/src/gui/components/atoms/CardContent/CardContent.stories.tsx +34 -0
  118. package/src/gui/components/atoms/CardContent/CardContent.tsx +13 -0
  119. package/src/gui/components/atoms/CardHeader/CardHeader.resolver.tsx +68 -0
  120. package/src/gui/components/atoms/CardHeader/CardHeader.stories.tsx +40 -0
  121. package/src/gui/components/atoms/CardHeader/CardHeader.tsx +12 -0
  122. package/src/gui/components/atoms/Collapse/Collapse.resolver.tsx +85 -0
  123. package/src/gui/components/atoms/Collapse/Collapse.stories.tsx +130 -0
  124. package/src/gui/components/atoms/Collapse/Collapse.tsx +17 -0
  125. package/src/gui/components/atoms/Divider/Divider.resolver.tsx +95 -0
  126. package/src/gui/components/atoms/Divider/Divider.stories.tsx +108 -0
  127. package/src/gui/components/atoms/Divider/Divider.tsx +14 -0
  128. package/src/gui/components/atoms/Drawer/Drawer.resolver.tsx +116 -0
  129. package/src/gui/components/atoms/Drawer/Drawer.stories.tsx +223 -0
  130. package/src/gui/components/atoms/Drawer/Drawer.tsx +25 -0
  131. package/src/gui/components/atoms/Grid/Grid.resolver.tsx +33 -0
  132. package/src/gui/components/atoms/Grid/Grid.stories.tsx +136 -0
  133. package/src/gui/components/atoms/Grid/Grid.tsx +15 -0
  134. package/src/gui/components/atoms/Grid/Grid.types.ts +9 -0
  135. package/src/gui/components/atoms/IconButton/IconButton.resolver.tsx +137 -0
  136. package/src/gui/components/atoms/IconButton/IconButton.stories.tsx +134 -0
  137. package/src/gui/components/atoms/IconButton/IconButton.tsx +22 -0
  138. package/src/gui/components/atoms/Link/Link.resolver.tsx +74 -0
  139. package/src/gui/components/atoms/Link/Link.stories.tsx +157 -0
  140. package/src/gui/components/atoms/Link/Link.tsx +36 -0
  141. package/src/gui/components/atoms/List/List.resolver.tsx +94 -0
  142. package/src/gui/components/atoms/List/List.stories.tsx +137 -0
  143. package/src/gui/components/atoms/List/List.tsx +20 -0
  144. package/src/gui/components/atoms/ListItem/ListItem.resolver.tsx +88 -0
  145. package/src/gui/components/atoms/ListItem/ListItem.stories.tsx +151 -0
  146. package/src/gui/components/atoms/ListItem/ListItem.tsx +19 -0
  147. package/src/gui/components/atoms/ListItemButton/ListItemButton.resolver.tsx +214 -0
  148. package/src/gui/components/atoms/ListItemButton/ListItemButton.stories.tsx +155 -0
  149. package/src/gui/components/atoms/ListItemButton/ListItemButton.tsx +15 -0
  150. package/src/gui/components/atoms/ListItemIcon/ListItemIcon.resolver.tsx +102 -0
  151. package/src/gui/components/atoms/ListItemIcon/ListItemIcon.stories.tsx +132 -0
  152. package/src/gui/components/atoms/ListItemIcon/ListItemIcon.tsx +11 -0
  153. package/src/gui/components/atoms/ListItemText/ListItemText.resolver.tsx +112 -0
  154. package/src/gui/components/atoms/ListItemText/ListItemText.stories.tsx +156 -0
  155. package/src/gui/components/atoms/ListItemText/ListItemText.tsx +15 -0
  156. package/src/gui/components/atoms/Menu/Menu.resolver.tsx +112 -0
  157. package/src/gui/components/atoms/Menu/Menu.stories.tsx +162 -0
  158. package/src/gui/components/atoms/Menu/Menu.tsx +17 -0
  159. package/src/gui/components/atoms/MenuItem/MenuItem.resolver.tsx +183 -0
  160. package/src/gui/components/atoms/MenuItem/MenuItem.stories.tsx +134 -0
  161. package/src/gui/components/atoms/MenuItem/MenuItem.tsx +14 -0
  162. package/src/gui/components/atoms/Paper/Paper.resolver.tsx +98 -0
  163. package/src/gui/components/atoms/Paper/Paper.stories.tsx +184 -0
  164. package/src/gui/components/atoms/Paper/Paper.tsx +15 -0
  165. package/src/gui/components/atoms/Section/Section.resolver.tsx +10 -0
  166. package/src/gui/components/atoms/Section/Section.stories.tsx +189 -0
  167. package/src/gui/components/atoms/Section/Section.tsx +76 -0
  168. package/src/gui/components/atoms/Section/Section.types.tsx +24 -0
  169. package/src/gui/components/atoms/Stack/Stack.resolver.tsx +94 -0
  170. package/src/gui/components/atoms/Stack/Stack.stories.tsx +160 -0
  171. package/src/gui/components/atoms/Stack/Stack.tsx +15 -0
  172. package/src/gui/components/atoms/Surface/Surface.resolver.tsx +37 -0
  173. package/src/gui/components/atoms/Surface/Surface.tsx +49 -0
  174. package/src/gui/components/atoms/Surface/Surface.types.ts +20 -0
  175. package/src/gui/components/atoms/Switch/Switch.resolver.tsx +53 -0
  176. package/src/gui/components/atoms/Switch/Switch.stories.tsx +236 -0
  177. package/src/gui/components/atoms/Switch/Switch.tsx +22 -0
  178. package/src/gui/components/atoms/Table/Body/TableBody.tsx +7 -0
  179. package/src/gui/components/atoms/Table/Cell/TableCell.tsx +18 -0
  180. package/src/gui/components/atoms/Table/Head/TableHead.tsx +9 -0
  181. package/src/gui/components/atoms/Table/Row/TableRow.tsx +20 -0
  182. package/src/gui/components/atoms/Table/Table.resolver.tsx +77 -0
  183. package/src/gui/components/atoms/Table/Table.stories.tsx +173 -0
  184. package/src/gui/components/atoms/Table/Table.tsx +20 -0
  185. package/src/gui/components/atoms/TextField/TextField.stories.tsx +25 -0
  186. package/src/gui/components/atoms/TextField/TextField.tsx +15 -0
  187. package/src/gui/components/atoms/Toolbar/Toolbar.resolver.tsx +60 -0
  188. package/src/gui/components/atoms/Toolbar/Toolbar.stories.tsx +155 -0
  189. package/src/gui/components/atoms/Toolbar/Toolbar.tsx +16 -0
  190. package/src/gui/components/atoms/Tooltip/Tooltip.resolver.tsx +142 -0
  191. package/src/gui/components/atoms/Tooltip/Tooltip.stories.tsx +117 -0
  192. package/src/gui/components/atoms/Tooltip/Tooltip.tsx +70 -0
  193. package/src/gui/components/atoms/Typography/Typography.resolver.tsx +158 -0
  194. package/src/gui/components/atoms/Typography/Typography.stories.tsx +222 -0
  195. package/src/gui/components/atoms/Typography/Typography.tsx +27 -0
  196. package/src/gui/components/atoms/Window/Nodes/node.ts +0 -0
  197. package/src/gui/components/atoms/Window/code/block/node.tsx +0 -0
  198. package/src/gui/components/atoms/Window/code/hugging.face.api.ts +11 -0
  199. package/src/gui/components/atoms/Window/connectors/index.ts +19 -0
  200. package/src/gui/components/atoms/Window/window.stories.tsx +20 -0
  201. package/src/gui/components/atoms/Window/window.tsx +636 -0
  202. package/src/gui/components/atoms/atoms.tsx +151 -0
  203. package/src/gui/components/atoms/index.ts +2 -0
  204. package/src/gui/components/generics/Cards/Gridme.jsx +52 -0
  205. package/src/gui/components/generics/Cards/LilBox.jsx +65 -0
  206. package/src/gui/components/generics/Cards/ModuleCard.jsx +106 -0
  207. package/src/gui/components/generics/Chats/FullChatBot.jsx +223 -0
  208. package/src/gui/components/generics/Code/CodeBlock.jsx +33 -0
  209. package/src/gui/components/generics/EmojiCursor/EmojiCursor.stories.tsx +153 -0
  210. package/src/gui/components/generics/EmojiCursor/EmojiCursor.tsx +23 -0
  211. package/src/gui/components/generics/Feedback/Callout.jsx +92 -0
  212. package/src/gui/components/generics/Layout/GridX.jsx +29 -0
  213. package/src/gui/components/generics/Layout/Hero2.jsx +132 -0
  214. package/src/gui/components/generics/Layout/PageContainer.jsx +29 -0
  215. package/src/gui/components/generics/Layout/PageDivider.jsx +20 -0
  216. package/src/gui/components/generics/Layout/Section.jsx +43 -0
  217. package/src/gui/components/generics/Layout/SectionHeader.jsx +21 -0
  218. package/src/gui/components/generics/Media/Img.jsx +58 -0
  219. package/src/gui/components/generics/Media/VideoEmbed.jsx +51 -0
  220. package/src/gui/components/generics/Organization/TableOfContents.jsx +51 -0
  221. package/src/gui/components/generics/Organization/Tabs.jsx +45 -0
  222. package/src/gui/components/generics/Text/TextList.jsx +41 -0
  223. package/src/gui/components/generics/Text/TextParagraph.jsx +28 -0
  224. package/src/gui/components/generics/Text/TextQuote.jsx +23 -0
  225. package/src/gui/components/generics/Text/TextTitle.jsx +44 -0
  226. package/src/gui/components/molecules/Dialog/Dialog.stories.tsx +18 -0
  227. package/src/gui/components/molecules/Dialog/Dialog.tsx +5 -0
  228. package/src/gui/components/molecules/Hero/Hero.stories.tsx +140 -0
  229. package/src/gui/components/molecules/Hero/Hero.tsx +152 -0
  230. package/src/gui/components/molecules/Hero/Hero.types.tsx +18 -0
  231. package/src/gui/components/molecules/Modal/Modal.resolver.tsx +38 -0
  232. package/src/gui/components/molecules/Modal/Modal.stories.tsx +82 -0
  233. package/src/gui/components/molecules/Modal/Modal.tsx +110 -0
  234. package/src/gui/components/molecules/Modal/Modal.types.ts +29 -0
  235. package/src/gui/components/molecules/Page/Page.stories.tsx +135 -0
  236. package/src/gui/components/molecules/Page/Page.tsx +94 -0
  237. package/src/gui/components/molecules/Theme/ThemeModeToggle/ThemeModeToggle.resolver.tsx +58 -0
  238. package/src/gui/components/molecules/Theme/ThemeModeToggle/ThemeModeToggle.stories.tsx +133 -0
  239. package/src/gui/components/molecules/Theme/ThemeModeToggle/ThemeModeToggle.tsx +101 -0
  240. package/src/gui/components/molecules/Theme/ThemeModeToggle/ThemeModeToggle.types.ts +29 -0
  241. package/src/gui/components/molecules/Theme/ThemesCatalog/ThemesCatalog.resolver.tsx +15 -0
  242. package/src/gui/components/molecules/Theme/ThemesCatalog/ThemesCatalog.stories.tsx +88 -0
  243. package/src/gui/components/molecules/Theme/ThemesCatalog/ThemesCatalog.tsx +167 -0
  244. package/src/gui/components/molecules/Theme/ThemesCatalog/ThemesCatalog.types.ts +34 -0
  245. package/src/gui/components/molecules/molecules.ts +49 -0
  246. package/src/gui/components/organisms/Blockchain/Blocks/BlocksTable.tsx +119 -0
  247. package/src/gui/components/organisms/Blockchain/Usernames/Identities.stories.tsx +20 -0
  248. package/src/gui/components/organisms/Blockchain/Usernames/QR.tsx +566 -0
  249. package/src/gui/components/organisms/Blockchain/Usernames/Usernames.tsx +448 -0
  250. package/src/gui/components/organisms/Blockchain/Usernames/identities.tsx +710 -0
  251. package/src/gui/components/organisms/Blockchain/blockchain.stories.tsx +17 -0
  252. package/src/gui/components/organisms/Blockchain/blockchain.tsx +368 -0
  253. package/src/gui/components/organisms/Blockchain/scripts/connection.ts +82 -0
  254. package/src/gui/components/organisms/Blockchain/scripts/match_face.ts +143 -0
  255. package/src/gui/components/organisms/HighLighter/HighLighter.stories.tsx +168 -0
  256. package/src/gui/components/organisms/HighLighter/HighLighter.tsx +420 -0
  257. package/src/gui/components/organisms/HighLighter/HighLightsDrawer.tsx +197 -0
  258. package/src/gui/components/organisms/IdentityNoise/FaceRecognition/FaceRecognition.stories.tsx +312 -0
  259. package/src/gui/components/organisms/IdentityNoise/FaceRecognition/FaceRecognition.tsx +765 -0
  260. package/src/gui/components/organisms/IdentityNoise/FaceRecognition/modules/useFaceCameraPermission.ts +70 -0
  261. package/src/gui/components/organisms/IdentityNoise/FaceRecognition/modules/useFaceLandmarker.ts +106 -0
  262. package/src/gui/components/organisms/IdentityNoise/FaceRecognition/modules/useFaceOverlay.ts +489 -0
  263. package/src/gui/components/organisms/IdentityNoise/FaceRecognition/modules/useFaceTemplate.ts +32 -0
  264. package/src/gui/components/organisms/IdentityNoise/FaceRecognition/modules/useFaceTemplateBurst.ts +178 -0
  265. package/src/gui/components/organisms/IdentityNoise/FaceRecognition/modules/verifyTemplate.ts +136 -0
  266. package/src/gui/components/organisms/IdentityNoise/IdentityNoise.tsx +403 -0
  267. package/src/gui/components/organisms/IdentityNoise/IndentityNoise.stories.tsx +15 -0
  268. package/src/gui/components/organisms/IdentityNoise/Noise/Noise.stories.tsx +206 -0
  269. package/src/gui/components/organisms/IdentityNoise/Noise/Noise.tsx +394 -0
  270. package/src/gui/components/organisms/IdentityNoise/Triad/QR.tsx +566 -0
  271. package/src/gui/components/organisms/IdentityNoise/Triad/Tiad.stories.tsx +6 -0
  272. package/src/gui/components/organisms/IdentityNoise/Triad/Triad.tsx +917 -0
  273. package/src/gui/components/organisms/IdentityNoise/Triad/handleCleak.ts +0 -0
  274. package/src/gui/components/organisms/IdentityNoise/Triad/identity.ts +31 -0
  275. package/src/gui/components/organisms/IdentityNoise/Triad/me/fundamentals/vectors/vectors.tsx +252 -0
  276. package/src/gui/components/organisms/IdentityNoise/Triad/me/me.stories.tsx +314 -0
  277. package/src/gui/components/organisms/IdentityNoise/Triad/me/me.tsx +0 -0
  278. package/src/gui/components/organisms/organisms.ts +15 -0
  279. package/src/gui/contexts/InsetsContext.tsx +40 -0
  280. package/src/gui/contexts/LeftSidebarContext.tsx +20 -0
  281. package/src/gui/contexts/RightSidebarContext.tsx +25 -0
  282. package/src/gui/contexts/ThemeContext.ts +34 -0
  283. package/src/gui/contexts/index.ts +4 -0
  284. package/src/gui/hooks/index.ts +11 -0
  285. package/src/gui/hooks/resolveColorToken.ts +39 -0
  286. package/src/gui/hooks/useCodeGen.ts +12 -0
  287. package/src/gui/hooks/useGuiMediaQuery.ts +18 -0
  288. package/src/gui/hooks/useGuiTheme.ts +18 -0
  289. package/src/gui/hooks/useInsets.ts +26 -0
  290. package/src/gui/hooks/useIsMobile.ts +13 -0
  291. package/src/gui/hooks/useIsTouchDevice.ts +25 -0
  292. package/src/gui/hooks/useLeftSidebar.ts +10 -0
  293. package/src/gui/hooks/useRightSidebar.ts +12 -0
  294. package/src/gui/hooks/useViewportKey.ts +19 -0
  295. package/src/gui/hooks/useViewportProp.ts +17 -0
  296. package/src/gui/registry/GuiRegistry.ts +19 -0
  297. package/src/gui/registry/factory.ts +12 -0
  298. package/src/gui/registry/index.ts +3 -0
  299. package/src/gui/registry/types.ts +6 -0
  300. package/src/gui/utils/nodeID.ts +11 -0
  301. package/src/registry/GuiRegistry.ts +19 -0
  302. package/src/stories/01.Home.mdx +22 -0
  303. package/src/stories/02.Understanding.This.GUI.mdx +149 -0
  304. package/src/stories/Theme/Palette.stories.tsx +86 -0
  305. package/src/stories/Theme/ThemeViewer.stories.tsx +91 -0
  306. package/src/stories/Theme/Typography.stories.jsx +211 -0
  307. package/src/stories/assets/this.GUI.png +0 -0
  308. package/src/types/gui.d.ts +67 -0
  309. package/src/types/theme.d.ts +191 -0
  310. package/src/types/viewport.ts +132 -0
@@ -0,0 +1,24 @@
1
+ // src/themes/catalog/neurons/manifest.ts
2
+ import type { ThemeManifest } from '@/types/theme';
3
+ import badgeImage from './CherryByte.png';
4
+ import lightTokens from './light.tokens';
5
+ import darkTokens from './dark.tokens';
6
+ const cherryByteManifest: ThemeManifest = {
7
+ themeId: 'cherrybyte',
8
+ themeName: 'Cherry Byte',
9
+ description: 'Vibrant cherry red accents, designed to reduce eye strain.',
10
+ author: 'suiGn',
11
+ version: '1.0.0',
12
+ license: 'MIT',
13
+ homepage: 'https://neurons.me/',
14
+ tags: ['official', 'default'],
15
+ createdAt: '2025-09-16T00:00:00.000Z',
16
+ updatedAt: '2025-09-16T00:00:00.000Z',
17
+ badgeUrl: badgeImage,
18
+ mode: {
19
+ light: lightTokens,
20
+ dark: darkTokens,
21
+ },
22
+ defaultMode: 'dark'
23
+ };
24
+ export default cherryByteManifest;
@@ -0,0 +1,43 @@
1
+ // src/themes/catalog/GhostShell/dark.tokens.ts
2
+ const darkTokens = {
3
+ "id": "LunaHex-dark",
4
+ "$description": "LunaHex Cyberpunk Dark — matrix-inspired neon aesthetic with ghostly green glows and deep cyber shadows.",
5
+ "color": {
6
+ "primary": { "$type": "color", "$value": "#00ff9f" },
7
+ "secondary": { "$type": "color", "$value": "#00e0ff" },
8
+ "icon": { "$type": "color", "$value": "#7fffd4" },
9
+ "background": {
10
+ "default": { "$type": "color", "$value": "#06080a" },
11
+ "paper": { "$type": "color", "$value": "#0b1014" },
12
+ "nav": { "$type": "color", "$value": "rgba(10,14,18,0.96)" }
13
+ },
14
+ "textPrimary": { "$type": "color", "$value": "#e0fff3" },
15
+ "textSecondary": { "$type": "color", "$value": "rgba(180,255,220,0.75)" },
16
+ "link": { "$type": "color", "$value": "#00ffc3" },
17
+ "linkVisited": { "$type": "color", "$value": "#00a8a8" },
18
+ "border": { "$type": "color", "$value": "rgba(0,255,160,0.25)" },
19
+ "section": {
20
+ "default": { "$type": "color", "$value": "#0a0f10" },
21
+ "subtle": { "$type": "color", "$value": "#0f1719" },
22
+ "strong": { "$type": "color", "$value": "#030506" }
23
+ },
24
+ "blur": {
25
+ "light": { "$type": "color", "$value": "rgba(2, 13, 7, 0.55)" },
26
+ "medium": { "$type": "color", "$value": "rgba(2, 13, 7, 0.69)" },
27
+ "heavy": { "$type": "color", "$value": "rgba(0, 9, 6, 0.89)" },
28
+ "all": { "$type": "color", "$value": "rgba(2, 25, 15, 1)" }
29
+ },
30
+ "accent": {
31
+ "glow": { "$type": "color", "$value": "#00ffcc" },
32
+ "pulse": { "$type": "color", "$value": "#00c3ff" }
33
+ }
34
+ },
35
+ "font": {
36
+ "family": {
37
+ "$type": "fontFamily",
38
+ "$value": "'Share Tech Mono', 'Poppins', monospace"
39
+ }
40
+ }
41
+ };
42
+
43
+ export default darkTokens;
@@ -0,0 +1,39 @@
1
+ // src/themes/catalog/GhostShell/light.tokens.ts
2
+ const lightTokens = {
3
+ "id": "LunaHex-light",
4
+ "extends": "global.tokens.json",
5
+ "color": {
6
+ "primary": { "$type": "color", "$value": "#00c77f" },
7
+ "secondary": { "$type": "color", "$value": "#00b8ff" },
8
+ "icon": { "$type": "color", "$value": "#007f73" },
9
+ "default": { "$type": "color", "$value": "#f4f8f6" },
10
+ "paper": { "$type": "color", "$value": "#ffffff" },
11
+ "nav": { "$type": "color", "$value": "#f1fef9" },
12
+ "textPrimary": { "$type": "color", "$value": "#061a14" },
13
+ "textSecondary": { "$type": "color", "$value": "#34584f" },
14
+ "link": { "$type": "color", "$value": "#009f77" },
15
+ "linkVisited": { "$type": "color", "$value": "#007866" },
16
+ "border": { "$type": "color", "$value": "rgba(0,160,120,0.25)" },
17
+ "section": {
18
+ "default": { "$type": "color", "$value": "#e9fcf4" },
19
+ "subtle": { "$type": "color", "$value": "#f8fffb" },
20
+ "strong": { "$type": "color", "$value": "#d6f5ec" }
21
+ },
22
+ "blur": {
23
+ "light": { "$type": "color", "$value": "rgba(245, 255, 250, 0.7)" },
24
+ "medium": { "$type": "color", "$value": "rgba(240, 255, 250, 0.85)" },
25
+ "heavy": { "$type": "color", "$value": "rgba(235, 255, 250, 1)" },
26
+ "all": { "$type": "color", "$value": "rgba(230, 255, 245, 1)" }
27
+ },
28
+ "accent": {
29
+ "glow": { "$type": "color", "$value": "#00ffaa" },
30
+ "pulse": { "$type": "color", "$value": "#00d0ff" }
31
+ }
32
+ },
33
+ "font": {
34
+ "body": { "$type": "font", "$value": "'Share Tech Mono', 'Nunito Sans', monospace" },
35
+ "heading": { "$type": "font", "$value": "'Poppins', sans-serif" }
36
+ }
37
+ };
38
+
39
+ export default lightTokens;
@@ -0,0 +1,24 @@
1
+ // src/themes/catalog/GhostShell/manifest.ts
2
+ import type { ThemeManifest } from '@/types/theme';
3
+ import badgeImage from './ghost.png';
4
+ import lightTokens from './light.tokens';
5
+ import darkTokens from './dark.tokens';
6
+ const ghostShellManifest: ThemeManifest = {
7
+ themeId: 'ghost.shell',
8
+ themeName: 'GhostShell',
9
+ description: 'A sleek, modern theme with a dark aesthetic, perfect for late-night sessions.',
10
+ author: 'suiGn',
11
+ version: '1.0.0',
12
+ license: 'MIT',
13
+ homepage: 'https://neurons.me/',
14
+ tags: ['official', 'default'],
15
+ createdAt: '2025-09-16T00:00:00.000Z',
16
+ updatedAt: '2025-09-16T00:00:00.000Z',
17
+ badgeUrl: badgeImage,
18
+ mode: {
19
+ light: lightTokens,
20
+ dark: darkTokens,
21
+ },
22
+ defaultMode: 'dark'
23
+ };
24
+ export default ghostShellManifest;
@@ -0,0 +1,34 @@
1
+ // src/themes/catalog/LunaHex/dark.tokens.ts
2
+ // Luna Hex Dark Theme Tokens — overrides applied on top of global.tokens.json
3
+ const darkTokens = {
4
+ "id": "LunaHex-dark",
5
+ "$description": "Luna Hex Dark Theme Tokens — mystical, elegant dark palette with lunar tones.",
6
+ "color": {
7
+ "primary": { "$type": "color", "$value": "#a692f4" }, // soft lavender glow
8
+ "secondary": { "$type": "color", "$value": "#f6a6de" }, // rose moonlight
9
+ "icon": { "$type": "color", "$value": "#cfc9ff" }, // silver-white icons
10
+ "background": {
11
+ "default": { "$type": "color", "$value": "#0f1016" }, // deep cosmic blue-black
12
+ "paper": { "$type": "color", "$value": "#171822" }, // subtle moon haze
13
+ "nav": { "$type": "color", "$value": "rgba(17,18,25,0.96)" } // translucent dark
14
+ },
15
+ "textPrimary": { "$type": "color", "$value": "#f2efff" },
16
+ "textSecondary": { "$type": "color", "$value": "rgba(230,228,255,0.7)" },
17
+ "link": { "$type": "color", "$value": "#b8a3ff" },
18
+ "linkVisited": { "$type": "color", "$value": "#9c87f2" },
19
+ "border": { "$type": "color", "$value": "rgba(160,160,200,0.25)" },
20
+ "section": {
21
+ "default": { "$type": "color", "$value": "#141421" },
22
+ "subtle": { "$type": "color", "$value": "#1a1a2a" },
23
+ "strong": { "$type": "color", "$value": "#0c0c15" }
24
+ },
25
+ "blur": {
26
+ "light": { "$type": "color", "$value": "rgba(18, 17, 28, 0.55)" },
27
+ "medium": { "$type": "color", "$value": "rgba(20, 19, 32, 0.69)" },
28
+ "heavy": { "$type": "color", "$value": "rgba(17, 16, 24, 0.89)" },
29
+ "all": { "$type": "color", "$value": "rgba(16, 15, 24, 1)" }
30
+ }
31
+ }
32
+ };
33
+
34
+ export default darkTokens;
@@ -0,0 +1,74 @@
1
+ // src/themes/catalog/LunaHex/light.tokens.ts
2
+ const lightTokens = {
3
+ "$description": "Luna Hex Light Theme — part of This.GUI ecosystem",
4
+ "id": "LunaHex-light",
5
+ "extends": "global.tokens.json",
6
+ "color": {
7
+ "primary": {
8
+ "$type": "color",
9
+ "$value": "#6a4cc2"
10
+ },
11
+ "secondary": {
12
+ "$type": "color",
13
+ "$value": "#e08bcf"
14
+ },
15
+ "icon": {
16
+ "$type": "color",
17
+ "$value": "#9fa4b7"
18
+ },
19
+ "default": {
20
+ "$type": "color",
21
+ "$value": "#f4f5fa"
22
+ },
23
+ "paper": {
24
+ "$type": "color",
25
+ "$value": "#ffffff"
26
+ },
27
+ "nav": {
28
+ "$type": "color",
29
+ "$value": "#f9f9fb"
30
+ },
31
+ "textPrimary": {
32
+ "$type": "color",
33
+ "$value": "#2b244d"
34
+ },
35
+ "textSecondary": {
36
+ "$type": "color",
37
+ "$value": "#5c5470"
38
+ },
39
+ "link": {
40
+ "$type": "color",
41
+ "$value": "#a67be9"
42
+ },
43
+ "linkVisited": {
44
+ "$type": "color",
45
+ "$value": "#8b5be0"
46
+ },
47
+ "border": {
48
+ "$type": "color",
49
+ "$value": "rgba(160,160,190,0.2)"
50
+ },
51
+ "section": {
52
+ "default": {
53
+ "$type": "color",
54
+ "$value": "#f6f5ff"
55
+ },
56
+ "subtle": {
57
+ "$type": "color",
58
+ "$value": "#ffffff"
59
+ },
60
+ "strong": {
61
+ "$type": "color",
62
+ "$value": "#e9e6fa"
63
+ }
64
+ },
65
+ "blur": {
66
+ "light": { "$type": "color", "$value": "rgba(250, 245, 255, 0.34)" },
67
+ "medium": { "$type": "color", "$value": "rgba(245, 240, 255, 0.55)" },
68
+ "heavy": { "$type": "color", "$value": "rgba(240, 235, 255, 0.89)" },
69
+ "all": { "$type": "color", "$value": "rgba(235, 230, 255, 1)" }
70
+ }
71
+ }
72
+ };
73
+
74
+ export default lightTokens;
@@ -0,0 +1,24 @@
1
+ // src/themes/catalog/neurons/manifest.ts
2
+ import type { ThemeManifest } from '@/types/theme';
3
+ import badgeImage from './LunaHex.png';
4
+ import lightTokens from './light.tokens';
5
+ import darkTokens from './dark.tokens';
6
+ const lunaManifest: ThemeManifest = {
7
+ themeId: 'luna',
8
+ themeName: 'LunaHex',
9
+ description: 'Luna Hex theme with light and dark modes.',
10
+ author: 'suiGn',
11
+ version: '1.0.0',
12
+ license: 'MIT',
13
+ homepage: 'https://neurons.me/',
14
+ tags: ['official', 'default'],
15
+ createdAt: '2025-09-16T00:00:00.000Z',
16
+ updatedAt: '2025-09-16T00:00:00.000Z',
17
+ badgeUrl: badgeImage,
18
+ mode: {
19
+ light: lightTokens,
20
+ dark: darkTokens,
21
+ },
22
+ defaultMode: 'dark'
23
+ };
24
+ export default lunaManifest;
@@ -0,0 +1,58 @@
1
+ // src/themes/catalog/MUI/dark.tokens.ts
2
+ // MUI Dark Theme Tokens — overrides applied on top of global.tokens.json
3
+ const darkTokens = {
4
+ "id": "MUI-dark",
5
+ "$description": "MUI Dark Theme Tokens — overrides applied on top of global.tokens.json",
6
+ "color": {
7
+ "primary": {
8
+ "$type": "color",
9
+ "$value": "#90caf9"
10
+ },
11
+ "secondary": {
12
+ "$type": "color",
13
+ "$value": "#f48fb1"
14
+ },
15
+ "icon": {
16
+ "$type": "color",
17
+ "$value": "#a8a8a8"
18
+ },
19
+ "background": {
20
+ "default": { "$type": "color", "$value": "#121214" },
21
+ "paper": { "$type": "color", "$value": "#181a1c" },
22
+ "nav": { "$type": "color", "$value": "rgba(18,18,20,0.95)" }
23
+ },
24
+ "textPrimary": {
25
+ "$type": "color",
26
+ "$value": "#ffffff"
27
+ },
28
+ "textSecondary": {
29
+ "$type": "color",
30
+ "$value": "rgba(255,255,255,0.75)"
31
+ },
32
+ "link": {
33
+ "$type": "color",
34
+ "$value": "#00aa96"
35
+ },
36
+ "linkVisited": {
37
+ "$type": "color",
38
+ "$value": "#008278"
39
+ },
40
+ "border": {
41
+ "$type": "color",
42
+ "$value": "rgb(45,45,55)"
43
+ },
44
+ "section": {
45
+ "default": { "$type": "color", "$value": "#181818" },
46
+ "subtle": { "$type": "color", "$value": "#1c1c1c" },
47
+ "strong": { "$type": "color", "$value": "#222" }
48
+ },
49
+ "blur": {
50
+ "light": { "$type": "color", "$value": "rgba(18, 18, 20, 0.55)" },
51
+ "medium": { "$type": "color", "$value": "rgba(18, 18, 20, 0.69)" },
52
+ "heavy": { "$type": "color", "$value": "rgba(18, 18, 20, .89)" },
53
+ "all": { "$type": "color", "$value": "rgba(18, 18, 20, 1)" }
54
+ }
55
+ }
56
+ };
57
+
58
+ export default darkTokens;
@@ -0,0 +1,74 @@
1
+ // src/themes/catalog/MUI/light.tokens.ts
2
+ const lightTokens = {
3
+ "$description": "Mui Light Theme theme — part of This.GUI ecosystem",
4
+ "id": "MUI-light",
5
+ "extends": "global.tokens.json",
6
+ "color": {
7
+ "primary": {
8
+ "$type": "color",
9
+ "$value": "#0a3a42"
10
+ },
11
+ "secondary": {
12
+ "$type": "color",
13
+ "$value": "#e5396f"
14
+ },
15
+ "icon": {
16
+ "$type": "color",
17
+ "$value": "#5e5e5e"
18
+ },
19
+ "default": {
20
+ "$type": "color",
21
+ "$value": "#f8f9fa"
22
+ },
23
+ "paper": {
24
+ "$type": "color",
25
+ "$value": "#ffffff"
26
+ },
27
+ "nav": {
28
+ "$type": "color",
29
+ "$value": "#fdfdfd"
30
+ },
31
+ "textPrimary": {
32
+ "$type": "color",
33
+ "$value": "#111111"
34
+ },
35
+ "textSecondary": {
36
+ "$type": "color",
37
+ "$value": "#444444"
38
+ },
39
+ "link": {
40
+ "$type": "color",
41
+ "$value": "#008c7d"
42
+ },
43
+ "linkVisited": {
44
+ "$type": "color",
45
+ "$value": "#006e64"
46
+ },
47
+ "border": {
48
+ "$type": "color",
49
+ "$value": "rgba(0,0,0,0.08)"
50
+ },
51
+ "section": {
52
+ "default": {
53
+ "$type": "color",
54
+ "$value": "#f8f9fa"
55
+ },
56
+ "subtle": {
57
+ "$type": "color",
58
+ "$value": "#ffffff"
59
+ },
60
+ "strong": {
61
+ "$type": "color",
62
+ "$value": "#e9ecef"
63
+ }
64
+ },
65
+ "blur": {
66
+ "light": { "$type": "color", "$value": "rgba(250, 250, 250, 0.34)" },
67
+ "medium": { "$type": "color", "$value": "rgba(245, 245, 245, 0.55)" },
68
+ "heavy": { "$type": "color", "$value": "rgba(240, 240, 240, 0.89)" },
69
+ "all": { "$type": "color", "$value": "rgba(235, 235, 235, 1)" }
70
+ }
71
+ }
72
+ };
73
+
74
+ export default lightTokens;
@@ -0,0 +1,24 @@
1
+ // src/themes/catalog/neurons/manifest.ts
2
+ import type { ThemeManifest } from '@/types/theme';
3
+ import badgeImage from './MUI.png';
4
+ import lightTokens from './light.tokens';
5
+ import darkTokens from './dark.tokens';
6
+ const muiManifest: ThemeManifest = {
7
+ themeId: 'mui',
8
+ themeName: 'MUI',
9
+ description: 'Material UI theme with light and dark modes.',
10
+ author: 'suiGn',
11
+ version: '1.0.0',
12
+ license: 'MIT',
13
+ homepage: 'https://neurons.me/',
14
+ tags: ['official', 'default'],
15
+ createdAt: '2025-09-16T00:00:00.000Z',
16
+ updatedAt: '2025-09-16T00:00:00.000Z',
17
+ badgeUrl: badgeImage,
18
+ mode: {
19
+ light: lightTokens,
20
+ dark: darkTokens,
21
+ },
22
+ defaultMode: 'dark'
23
+ };
24
+ export default muiManifest;
@@ -0,0 +1,48 @@
1
+ // src/themes/catalog/PrinceOfDarkness/dark.tokens.ts
2
+ // Prince Of Darkness — Dark Mode Tokens
3
+ // Gothic, cyber-metal aesthetic with deep black, muted burgundy, and teal-gray highlights.
4
+ const darkTokens = {
5
+ "id": "PrinceOfDarkness-dark",
6
+ "$description": "Prince Of Darkness Dark Theme — gothic cyber-metal aesthetic for This.GUI, with neutral elegance",
7
+ "color": {
8
+ "primary": { "$type": "color", "$value": "#7a3b5d" }, // Burdeos tenue, más sofisticado
9
+ "secondary": { "$type": "color", "$value": "#5a3d9a" }, // Púrpura oscuro gótico
10
+ "accent": { "$type": "color", "$value": "#00d1b2" }, // Verde-azul metálico suave
11
+ "icon": { "$type": "color", "$value": "#c8c8c8" },
12
+ "background": {
13
+ "default": { "$type": "color", "$value": "#0d0d0f" },
14
+ "paper": { "$type": "color", "$value": "#161618" },
15
+ "nav": { "$type": "color", "$value": "#1c1c1f" }
16
+ },
17
+ "textPrimary": { "$type": "color", "$value": "#f2f2f2" },
18
+ "textSecondary": { "$type": "color", "$value": "#a3a3a3" },
19
+ "link": { "$type": "color", "$value": "#00bfa5" },
20
+ "linkVisited": { "$type": "color", "$value": "#00897b" },
21
+ "border": { "$type": "color", "$value": "rgba(255,255,255,0.1)" },
22
+ "section": {
23
+ "default": { "$type": "color", "$value": "#131314" },
24
+ "subtle": { "$type": "color", "$value": "#1a1a1c" },
25
+ "strong": { "$type": "color", "$value": "#0a0a0b" },
26
+ "accent": { "$type": "color", "$value": "#202228" },
27
+ "highlight": { "$type": "color", "$value": "#2a2f34" }
28
+ },
29
+ "blur": {
30
+ "light": { "$type": "color", "$value": "rgba(18, 18, 20, 0.4)" }, // dark neutral veil
31
+ "medium": { "$type": "color", "$value": "rgba(15, 15, 18, 0.65)" }, // deeper steel tone
32
+ "heavy": { "$type": "color", "$value": "rgba(12, 12, 16, 0.9)" }, // obsidian black with faint violet edge
33
+ "all": { "$type": "color", "$value": "rgba(10, 10, 14, 1)" } // complete gothic darkness
34
+ }
35
+ },
36
+ "effects": {
37
+ "shadow": {
38
+ "$type": "shadow",
39
+ "$value": "0px 0px 12px rgba(0, 209, 178, 0.15)"
40
+ },
41
+ "glow": {
42
+ "$type": "shadow",
43
+ "$value": "0px 0px 18px rgba(90, 61, 154, 0.25)"
44
+ }
45
+ }
46
+ };
47
+
48
+ export default darkTokens;
@@ -0,0 +1,47 @@
1
+ // src/themes/PrinceOfDarkness/light.tokens.ts
2
+ const lightTokens = {
3
+ "$description": "Prince Of Darkness Light theme — sophisticated gothic-light aesthetic with metallic undertones and structured contrast.",
4
+ "id": "PrinceOfDarkness-light",
5
+ "extends": "global.tokens.json",
6
+ "color": {
7
+ "primary": { "$type": "color", "$value": "#5e3b8a" }, // Deep metallic purple
8
+ "secondary": { "$type": "color", "$value": "#3f51b5" }, // Cool indigo-blue
9
+ "accent": { "$type": "color", "$value": "#009688" }, // Elegant teal accent
10
+ "icon": { "$type": "color", "$value": "#3b3b3b" },
11
+ "background": {
12
+ "default": { "$type": "color", "$value": "#eae6f0" }, // Warm silver-lavender tone
13
+ "paper": { "$type": "color", "$value": "#f2f1f6" }, // Softer neutral tone
14
+ "nav": { "$type": "color", "$value": "#dfdce8" } // Distinct navigation area
15
+ },
16
+ "textPrimary": { "$type": "color", "$value": "#1a171f" },
17
+ "textSecondary": { "$type": "color", "$value": "#4e4a56" },
18
+ "link": { "$type": "color", "$value": "#5e3b8a" },
19
+ "linkVisited": { "$type": "color", "$value": "#452f70" },
20
+ "border": { "$type": "color", "$value": "rgba(60, 40, 100, 0.25)" },
21
+ "section": {
22
+ "default": { "$type": "color", "$value": "#e7e3ed" }, // Subtle lavender-gray
23
+ "subtle": { "$type": "color", "$value": "#f7f6fa" }, // Pale tone for contrast
24
+ "strong": { "$type": "color", "$value": "#d9d4e1" }, // Heavier background section
25
+ "accent": { "$type": "color", "$value": "#d0d7e8" }, // Cold steel-blue undertone
26
+ "highlight": { "$type": "color", "$value": "#d5cce5" } // Light metallic lilac for glow
27
+ },
28
+ "blur": {
29
+ "light": { "$type": "color", "$value": "rgba(220, 218, 230, 0.4)" }, // soft platinum haze
30
+ "medium": { "$type": "color", "$value": "rgba(205, 202, 215, 0.65)" }, // brushed steel tone
31
+ "heavy": { "$type": "color", "$value": "rgba(190, 188, 205, 0.85)" }, // smoky lavender-gray depth
32
+ "all": { "$type": "color", "$value": "rgba(175, 173, 190, 1)" } // gothic silver finish
33
+ }
34
+ },
35
+ "effects": {
36
+ "shadow": {
37
+ "$type": "shadow",
38
+ "$value": "0px 4px 14px rgba(50, 30, 80, 0.15)"
39
+ },
40
+ "glow": {
41
+ "$type": "shadow",
42
+ "$value": "0px 0px 14px rgba(94, 59, 138, 0.25)"
43
+ }
44
+ }
45
+ };
46
+
47
+ export default lightTokens;
@@ -0,0 +1,24 @@
1
+ // src/themes/tokens/neurons/manifest.ts
2
+ import type { ThemeManifest } from '@/types/theme';
3
+ import badgeImage from './princeOfDarkness.png';
4
+ import lightTokens from './light.tokens';
5
+ import darkTokens from './dark.tokens';
6
+ const PrinceOfDarknessManifest: ThemeManifest = {
7
+ themeId: 'prince-of-darkness',
8
+ themeName: 'Prince Of Darkness',
9
+ description: 'A dark theme with a touch of neon, perfect for night owls and coding enthusiasts.',
10
+ author: 'suiGn',
11
+ version: '1.0.0',
12
+ license: 'MIT',
13
+ homepage: 'https://neurons.me/',
14
+ tags: ['official', 'default'],
15
+ createdAt: '2025-09-16T00:00:00.000Z',
16
+ updatedAt: '2025-09-16T00:00:00.000Z',
17
+ badgeUrl: badgeImage,
18
+ mode: {
19
+ light: lightTokens,
20
+ dark: darkTokens,
21
+ },
22
+ defaultMode: 'dark'
23
+ };
24
+ export default PrinceOfDarknessManifest;
@@ -0,0 +1,49 @@
1
+ // src/themes/catalog/Seafoam/dark.tokens.ts
2
+ // Seafoam — Dark Mode Tokens
3
+ // Seafoam — Dark Mode Tokens
4
+ // Tranquil oceanic elegance with deep forest teal, soft coral, and misty neutrals.
5
+ const darkTokens = {
6
+ "id": "Seafoam-dark",
7
+ "$description": "Seafoam Dark Theme — a tranquil, feminine oceanic palette blending deep teal, blush, and warm sand accents for a serene night mood.",
8
+ "color": {
9
+ "primary": { "$type": "color", "$value": "#244C4E" }, // deep sea green
10
+ "secondary": { "$type": "color", "$value": "#457E85" }, // misty teal
11
+ "accent": { "$type": "color", "$value": "#F0B7A4" }, // soft blush coral
12
+ "icon": { "$type": "color", "$value": "#CBD6D4" }, // soft silver
13
+ "background": {
14
+ "default": { "$type": "color", "$value": "#0F1919" }, // deep ocean night
15
+ "paper": { "$type": "color", "$value": "#182423" }, // soft teal black
16
+ "nav": { "$type": "color", "$value": "#1D2E2C" } // cool forest depth
17
+ },
18
+ "textPrimary": { "$type": "color", "$value": "#EAEDED" },
19
+ "textSecondary": { "$type": "color", "$value": "#AFC3C2" },
20
+ "link": { "$type": "color", "$value": "#5FA8B0" },
21
+ "linkVisited": { "$type": "color", "$value": "#7AB9BE" },
22
+ "border": { "$type": "color", "$value": "rgba(255,255,255,0.08)" },
23
+ "section": {
24
+ "default": { "$type": "color", "$value": "#162322" }, // rich teal-black section
25
+ "subtle": { "$type": "color", "$value": "#1E2E2D" }, // cool mist teal
26
+ "strong": { "$type": "color", "$value": "#0E1717" }, // deep focus area
27
+ "accent": { "$type": "color", "$value": "#263937" }, // soft forest teal accent
28
+ "highlight": { "$type": "color", "$value": "#314B48" } // elegant muted jade
29
+ },
30
+ "blur": {
31
+ "light": { "$type": "color", "$value": "rgba(22, 44, 46, 0.35)" }, // twilight teal mist
32
+ "medium": { "$type": "color", "$value": "rgba(18, 38, 40, 0.55)" }, // deep aqua reflection
33
+ "heavy": { "$type": "color", "$value": "rgba(14, 32, 34, 0.85)" }, // moonlit sea surface
34
+ "all": { "$type": "color", "$value": "rgba(10, 26, 28, 1)" } // full oceanic darkness
35
+ }
36
+ },
37
+ "effects": {
38
+ "shadow": {
39
+ "$type": "shadow",
40
+ "$value": "0px 2px 10px rgba(79, 138, 139, 0.2)"
41
+ },
42
+ "glow": {
43
+ "$type": "shadow",
44
+ "$value": "0px 0px 14px rgba(240, 183, 164, 0.25)"
45
+ }
46
+ }
47
+ };
48
+
49
+ export default darkTokens;