@ya-accelerators/nextjs-framework 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (318) hide show
  1. package/@types/general.d.ts +1 -0
  2. package/@types/image.d.ts +8 -0
  3. package/@types/next-auth.d.ts +18 -0
  4. package/dist/env.client.d.ts +3 -0
  5. package/dist/env.client.js +9 -0
  6. package/dist/env.client.js.map +1 -0
  7. package/dist/env.d.ts +6 -0
  8. package/dist/env.js +18 -0
  9. package/dist/env.js.map +1 -0
  10. package/dist/hooks/date/index.d.ts +11 -0
  11. package/dist/hooks/date/index.js +14 -0
  12. package/dist/hooks/date/index.js.map +1 -0
  13. package/dist/hooks/dispatch/index.d.ts +9 -0
  14. package/dist/hooks/dispatch/index.jsx +25 -0
  15. package/dist/hooks/dispatch/index.jsx.map +1 -0
  16. package/dist/hooks/index.d.ts +6 -0
  17. package/dist/hooks/index.js +7 -0
  18. package/dist/hooks/index.js.map +1 -0
  19. package/dist/hooks/loading/index.d.ts +10 -0
  20. package/dist/hooks/loading/index.jsx +22 -0
  21. package/dist/hooks/loading/index.jsx.map +1 -0
  22. package/dist/hooks/localStorage/index.d.ts +1 -0
  23. package/dist/hooks/localStorage/index.js +53 -0
  24. package/dist/hooks/localStorage/index.js.map +1 -0
  25. package/dist/hooks/modal/index.d.ts +26 -0
  26. package/dist/hooks/modal/index.jsx +63 -0
  27. package/dist/hooks/modal/index.jsx.map +1 -0
  28. package/dist/hooks/toast/index.d.ts +15 -0
  29. package/dist/hooks/toast/index.jsx +39 -0
  30. package/dist/hooks/toast/index.jsx.map +1 -0
  31. package/dist/i18n/index.d.ts +3 -0
  32. package/dist/i18n/index.js +40 -0
  33. package/dist/i18n/index.js.map +1 -0
  34. package/dist/i18n/strings/en-US.json +18 -0
  35. package/dist/i18n/strings/ja-JP.json +37 -0
  36. package/dist/index.d.ts +7 -0
  37. package/dist/index.js +8 -0
  38. package/dist/index.js.map +1 -0
  39. package/dist/lib/cookie/index.d.ts +9 -0
  40. package/dist/lib/cookie/index.js +66 -0
  41. package/dist/lib/cookie/index.js.map +1 -0
  42. package/dist/lib/index.d.ts +10 -0
  43. package/dist/lib/index.js +11 -0
  44. package/dist/lib/index.js.map +1 -0
  45. package/dist/lib/next-auth/index.d.ts +2 -0
  46. package/dist/lib/next-auth/index.js +62 -0
  47. package/dist/lib/next-auth/index.js.map +1 -0
  48. package/dist/lib/s3/index.d.ts +2 -0
  49. package/dist/lib/s3/index.js +17 -0
  50. package/dist/lib/s3/index.js.map +1 -0
  51. package/dist/lib/trpc/index.d.ts +8 -0
  52. package/dist/lib/trpc/index.js +32 -0
  53. package/dist/lib/trpc/index.js.map +1 -0
  54. package/dist/styles/globals.css +26 -0
  55. package/dist/styles/tailwind.config.d.ts +577 -0
  56. package/dist/styles/tailwind.config.js +671 -0
  57. package/dist/styles/tailwind.config.js.map +1 -0
  58. package/dist/styles/tailwind.config.ts +672 -0
  59. package/dist/tsconfig.tsbuildinfo +1 -0
  60. package/dist/ui/component/button/base.d.ts +27 -0
  61. package/dist/ui/component/button/base.jsx +54 -0
  62. package/dist/ui/component/button/base.jsx.map +1 -0
  63. package/dist/ui/component/button/colored/index.d.ts +11 -0
  64. package/dist/ui/component/button/colored/index.jsx +7 -0
  65. package/dist/ui/component/button/colored/index.jsx.map +1 -0
  66. package/dist/ui/component/button/image/index.d.ts +4 -0
  67. package/dist/ui/component/button/image/index.jsx +5 -0
  68. package/dist/ui/component/button/image/index.jsx.map +1 -0
  69. package/dist/ui/component/button/index.d.ts +18 -0
  70. package/dist/ui/component/button/index.jsx +25 -0
  71. package/dist/ui/component/button/index.jsx.map +1 -0
  72. package/dist/ui/component/button/text/index.d.ts +11 -0
  73. package/dist/ui/component/button/text/index.jsx +8 -0
  74. package/dist/ui/component/button/text/index.jsx.map +1 -0
  75. package/dist/ui/component/card/index.d.ts +12 -0
  76. package/dist/ui/component/card/index.jsx +20 -0
  77. package/dist/ui/component/card/index.jsx.map +1 -0
  78. package/dist/ui/component/icon/index.d.ts +7 -0
  79. package/dist/ui/component/icon/index.jsx +3 -0
  80. package/dist/ui/component/icon/index.jsx.map +1 -0
  81. package/dist/ui/component/index.d.ts +95 -0
  82. package/dist/ui/component/index.js +15 -0
  83. package/dist/ui/component/index.js.map +1 -0
  84. package/dist/ui/component/loading/index.d.ts +5 -0
  85. package/dist/ui/component/loading/index.jsx +27 -0
  86. package/dist/ui/component/loading/index.jsx.map +1 -0
  87. package/dist/ui/component/ssr/index.d.ts +5 -0
  88. package/dist/ui/component/ssr/index.jsx +11 -0
  89. package/dist/ui/component/ssr/index.jsx.map +1 -0
  90. package/dist/ui/component/typography/H1/index.d.ts +7 -0
  91. package/dist/ui/component/typography/H1/index.jsx +13 -0
  92. package/dist/ui/component/typography/H1/index.jsx.map +1 -0
  93. package/dist/ui/component/typography/H2/index.d.ts +7 -0
  94. package/dist/ui/component/typography/H2/index.jsx +13 -0
  95. package/dist/ui/component/typography/H2/index.jsx.map +1 -0
  96. package/dist/ui/component/typography/H3/index.d.ts +7 -0
  97. package/dist/ui/component/typography/H3/index.jsx +13 -0
  98. package/dist/ui/component/typography/H3/index.jsx.map +1 -0
  99. package/dist/ui/component/typography/H4/index.d.ts +7 -0
  100. package/dist/ui/component/typography/H4/index.jsx +13 -0
  101. package/dist/ui/component/typography/H4/index.jsx.map +1 -0
  102. package/dist/ui/component/typography/H5/index.d.ts +7 -0
  103. package/dist/ui/component/typography/H5/index.jsx +13 -0
  104. package/dist/ui/component/typography/H5/index.jsx.map +1 -0
  105. package/dist/ui/component/typography/H6/index.d.ts +7 -0
  106. package/dist/ui/component/typography/H6/index.jsx +13 -0
  107. package/dist/ui/component/typography/H6/index.jsx.map +1 -0
  108. package/dist/ui/component/typography/Label/index.d.ts +7 -0
  109. package/dist/ui/component/typography/Label/index.jsx +13 -0
  110. package/dist/ui/component/typography/Label/index.jsx.map +1 -0
  111. package/dist/ui/component/typography/LinkText/index.d.ts +8 -0
  112. package/dist/ui/component/typography/LinkText/index.jsx +14 -0
  113. package/dist/ui/component/typography/LinkText/index.jsx.map +1 -0
  114. package/dist/ui/component/typography/P/index.d.ts +7 -0
  115. package/dist/ui/component/typography/P/index.jsx +13 -0
  116. package/dist/ui/component/typography/P/index.jsx.map +1 -0
  117. package/dist/ui/component/typography/Pre/index.d.ts +7 -0
  118. package/dist/ui/component/typography/Pre/index.jsx +13 -0
  119. package/dist/ui/component/typography/Pre/index.jsx.map +1 -0
  120. package/dist/ui/component/typography/index.d.ts +54 -0
  121. package/dist/ui/component/typography/index.jsx +23 -0
  122. package/dist/ui/component/typography/index.jsx.map +1 -0
  123. package/dist/ui/composite/button/index.d.ts +8 -0
  124. package/dist/ui/composite/button/index.jsx +45 -0
  125. package/dist/ui/composite/button/index.jsx.map +1 -0
  126. package/dist/ui/composite/dropdown/index.d.ts +12 -0
  127. package/dist/ui/composite/dropdown/index.jsx +102 -0
  128. package/dist/ui/composite/dropdown/index.jsx.map +1 -0
  129. package/dist/ui/composite/index.d.ts +342 -0
  130. package/dist/ui/composite/index.js +13 -0
  131. package/dist/ui/composite/index.js.map +1 -0
  132. package/dist/ui/composite/input/address/index.d.ts +33 -0
  133. package/dist/ui/composite/input/address/index.jsx +132 -0
  134. package/dist/ui/composite/input/address/index.jsx.map +1 -0
  135. package/dist/ui/composite/input/address/map.d.ts +64 -0
  136. package/dist/ui/composite/input/address/map.jsx +111 -0
  137. package/dist/ui/composite/input/address/map.jsx.map +1 -0
  138. package/dist/ui/composite/input/address/utils.d.ts +23 -0
  139. package/dist/ui/composite/input/address/utils.js +63 -0
  140. package/dist/ui/composite/input/address/utils.js.map +1 -0
  141. package/dist/ui/composite/input/checkbox/index.d.ts +22 -0
  142. package/dist/ui/composite/input/checkbox/index.jsx +38 -0
  143. package/dist/ui/composite/input/checkbox/index.jsx.map +1 -0
  144. package/dist/ui/composite/input/datePicker/index.d.ts +19 -0
  145. package/dist/ui/composite/input/datePicker/index.jsx +100 -0
  146. package/dist/ui/composite/input/datePicker/index.jsx.map +1 -0
  147. package/dist/ui/composite/input/dateRange/index.d.ts +14 -0
  148. package/dist/ui/composite/input/dateRange/index.jsx +46 -0
  149. package/dist/ui/composite/input/dateRange/index.jsx.map +1 -0
  150. package/dist/ui/composite/input/dateTimePicker/index.d.ts +15 -0
  151. package/dist/ui/composite/input/dateTimePicker/index.jsx +74 -0
  152. package/dist/ui/composite/input/dateTimePicker/index.jsx.map +1 -0
  153. package/dist/ui/composite/input/dateTimeRange/index.d.ts +14 -0
  154. package/dist/ui/composite/input/dateTimeRange/index.jsx +88 -0
  155. package/dist/ui/composite/input/dateTimeRange/index.jsx.map +1 -0
  156. package/dist/ui/composite/input/index.d.ts +216 -0
  157. package/dist/ui/composite/input/index.js +35 -0
  158. package/dist/ui/composite/input/index.js.map +1 -0
  159. package/dist/ui/composite/input/list/index.d.ts +20 -0
  160. package/dist/ui/composite/input/list/index.jsx +30 -0
  161. package/dist/ui/composite/input/list/index.jsx.map +1 -0
  162. package/dist/ui/composite/input/radio/index.d.ts +14 -0
  163. package/dist/ui/composite/input/radio/index.jsx +34 -0
  164. package/dist/ui/composite/input/radio/index.jsx.map +1 -0
  165. package/dist/ui/composite/input/search/index.d.ts +5 -0
  166. package/dist/ui/composite/input/search/index.jsx +38 -0
  167. package/dist/ui/composite/input/search/index.jsx.map +1 -0
  168. package/dist/ui/composite/input/select/ClearIndicator/index.d.ts +4 -0
  169. package/dist/ui/composite/input/select/ClearIndicator/index.jsx +8 -0
  170. package/dist/ui/composite/input/select/ClearIndicator/index.jsx.map +1 -0
  171. package/dist/ui/composite/input/select/Control/index.d.ts +4 -0
  172. package/dist/ui/composite/input/select/Control/index.jsx +23 -0
  173. package/dist/ui/composite/input/select/Control/index.jsx.map +1 -0
  174. package/dist/ui/composite/input/select/DropdownIndicator/index.d.ts +4 -0
  175. package/dist/ui/composite/input/select/DropdownIndicator/index.jsx +8 -0
  176. package/dist/ui/composite/input/select/DropdownIndicator/index.jsx.map +1 -0
  177. package/dist/ui/composite/input/select/GroupHeading/index.d.ts +4 -0
  178. package/dist/ui/composite/input/select/GroupHeading/index.jsx +9 -0
  179. package/dist/ui/composite/input/select/GroupHeading/index.jsx.map +1 -0
  180. package/dist/ui/composite/input/select/Input/index.d.ts +4 -0
  181. package/dist/ui/composite/input/select/Input/index.jsx +7 -0
  182. package/dist/ui/composite/input/select/Input/index.jsx.map +1 -0
  183. package/dist/ui/composite/input/select/Menu/index.d.ts +4 -0
  184. package/dist/ui/composite/input/select/Menu/index.jsx +19 -0
  185. package/dist/ui/composite/input/select/Menu/index.jsx.map +1 -0
  186. package/dist/ui/composite/input/select/MultiValue/index.d.ts +4 -0
  187. package/dist/ui/composite/input/select/MultiValue/index.jsx +15 -0
  188. package/dist/ui/composite/input/select/MultiValue/index.jsx.map +1 -0
  189. package/dist/ui/composite/input/select/Option/index.d.ts +4 -0
  190. package/dist/ui/composite/input/select/Option/index.jsx +79 -0
  191. package/dist/ui/composite/input/select/Option/index.jsx.map +1 -0
  192. package/dist/ui/composite/input/select/Placeholder/index.d.ts +4 -0
  193. package/dist/ui/composite/input/select/Placeholder/index.jsx +7 -0
  194. package/dist/ui/composite/input/select/Placeholder/index.jsx.map +1 -0
  195. package/dist/ui/composite/input/select/SelectContainer/index.d.ts +4 -0
  196. package/dist/ui/composite/input/select/SelectContainer/index.jsx +40 -0
  197. package/dist/ui/composite/input/select/SelectContainer/index.jsx.map +1 -0
  198. package/dist/ui/composite/input/select/SingleValue/index.d.ts +4 -0
  199. package/dist/ui/composite/input/select/SingleValue/index.jsx +17 -0
  200. package/dist/ui/composite/input/select/SingleValue/index.jsx.map +1 -0
  201. package/dist/ui/composite/input/select/index.d.ts +37 -0
  202. package/dist/ui/composite/input/select/index.jsx +242 -0
  203. package/dist/ui/composite/input/select/index.jsx.map +1 -0
  204. package/dist/ui/composite/input/select/types.d.ts +16 -0
  205. package/dist/ui/composite/input/select/types.js +6 -0
  206. package/dist/ui/composite/input/select/types.js.map +1 -0
  207. package/dist/ui/composite/input/text/index.d.ts +15 -0
  208. package/dist/ui/composite/input/text/index.jsx +40 -0
  209. package/dist/ui/composite/input/text/index.jsx.map +1 -0
  210. package/dist/ui/composite/input/textarea/index.d.ts +11 -0
  211. package/dist/ui/composite/input/textarea/index.jsx +62 -0
  212. package/dist/ui/composite/input/textarea/index.jsx.map +1 -0
  213. package/dist/ui/composite/input/timePicker/index.d.ts +13 -0
  214. package/dist/ui/composite/input/timePicker/index.jsx +36 -0
  215. package/dist/ui/composite/input/timePicker/index.jsx.map +1 -0
  216. package/dist/ui/composite/input/timeRange/index.d.ts +16 -0
  217. package/dist/ui/composite/input/timeRange/index.jsx +54 -0
  218. package/dist/ui/composite/input/timeRange/index.jsx.map +1 -0
  219. package/dist/ui/composite/input/weekDaysSelector/index.d.ts +11 -0
  220. package/dist/ui/composite/input/weekDaysSelector/index.jsx +39 -0
  221. package/dist/ui/composite/input/weekDaysSelector/index.jsx.map +1 -0
  222. package/dist/ui/composite/input/weekdayPicker/index.d.ts +13 -0
  223. package/dist/ui/composite/input/weekdayPicker/index.jsx +49 -0
  224. package/dist/ui/composite/input/weekdayPicker/index.jsx.map +1 -0
  225. package/dist/ui/composite/label/index.d.ts +11 -0
  226. package/dist/ui/composite/label/index.jsx +18 -0
  227. package/dist/ui/composite/label/index.jsx.map +1 -0
  228. package/dist/ui/composite/pageTitle/index.d.ts +18 -0
  229. package/dist/ui/composite/pageTitle/index.jsx +62 -0
  230. package/dist/ui/composite/pageTitle/index.jsx.map +1 -0
  231. package/dist/ui/functional/index.d.ts +10 -0
  232. package/dist/ui/functional/index.js +9 -0
  233. package/dist/ui/functional/index.js.map +1 -0
  234. package/dist/ui/functional/notFound/index.d.ts +1 -0
  235. package/dist/ui/functional/notFound/index.jsx +13 -0
  236. package/dist/ui/functional/notFound/index.jsx.map +1 -0
  237. package/dist/ui/functional/signInForm/index.d.ts +4 -0
  238. package/dist/ui/functional/signInForm/index.jsx +45 -0
  239. package/dist/ui/functional/signInForm/index.jsx.map +1 -0
  240. package/dist/ui/functional/signOutForm/index.d.ts +3 -0
  241. package/dist/ui/functional/signOutForm/index.jsx +29 -0
  242. package/dist/ui/functional/signOutForm/index.jsx.map +1 -0
  243. package/dist/ui/index.d.ts +6 -0
  244. package/dist/ui/index.js +7 -0
  245. package/dist/ui/index.js.map +1 -0
  246. package/dist/ui/layout/app/component.d.ts +59 -0
  247. package/dist/ui/layout/app/component.jsx +224 -0
  248. package/dist/ui/layout/app/component.jsx.map +1 -0
  249. package/dist/ui/layout/app/content/index.d.ts +9 -0
  250. package/dist/ui/layout/app/content/index.jsx +18 -0
  251. package/dist/ui/layout/app/content/index.jsx.map +1 -0
  252. package/dist/ui/layout/app/index.d.ts +18 -0
  253. package/dist/ui/layout/app/index.jsx +40 -0
  254. package/dist/ui/layout/app/index.jsx.map +1 -0
  255. package/dist/ui/layout/form/index.d.ts +68 -0
  256. package/dist/ui/layout/form/index.jsx +558 -0
  257. package/dist/ui/layout/form/index.jsx.map +1 -0
  258. package/dist/ui/layout/index.d.ts +356 -0
  259. package/dist/ui/layout/index.js +19 -0
  260. package/dist/ui/layout/index.js.map +1 -0
  261. package/dist/ui/layout/modal/index.d.ts +7 -0
  262. package/dist/ui/layout/modal/index.jsx +11 -0
  263. package/dist/ui/layout/modal/index.jsx.map +1 -0
  264. package/dist/ui/layout/object/index.d.ts +30 -0
  265. package/dist/ui/layout/object/index.jsx +145 -0
  266. package/dist/ui/layout/object/index.jsx.map +1 -0
  267. package/dist/ui/layout/root/index.d.ts +10 -0
  268. package/dist/ui/layout/root/index.jsx +31 -0
  269. package/dist/ui/layout/root/index.jsx.map +1 -0
  270. package/dist/ui/layout/root/provider/index.d.ts +7 -0
  271. package/dist/ui/layout/root/provider/index.jsx +26 -0
  272. package/dist/ui/layout/root/provider/index.jsx.map +1 -0
  273. package/dist/ui/layout/tab/component.d.ts +4 -0
  274. package/dist/ui/layout/tab/component.jsx +16 -0
  275. package/dist/ui/layout/tab/component.jsx.map +1 -0
  276. package/dist/ui/layout/tab/content/index.d.ts +8 -0
  277. package/dist/ui/layout/tab/content/index.jsx +8 -0
  278. package/dist/ui/layout/tab/content/index.jsx.map +1 -0
  279. package/dist/ui/layout/tab/index.d.ts +11 -0
  280. package/dist/ui/layout/tab/index.jsx +25 -0
  281. package/dist/ui/layout/tab/index.jsx.map +1 -0
  282. package/dist/ui/layout/table/index.d.ts +33 -0
  283. package/dist/ui/layout/table/index.jsx +283 -0
  284. package/dist/ui/layout/table/index.jsx.map +1 -0
  285. package/dist/ui/layout/toast/index.d.ts +7 -0
  286. package/dist/ui/layout/toast/index.jsx +18 -0
  287. package/dist/ui/layout/toast/index.jsx.map +1 -0
  288. package/dist/ui/theme/border/index.d.ts +28 -0
  289. package/dist/ui/theme/border/index.js +67 -0
  290. package/dist/ui/theme/border/index.js.map +1 -0
  291. package/dist/ui/theme/color/index.d.ts +32 -0
  292. package/dist/ui/theme/color/index.js +106 -0
  293. package/dist/ui/theme/color/index.js.map +1 -0
  294. package/dist/ui/theme/index.d.ts +4 -0
  295. package/dist/ui/theme/index.js +5 -0
  296. package/dist/ui/theme/index.js.map +1 -0
  297. package/dist/ui/theme/rounded/index.d.ts +9 -0
  298. package/dist/ui/theme/rounded/index.js +14 -0
  299. package/dist/ui/theme/rounded/index.js.map +1 -0
  300. package/dist/ui/theme/size/index.d.ts +15 -0
  301. package/dist/ui/theme/size/index.js +55 -0
  302. package/dist/ui/theme/size/index.js.map +1 -0
  303. package/dist/ui/types/index.d.ts +113 -0
  304. package/dist/ui/types/index.js +33 -0
  305. package/dist/ui/types/index.js.map +1 -0
  306. package/dist/util/client.d.ts +2 -0
  307. package/dist/util/client.js +4 -0
  308. package/dist/util/client.js.map +1 -0
  309. package/dist/util/date/impl.d.ts +7 -0
  310. package/dist/util/date/impl.js +22 -0
  311. package/dist/util/date/impl.js.map +1 -0
  312. package/dist/util/date/index.d.ts +17 -0
  313. package/dist/util/date/index.js +16 -0
  314. package/dist/util/date/index.js.map +1 -0
  315. package/dist/util/index.d.ts +17 -0
  316. package/dist/util/index.js +143 -0
  317. package/dist/util/index.js.map +1 -0
  318. package/package.json +62 -0
@@ -0,0 +1,577 @@
1
+ declare const config: {
2
+ theme: {
3
+ colors: {
4
+ primitive: {
5
+ readonly black: {
6
+ readonly 5: "rgba(0, 0, 0, 0.95)";
7
+ readonly 10: "rgba(0, 0, 0, 0.90)";
8
+ readonly 20: "rgba(0, 0, 0, 0.80)";
9
+ readonly 30: "rgba(0, 0, 0, 0.70)";
10
+ readonly 40: "rgba(0, 0, 0, 0.60)";
11
+ readonly 50: "rgba(0, 0, 0, 0.50)";
12
+ readonly 60: "rgba(0, 0, 0, 0.60)";
13
+ readonly 70: "rgba(0, 0, 0, 0.70)";
14
+ readonly 80: "rgba(0, 0, 0, 0.80)";
15
+ readonly 90: "rgba(0, 0, 0, 0.90)";
16
+ readonly 95: "rgba(0, 0, 0, 0.95)";
17
+ readonly 98: "rgba(0, 0, 0, 0.98)";
18
+ readonly 99: "rgba(0, 0, 0, 0.99)";
19
+ readonly 100: "#000000";
20
+ };
21
+ readonly white: {
22
+ readonly 5: "rgba(255, 255, 255, 0.05)";
23
+ readonly 10: "rgba(255, 255, 255, 0.1)";
24
+ readonly 20: "rgba(255, 255, 255, 0.2)";
25
+ readonly 30: "rgba(255, 255, 255, 0.3)";
26
+ readonly 40: "rgba(255, 255, 255, 0.4)";
27
+ readonly 50: "rgba(255, 255, 255, 0.5)";
28
+ readonly 60: "rgba(255, 255, 255, 0.6)";
29
+ readonly 70: "rgba(255, 255, 255, 0.7)";
30
+ readonly 80: "rgba(255, 255, 255, 0.8)";
31
+ readonly 90: "rgba(255, 255, 255, 0.9)";
32
+ readonly 95: "rgba(255, 255, 255, 0.95)";
33
+ readonly 98: "rgba(255, 255, 255, 0.98)";
34
+ readonly 99: "rgba(255, 255, 255, 0.99)";
35
+ readonly 100: "#FFFFFF";
36
+ };
37
+ readonly tealOpacity: {
38
+ readonly 20: "rgba(72, 160, 129, 0.2)";
39
+ readonly 40: "rgba(72, 160, 129, 0.4)";
40
+ readonly 60: "rgba(72, 160, 129, 0.6)";
41
+ readonly 80: "rgba(72, 160, 129, 0.8)";
42
+ readonly 100: "#48A081";
43
+ };
44
+ readonly primary: {
45
+ readonly 0: "#000000";
46
+ readonly 5: "#001414";
47
+ readonly 10: "#002020";
48
+ readonly 15: "#002B2B";
49
+ readonly 20: "#003736";
50
+ readonly 25: "#004343";
51
+ readonly 30: "#00504F";
52
+ readonly 35: "#005C5C";
53
+ readonly 40: "#006A69";
54
+ readonly 50: "#008584";
55
+ readonly 60: "#00A1A0";
56
+ readonly 70: "#1FBEBD";
57
+ readonly 80: "#4DDAD9";
58
+ readonly 90: "#6FF7F5";
59
+ readonly 95: "#AEFFFD";
60
+ readonly 98: "#E3FFFE";
61
+ readonly 99: "#F1FFFF";
62
+ readonly 100: "#FFFFFF";
63
+ };
64
+ readonly secondary: {
65
+ readonly 0: "#000000";
66
+ readonly 5: "#001414";
67
+ readonly 10: "#051F1F";
68
+ readonly 15: "#102A29";
69
+ readonly 20: "#1B3534";
70
+ readonly 25: "#27403F";
71
+ readonly 30: "#324B4B";
72
+ readonly 35: "#3E5756";
73
+ readonly 40: "#4A6362";
74
+ readonly 50: "#627C7B";
75
+ readonly 60: "#7B9695";
76
+ readonly 70: "#95B0AF";
77
+ readonly 80: "#B0CCCB";
78
+ readonly 90: "#CCE8E7";
79
+ readonly 95: "#DAF6F5";
80
+ readonly 98: "#E3FFFE";
81
+ readonly 99: "#F1FFFE";
82
+ readonly 100: "#FFFFFF";
83
+ };
84
+ readonly tertiary: {
85
+ readonly 0: "#000000";
86
+ readonly 5: "#001126";
87
+ readonly 10: "#031C35";
88
+ readonly 15: "#102740";
89
+ readonly 20: "#1C314B";
90
+ readonly 25: "#273D57";
91
+ readonly 30: "#334863";
92
+ readonly 35: "#3F546F";
93
+ readonly 40: "#4B607C";
94
+ readonly 50: "#637996";
95
+ readonly 60: "#7D92B0";
96
+ readonly 70: "#97ADCC";
97
+ readonly 80: "#B2C8E8";
98
+ readonly 90: "#D2E4FF";
99
+ readonly 95: "#EAF1FF";
100
+ readonly 98: "#F8F9FF";
101
+ readonly 99: "#FDFCFF";
102
+ readonly 100: "#FFFFFF";
103
+ };
104
+ readonly neutral: {
105
+ readonly 0: "#000000";
106
+ readonly 5: "#0E1211";
107
+ readonly 10: "#191C1C";
108
+ readonly 15: "#232626";
109
+ readonly 20: "#2D3131";
110
+ readonly 25: "#383C3C";
111
+ readonly 30: "#444747";
112
+ readonly 35: "#4F5353";
113
+ readonly 40: "#5B5F5F";
114
+ readonly 50: "#747877";
115
+ readonly 60: "#8E9191";
116
+ readonly 70: "#A9ACAB";
117
+ readonly 80: "#C4C7C6";
118
+ readonly 90: "#E0E3E2";
119
+ readonly 95: "#EFF1F0";
120
+ readonly 98: "#F7FAF9";
121
+ readonly 99: "#FAFDFC";
122
+ readonly 100: "#FFFFFF";
123
+ };
124
+ readonly neutralVariant: {
125
+ readonly 0: "#000000";
126
+ readonly 5: "#091312";
127
+ readonly 10: "#141D1D";
128
+ readonly 15: "#1E2827";
129
+ readonly 20: "#293232";
130
+ readonly 25: "#343D3D";
131
+ readonly 30: "#3F4948";
132
+ readonly 35: "#4A5454";
133
+ readonly 40: "#566060";
134
+ readonly 50: "#6F7978";
135
+ readonly 60: "#889392";
136
+ readonly 70: "#A3ADAC";
137
+ readonly 80: "#BEC9C8";
138
+ readonly 90: "#DAE5E4";
139
+ readonly 95: "#E8F3F2";
140
+ readonly 98: "#F1FBFA";
141
+ readonly 99: "#F4FEFD";
142
+ readonly 100: "#FFFFFF";
143
+ };
144
+ readonly red: {
145
+ readonly 0: "#000000";
146
+ readonly 5: "#2D0001";
147
+ readonly 10: "#410002";
148
+ readonly 15: "#540003";
149
+ readonly 20: "#690005";
150
+ readonly 25: "#7E0007";
151
+ readonly 30: "#93000A";
152
+ readonly 35: "#A51114";
153
+ readonly 40: "#B7211E";
154
+ readonly 50: "#DA3C34";
155
+ readonly 60: "#FE554A";
156
+ readonly 70: "#FF897D";
157
+ readonly 80: "#FFB4AB";
158
+ readonly 90: "#FFDAD6";
159
+ readonly 95: "#FFEDEA";
160
+ readonly 98: "#FFF8F7";
161
+ readonly 99: "#FFFBFF";
162
+ readonly 100: "#FFFFFF";
163
+ };
164
+ readonly orange: {
165
+ readonly 0: "#000000";
166
+ readonly 5: "#220A00";
167
+ readonly 10: "#321300";
168
+ readonly 15: "#421B00";
169
+ readonly 20: "#522300";
170
+ readonly 25: "#632B00";
171
+ readonly 30: "#753400";
172
+ readonly 35: "#873D00";
173
+ readonly 40: "#994700";
174
+ readonly 50: "#BF5A00";
175
+ readonly 60: "#E76E00";
176
+ readonly 70: "#FF8D3F";
177
+ readonly 80: "#FFB68B";
178
+ readonly 90: "#FFDBC8";
179
+ readonly 95: "#FFEDE5";
180
+ readonly 98: "#FFF8F5";
181
+ readonly 99: "#FFFBFF";
182
+ readonly 100: "#FFFFFF";
183
+ };
184
+ readonly amber: {
185
+ readonly 0: "#000000";
186
+ readonly 5: "#1B0E00";
187
+ readonly 10: "#291800";
188
+ readonly 15: "#362100";
189
+ readonly 20: "#452B00";
190
+ readonly 25: "#533500";
191
+ readonly 30: "#624000";
192
+ readonly 35: "#724A00";
193
+ readonly 40: "#825500";
194
+ readonly 50: "#A26C00";
195
+ readonly 60: "#C48300";
196
+ readonly 70: "#E89C00";
197
+ readonly 80: "#FFB94E";
198
+ readonly 90: "#FFDDB2";
199
+ readonly 95: "#FFEEDC";
200
+ readonly 98: "#FFF8F4";
201
+ readonly 99: "#FFFBFF";
202
+ readonly 100: "#FFFFFF";
203
+ };
204
+ readonly yellow: {
205
+ readonly 0: "#000000";
206
+ readonly 5: "#161000";
207
+ readonly 10: "#231B00";
208
+ readonly 15: "#2F2500";
209
+ readonly 20: "#3B2F00";
210
+ readonly 25: "#483A00";
211
+ readonly 30: "#554500";
212
+ readonly 35: "#635100";
213
+ readonly 40: "#715C00";
214
+ readonly 50: "#8E7500";
215
+ readonly 60: "#AC8E00";
216
+ readonly 70: "#CBA800";
217
+ readonly 80: "#ECC300";
218
+ readonly 90: "#FFE17A";
219
+ readonly 95: "#FFF0C7";
220
+ readonly 98: "#FFF8EF";
221
+ readonly 99: "#FFFBFF";
222
+ readonly 100: "#FFFFFF";
223
+ };
224
+ readonly lime: {
225
+ readonly 0: "#000000";
226
+ readonly 5: "#101200";
227
+ readonly 10: "#1B1D00";
228
+ readonly 15: "#252800";
229
+ readonly 20: "#303300";
230
+ readonly 25: "#3A3F00";
231
+ readonly 30: "#464A00";
232
+ readonly 35: "#515700";
233
+ readonly 40: "#5D6300";
234
+ readonly 50: "#757D00";
235
+ readonly 60: "#8F9800";
236
+ readonly 70: "#A9B316";
237
+ readonly 80: "#C5CF37";
238
+ readonly 90: "#E1EC52";
239
+ readonly 95: "#EFFA5F";
240
+ readonly 98: "#FAFFAE";
241
+ readonly 99: "#FEFFD5";
242
+ readonly 100: "#FFFFFF";
243
+ };
244
+ readonly green: {
245
+ readonly 0: "#000000";
246
+ readonly 5: "#021500";
247
+ readonly 10: "#042100";
248
+ readonly 15: "#072D00";
249
+ readonly 20: "#0B3900";
250
+ readonly 25: "#0F4500";
251
+ readonly 30: "#145200";
252
+ readonly 35: "#186000";
253
+ readonly 40: "#1D6F07";
254
+ readonly 50: "#226D07";
255
+ readonly 60: "#3C8724";
256
+ readonly 70: "#56A23C";
257
+ readonly 80: "#70BE54";
258
+ readonly 90: "#8ADA6C";
259
+ readonly 95: "#A5F785";
260
+ readonly 98: "#CCFFB3";
261
+ readonly 99: "#EDFFE0";
262
+ readonly 100: "#F7FFED";
263
+ };
264
+ readonly teal: {
265
+ readonly 0: "#000000";
266
+ readonly 5: "#00150D";
267
+ readonly 10: "#002116";
268
+ readonly 15: "#002C1F";
269
+ readonly 20: "#003828";
270
+ readonly 25: "#004432";
271
+ readonly 30: "#00513C";
272
+ readonly 35: "#005E46";
273
+ readonly 40: "#006C50";
274
+ readonly 50: "#2A8668";
275
+ readonly 60: "#48A081";
276
+ readonly 70: "#64BB9A";
277
+ readonly 80: "#80D7B5";
278
+ readonly 90: "#9CF4D0";
279
+ readonly 95: "#BCFFE1";
280
+ readonly 98: "#E7FFF2";
281
+ readonly 99: "#F4FFF7";
282
+ readonly 100: "#FFFFFF";
283
+ };
284
+ readonly cyan: {
285
+ readonly 0: "#000000";
286
+ readonly 5: "#001414";
287
+ readonly 10: "#00201F";
288
+ readonly 15: "#002B2A";
289
+ readonly 20: "#003736";
290
+ readonly 25: "#004342";
291
+ readonly 30: "#00504F";
292
+ readonly 35: "#005C5B";
293
+ readonly 40: "#006A68";
294
+ readonly 50: "#008583";
295
+ readonly 60: "#00A19F";
296
+ readonly 70: "#3ABDBA";
297
+ readonly 80: "#5DD9D6";
298
+ readonly 90: "#7DF5F3";
299
+ readonly 95: "#AEFFFC";
300
+ readonly 98: "#E3FFFD";
301
+ readonly 99: "#F1FFFE";
302
+ readonly 100: "#FFFFFF";
303
+ };
304
+ readonly blue: {
305
+ readonly 0: "#000000";
306
+ readonly 5: "#001128";
307
+ readonly 10: "#001C3B";
308
+ readonly 15: "#00264D";
309
+ readonly 20: "#003060";
310
+ readonly 25: "#003C73";
311
+ readonly 30: "#004787";
312
+ readonly 35: "#00539B";
313
+ readonly 40: "#005FB1";
314
+ readonly 50: "#0077DC";
315
+ readonly 60: "#2C91FF";
316
+ readonly 70: "#73ADFF";
317
+ readonly 80: "#A6C8FF";
318
+ readonly 90: "#D5E3FF";
319
+ readonly 95: "#EBF1FF";
320
+ readonly 98: "#F9F9FF";
321
+ readonly 99: "#FDFBFF";
322
+ readonly 100: "#FFFFFF";
323
+ };
324
+ readonly indigo: {
325
+ readonly 0: "#000000";
326
+ readonly 5: "#000644";
327
+ readonly 10: "#000C60";
328
+ readonly 15: "#00137C";
329
+ readonly 20: "#031B95";
330
+ readonly 25: "#182BA0";
331
+ readonly 30: "#2738AB";
332
+ readonly 35: "#3546B7";
333
+ readonly 40: "#4253C4";
334
+ readonly 50: "#5C6CDE";
335
+ readonly 60: "#7787FB";
336
+ readonly 70: "#99A5FF";
337
+ readonly 80: "#BCC3FF";
338
+ readonly 90: "#DFE0FF";
339
+ readonly 95: "#F0EFFF";
340
+ readonly 98: "#FBF8FF";
341
+ readonly 99: "#FFFBFF";
342
+ readonly 100: "#FFFFFF";
343
+ };
344
+ readonly purple: {
345
+ readonly 0: "#000000";
346
+ readonly 5: "#1A003D";
347
+ readonly 10: "#280056";
348
+ readonly 15: "#35006F";
349
+ readonly 20: "#420486";
350
+ readonly 25: "#4E1A91";
351
+ readonly 30: "#5A2A9D";
352
+ readonly 35: "#6637AA";
353
+ readonly 40: "#7345B7";
354
+ readonly 50: "#8C5FD2";
355
+ readonly 60: "#A779EE";
356
+ readonly 70: "#C098FF";
357
+ readonly 80: "#D6BAFF";
358
+ readonly 90: "#ECDCFF";
359
+ readonly 95: "#F8EDFF";
360
+ readonly 98: "#FEF7FF";
361
+ readonly 99: "#FFFBFF";
362
+ readonly 100: "#FFFFFF";
363
+ };
364
+ readonly pink: {
365
+ readonly 0: "#000000";
366
+ readonly 5: "#270022";
367
+ readonly 10: "#3A0032";
368
+ readonly 15: "#4B0042";
369
+ readonly 20: "#5E0053";
370
+ readonly 25: "#710064";
371
+ readonly 30: "#801271";
372
+ readonly 35: "#8F227E";
373
+ readonly 40: "#9E318B";
374
+ readonly 50: "#BC4BA6";
375
+ readonly 60: "#DA65C1";
376
+ readonly 70: "#F980DE";
377
+ readonly 80: "#FFACE7";
378
+ readonly 90: "#FFD7F0";
379
+ readonly 95: "#FFECF5";
380
+ readonly 98: "#FFF7F9";
381
+ readonly 99: "#FFFBFF";
382
+ readonly 100: "#FFFFFF";
383
+ };
384
+ readonly rose: {
385
+ readonly 0: "#000000";
386
+ readonly 5: "#2B0012";
387
+ readonly 10: "#3E001D";
388
+ readonly 15: "#510028";
389
+ readonly 20: "#650033";
390
+ readonly 25: "#79003E";
391
+ readonly 30: "#8D044A";
392
+ readonly 35: "#9D1856";
393
+ readonly 40: "#AD2762";
394
+ readonly 50: "#CE427B";
395
+ readonly 60: "#EF5C95";
396
+ readonly 70: "#FF84AF";
397
+ readonly 80: "#FFB1C8";
398
+ readonly 90: "#FFD9E2";
399
+ readonly 95: "#FFECF0";
400
+ readonly 98: "#FFF8F8";
401
+ readonly 99: "#FFFBFF";
402
+ readonly 100: "#FFFFFF";
403
+ };
404
+ };
405
+ primary: {
406
+ default: {
407
+ bg: string;
408
+ on: string;
409
+ };
410
+ container: {
411
+ bg: string;
412
+ on: string;
413
+ };
414
+ };
415
+ secondary: {
416
+ default: {
417
+ bg: string;
418
+ on: string;
419
+ };
420
+ container: {
421
+ bg: string;
422
+ on: string;
423
+ };
424
+ };
425
+ accent: {
426
+ default: {
427
+ bg: string;
428
+ on: string;
429
+ };
430
+ container: {
431
+ bg: string;
432
+ on: string;
433
+ };
434
+ };
435
+ error: {
436
+ default: {
437
+ bg: string;
438
+ on: string;
439
+ };
440
+ container: {
441
+ bg: string;
442
+ on: string;
443
+ };
444
+ };
445
+ warning: {
446
+ default: {
447
+ bg: string;
448
+ on: string;
449
+ };
450
+ container: {
451
+ bg: string;
452
+ on: string;
453
+ };
454
+ };
455
+ success: {
456
+ default: {
457
+ bg: string;
458
+ on: string;
459
+ };
460
+ container: {
461
+ bg: string;
462
+ on: string;
463
+ };
464
+ };
465
+ info: {
466
+ default: {
467
+ bg: string;
468
+ on: string;
469
+ };
470
+ container: {
471
+ bg: string;
472
+ on: string;
473
+ };
474
+ };
475
+ mainText: {
476
+ default: string;
477
+ container: string;
478
+ };
479
+ subText: {
480
+ default: string;
481
+ container: string;
482
+ };
483
+ disabledText: {
484
+ default: string;
485
+ container: string;
486
+ };
487
+ bg: {
488
+ default: string;
489
+ container: string;
490
+ overlay: string;
491
+ };
492
+ outline: {
493
+ default: string;
494
+ };
495
+ };
496
+ borderRadius: {
497
+ small: string;
498
+ medium: string;
499
+ large: string;
500
+ };
501
+ extend: {
502
+ zIndex: {
503
+ popup: string;
504
+ overlay: string;
505
+ };
506
+ spacing: {
507
+ control: {
508
+ xs: string;
509
+ sm: string;
510
+ md: string;
511
+ base: string;
512
+ lg: string;
513
+ xl: string;
514
+ '2xl': string;
515
+ '3xl': string;
516
+ };
517
+ 'control-padding': {
518
+ sm: string;
519
+ md: string;
520
+ base: string;
521
+ lg: string;
522
+ xl: string;
523
+ '2xl': string;
524
+ '3xl': string;
525
+ };
526
+ xs: string;
527
+ sm: string;
528
+ md: string;
529
+ base: string;
530
+ lg: string;
531
+ xl: string;
532
+ '2xl': string;
533
+ '3xl': string;
534
+ };
535
+ width: {
536
+ 'control-xs': string;
537
+ 'control-sm': string;
538
+ 'control-md': string;
539
+ 'control-base': string;
540
+ 'control-lg': string;
541
+ 'control-xl': string;
542
+ 'control-2xl': string;
543
+ 'control-3xl': string;
544
+ };
545
+ height: {
546
+ 'control-xs': string;
547
+ 'control-sm': string;
548
+ 'control-md': string;
549
+ 'control-base': string;
550
+ 'control-lg': string;
551
+ 'control-xl': string;
552
+ 'control-2xl': string;
553
+ 'control-3xl': string;
554
+ };
555
+ size: {
556
+ 'control-xs': string;
557
+ 'control-sm': string;
558
+ 'control-md': string;
559
+ 'control-base': string;
560
+ 'control-lg': string;
561
+ 'control-xl': string;
562
+ 'control-2xl': string;
563
+ 'control-3xl': string;
564
+ };
565
+ };
566
+ screens: {
567
+ sm: string;
568
+ md: string;
569
+ lg: string;
570
+ xl: string;
571
+ '2xl': string;
572
+ };
573
+ };
574
+ content: string[];
575
+ };
576
+ /** @type {import('tailwindcss').Config} */
577
+ export default config;