@invopop/popui 0.1.3 → 0.1.4-beta.2

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 (180) hide show
  1. package/dist/AlertDialog.svelte +10 -11
  2. package/dist/BaseButton.svelte +29 -104
  3. package/dist/BaseCard.svelte +35 -30
  4. package/dist/BaseCounter.svelte +11 -8
  5. package/dist/BaseDropdown.svelte +5 -5
  6. package/dist/BaseFlag.svelte +5 -3
  7. package/dist/BaseFlag.svelte.d.ts +1 -0
  8. package/dist/BaseTable.svelte +16 -16
  9. package/dist/BaseTable.svelte.d.ts +1 -1
  10. package/dist/BaseTableActions.svelte +4 -6
  11. package/dist/BaseTableCellContent.svelte +9 -21
  12. package/dist/BaseTableCheckbox.svelte +9 -11
  13. package/dist/BaseTableHeaderContent.svelte +4 -4
  14. package/dist/BaseTableHeaderOrderBy.svelte +23 -12
  15. package/dist/BaseTableRow.svelte +12 -10
  16. package/dist/Breadcrumb.svelte +40 -0
  17. package/dist/Breadcrumb.svelte.d.ts +4 -0
  18. package/dist/Breadcrumbs.svelte +5 -30
  19. package/dist/ButtonFile.svelte +40 -30
  20. package/dist/ButtonUuidCopy.svelte +6 -3
  21. package/dist/CardCheckbox.svelte +45 -32
  22. package/dist/CardCheckbox.svelte.d.ts +1 -1
  23. package/dist/CardRelation.svelte +12 -13
  24. package/dist/CompanySelector.svelte +35 -7
  25. package/dist/CounterWidget.svelte +52 -0
  26. package/dist/CounterWidget.svelte.d.ts +4 -0
  27. package/dist/DataListItem.svelte +14 -10
  28. package/dist/DatePicker.svelte +20 -17
  29. package/dist/DrawerContext.svelte +207 -15
  30. package/dist/DrawerContextItem.svelte +50 -50
  31. package/dist/DrawerContextSeparator.svelte +1 -1
  32. package/dist/DropdownSelect.svelte +81 -22
  33. package/dist/DropdownSelectGroup.svelte +15 -0
  34. package/dist/DropdownSelectGroup.svelte.d.ts +7 -0
  35. package/dist/EmptyState.svelte +42 -0
  36. package/dist/EmptyState.svelte.d.ts +4 -0
  37. package/dist/FeedEvents.svelte +9 -5
  38. package/dist/FeedIconEvent.svelte +2 -2
  39. package/dist/FeedIconStatus.svelte +4 -4
  40. package/dist/FeedItem.svelte +10 -11
  41. package/dist/FeedItemDetail.svelte +32 -6
  42. package/dist/FeedViewer.svelte +1 -1
  43. package/dist/GlobalSearch.svelte +13 -12
  44. package/dist/InputCheckbox.svelte +2 -5
  45. package/dist/InputError.svelte +4 -9
  46. package/dist/InputLabel.svelte +3 -1
  47. package/dist/InputRadio.svelte +29 -13
  48. package/dist/InputRadio.svelte.d.ts +1 -1
  49. package/dist/InputSearch.svelte +8 -8
  50. package/dist/InputSelect.svelte +32 -31
  51. package/dist/InputText.svelte +32 -24
  52. package/dist/InputTextarea.svelte +25 -19
  53. package/dist/InputToggle.svelte +24 -18
  54. package/dist/MenuItem.svelte +16 -11
  55. package/dist/MenuItemCollapsible.svelte +7 -7
  56. package/dist/Notification.svelte +60 -25
  57. package/dist/ProfileAvatar.svelte +43 -14
  58. package/dist/ProgressBar.svelte +42 -0
  59. package/dist/ProgressBar.svelte.d.ts +4 -0
  60. package/dist/ProgressBarCircle.svelte +46 -0
  61. package/dist/ProgressBarCircle.svelte.d.ts +4 -0
  62. package/dist/SeparatorHorizontal.svelte +2 -2
  63. package/dist/ShortcutWrapper.svelte +14 -5
  64. package/dist/StatusLabel.svelte +4 -5
  65. package/dist/StepIconList.svelte +11 -9
  66. package/dist/TagBeta.svelte +26 -14
  67. package/dist/TagProgress.svelte +28 -0
  68. package/dist/TagProgress.svelte.d.ts +4 -0
  69. package/dist/TagSearch.svelte +4 -4
  70. package/dist/TagStatus.svelte +32 -34
  71. package/dist/TitleMain.svelte +1 -1
  72. package/dist/TitleSection.svelte +1 -1
  73. package/dist/UuidCopy.svelte +4 -4
  74. package/dist/alert-dialog/alert-dialog-action.svelte +8 -4
  75. package/dist/alert-dialog/alert-dialog-cancel.svelte +7 -3
  76. package/dist/alert-dialog/alert-dialog-content.svelte +1 -1
  77. package/dist/alert-dialog/alert-dialog-description.svelte +1 -1
  78. package/dist/alert-dialog/alert-dialog-footer.svelte +1 -1
  79. package/dist/alert-dialog/alert-dialog-header.svelte +1 -1
  80. package/dist/alert-dialog/alert-dialog-overlay.svelte +1 -1
  81. package/dist/alert-dialog/alert-dialog-title.svelte +1 -1
  82. package/dist/alert-dialog/alert-dialog-trigger.svelte +4 -2
  83. package/dist/button/button.svelte +224 -24
  84. package/dist/button/button.svelte.d.ts +77 -26
  85. package/dist/clickOutside.d.ts +5 -2
  86. package/dist/clickOutside.js +9 -3
  87. package/dist/data-table/cells/boolean-cell.svelte +16 -0
  88. package/dist/data-table/cells/boolean-cell.svelte.d.ts +8 -0
  89. package/dist/data-table/cells/currency-cell.svelte +10 -0
  90. package/dist/data-table/cells/currency-cell.svelte.d.ts +8 -0
  91. package/dist/data-table/cells/date-cell.svelte +10 -0
  92. package/dist/data-table/cells/date-cell.svelte.d.ts +8 -0
  93. package/dist/data-table/cells/tag-cell.svelte +12 -0
  94. package/dist/data-table/cells/tag-cell.svelte.d.ts +8 -0
  95. package/dist/data-table/cells/text-cell.svelte +10 -0
  96. package/dist/data-table/cells/text-cell.svelte.d.ts +8 -0
  97. package/dist/data-table/column-definitions.d.ts +12 -0
  98. package/dist/data-table/column-definitions.js +42 -0
  99. package/dist/data-table/column-sizing-helpers.d.ts +6 -0
  100. package/dist/data-table/column-sizing-helpers.js +24 -0
  101. package/dist/data-table/create-columns.d.ts +3 -0
  102. package/dist/data-table/create-columns.js +50 -0
  103. package/dist/data-table/data-table-pagination.svelte +173 -0
  104. package/dist/data-table/data-table-pagination.svelte.d.ts +4 -0
  105. package/dist/data-table/data-table-svelte.svelte.d.ts +40 -0
  106. package/dist/data-table/data-table-svelte.svelte.js +111 -0
  107. package/dist/data-table/data-table-toolbar.svelte +16 -0
  108. package/dist/data-table/data-table-toolbar.svelte.d.ts +29 -0
  109. package/dist/data-table/data-table-types.d.ts +75 -0
  110. package/dist/data-table/data-table-types.js +1 -0
  111. package/dist/data-table/data-table-view-options.svelte +88 -0
  112. package/dist/data-table/data-table-view-options.svelte.d.ts +27 -0
  113. package/dist/data-table/data-table.svelte +323 -0
  114. package/dist/data-table/data-table.svelte.d.ts +25 -0
  115. package/dist/data-table/flex-render.svelte +40 -0
  116. package/dist/data-table/flex-render.svelte.d.ts +33 -0
  117. package/dist/data-table/index.d.ts +13 -0
  118. package/dist/data-table/index.js +13 -0
  119. package/dist/data-table/render-helpers.d.ts +90 -0
  120. package/dist/data-table/render-helpers.js +99 -0
  121. package/dist/data-table/table-setup.d.ts +36 -0
  122. package/dist/data-table/table-setup.js +130 -0
  123. package/dist/data-table/table-styles.d.ts +17 -0
  124. package/dist/data-table/table-styles.js +49 -0
  125. package/dist/helpers.d.ts +1 -0
  126. package/dist/helpers.js +3 -0
  127. package/dist/index.d.ts +16 -7
  128. package/dist/index.js +33 -14
  129. package/dist/range-calendar/range-calendar-cell.svelte +1 -1
  130. package/dist/range-calendar/range-calendar-day.svelte +11 -12
  131. package/dist/range-calendar/range-calendar-head-cell.svelte +1 -1
  132. package/dist/range-calendar/range-calendar-header.svelte +1 -1
  133. package/dist/range-calendar/range-calendar-month-select.svelte +1 -1
  134. package/dist/range-calendar/range-calendar-next-button.svelte +3 -3
  135. package/dist/range-calendar/range-calendar-prev-button.svelte +3 -3
  136. package/dist/range-calendar/range-calendar.svelte +1 -1
  137. package/dist/sonner/index.d.ts +1 -0
  138. package/dist/sonner/index.js +1 -0
  139. package/dist/sonner/sonner.svelte +44 -0
  140. package/dist/sonner/sonner.svelte.d.ts +4 -0
  141. package/dist/svg/CheckBadge.svelte +18 -0
  142. package/dist/svg/CheckBadge.svelte.d.ts +26 -0
  143. package/dist/svg/IconDelivery.svelte +86 -0
  144. package/dist/svg/IconDelivery.svelte.d.ts +20 -0
  145. package/dist/svg/IconEmpty.svelte +113 -121
  146. package/dist/svg/IconOrder.svelte +81 -0
  147. package/dist/svg/IconOrder.svelte.d.ts +20 -0
  148. package/dist/svg/IconPayment.svelte +86 -0
  149. package/dist/svg/IconPayment.svelte.d.ts +20 -0
  150. package/dist/table/table-body.svelte +5 -1
  151. package/dist/table/table-cell.svelte +4 -2
  152. package/dist/table/table-footer.svelte +1 -1
  153. package/dist/table/table-head.svelte +4 -2
  154. package/dist/table/table-header.svelte +1 -1
  155. package/dist/table/table-row.svelte +4 -2
  156. package/dist/table/table.svelte +2 -2
  157. package/dist/tabs/tabs-list.svelte +8 -2
  158. package/dist/tabs/tabs-list.svelte.d.ts +4 -1
  159. package/dist/tabs/tabs-trigger.svelte +5 -3
  160. package/dist/tabs/tabs-trigger.svelte.d.ts +4 -1
  161. package/dist/tailwind.theme.css +998 -0
  162. package/dist/tooltip/tooltip-content.svelte +2 -2
  163. package/dist/types.d.ts +76 -50
  164. package/package.json +20 -10
  165. package/dist/CounterWorkflow.svelte +0 -19
  166. package/dist/CounterWorkflow.svelte.d.ts +0 -4
  167. package/dist/DrawerContextWorkspace.svelte +0 -126
  168. package/dist/DrawerContextWorkspace.svelte.d.ts +0 -4
  169. package/dist/EmptyStateIcon.svelte +0 -52
  170. package/dist/EmptyStateIcon.svelte.d.ts +0 -4
  171. package/dist/EmptyStateIllustration.svelte +0 -66
  172. package/dist/EmptyStateIllustration.svelte.d.ts +0 -4
  173. package/dist/FormLayoutModal.svelte +0 -14
  174. package/dist/FormLayoutModal.svelte.d.ts +0 -4
  175. package/dist/ProfileSelector.svelte +0 -41
  176. package/dist/ProfileSelector.svelte.d.ts +0 -4
  177. package/dist/SectionLayout.svelte +0 -13
  178. package/dist/SectionLayout.svelte.d.ts +0 -4
  179. package/dist/tw.theme.d.ts +0 -171
  180. package/dist/tw.theme.js +0 -188
@@ -1,66 +0,0 @@
1
- <script lang="ts">
2
- import type { EmptyStateIcon, EmptyStateIllustrationProps } from './types.js'
3
- import BgPattern from './svg/BgPattern.svelte'
4
- import IconContact from './svg/IconContact.svelte'
5
- import IconInvoice from './svg/IconInvoice.svelte'
6
- import IconProduct from './svg/IconProduct.svelte'
7
- import IconFile from './svg/IconFile.svelte'
8
- import IconPdf from './svg/IconPdf.svelte'
9
- import IconNoResults from './svg/IconNoResults.svelte'
10
- import type { SvelteComponent } from 'svelte'
11
-
12
- let {
13
- icon = undefined,
14
- title = '',
15
- description = '',
16
- children
17
- }: EmptyStateIllustrationProps = $props()
18
-
19
- function getComponent(icon: EmptyStateIcon | undefined) {
20
- if (!icon) return undefined
21
-
22
- const icons: Record<EmptyStateIcon, unknown> = {
23
- invoices: IconInvoice,
24
- contacts: IconContact,
25
- products: IconProduct,
26
- file: IconFile,
27
- pdf: IconPdf,
28
- 'no-results': IconNoResults
29
- }
30
-
31
- return icons[icon] as typeof SvelteComponent
32
- }
33
- let iconComponent = $derived(getComponent(icon))
34
- </script>
35
-
36
- <div
37
- class="flex flex-col text-center items-center justify-center h-full font-sans gap-1"
38
- aria-label={title}
39
- >
40
- {#if iconComponent}
41
- {@const SvelteComponent_1 = iconComponent}
42
- {@const SvelteComponent_2 = iconComponent}
43
- {@const SvelteComponent_3 = iconComponent}
44
- <div class="relative h-[120px] w-full max-w-sm">
45
- <div class="absolute top-0 left-0">
46
- <BgPattern />
47
- </div>
48
- <SvelteComponent_1
49
- classes="text-neutral-400/40 absolute left-[50%] translate-x-[-50%] top-[50%] translate-y-[-50%] -ml-[40px] rotate-[-8deg] mt-0.5 z-20 w-[86px] h-[104px]"
50
- />
51
- <SvelteComponent_2
52
- classes="{icon === 'no-results'
53
- ? 'text-neutral-400'
54
- : 'text-workspace-accent'} absolute left-[50%] translate-x-[-50%] top-[50%] translate-y-[-50%] z-30 w-[97px] h-[117px]"
55
- />
56
- <SvelteComponent_3
57
- classes="text-neutral-400/40 absolute left-[50%] translate-x-[-50%] top-[50%] translate-y-[-50%] ml-[40px] rotate-[8deg] mt-0.5 z-20 w-[86px] h-[104px]"
58
- />
59
- </div>
60
- {/if}
61
- <div class="space-y-0.5">
62
- <h4 class="font-medium text-neutral-800 text-base tracking-tight">{title}</h4>
63
- <p class="max-w-xs text-base text-neutral-500 tracking-normal">{description}</p>
64
- <p>{@render children?.()}</p>
65
- </div>
66
- </div>
@@ -1,4 +0,0 @@
1
- import type { EmptyStateIllustrationProps } from './types.js';
2
- declare const EmptyStateIllustration: import("svelte").Component<EmptyStateIllustrationProps, {}, "">;
3
- type EmptyStateIllustration = ReturnType<typeof EmptyStateIllustration>;
4
- export default EmptyStateIllustration;
@@ -1,14 +0,0 @@
1
- <script lang="ts">
2
- import type { FormLayoutModalProps } from './types'
3
-
4
- let { children, footer }: FormLayoutModalProps = $props()
5
- </script>
6
-
7
- <div class="flex flex-col max-w-lg w-128 py-8 px-6 gap-4">
8
- {@render children?.()}
9
- {#if footer}
10
- <div class="mt-4 pt-4 flex items-center justify-end gap-x-6 border-t">
11
- {@render footer?.()}
12
- </div>
13
- {/if}
14
- </div>
@@ -1,4 +0,0 @@
1
- import type { FormLayoutModalProps } from './types';
2
- declare const FormLayoutModal: import("svelte").Component<FormLayoutModalProps, {}, "">;
3
- type FormLayoutModal = ReturnType<typeof FormLayoutModal>;
4
- export default FormLayoutModal;
@@ -1,41 +0,0 @@
1
- <script lang="ts">
2
- import clsx from 'clsx'
3
- import ProfileAvatar from './ProfileAvatar.svelte'
4
- import { Icon } from '@steeze-ui/svelte-icon'
5
- import { ChevronUp } from '@invopop/ui-icons'
6
- import type { ProfileSelectorProps } from './types'
7
-
8
- let {
9
- name = '',
10
- orgName = '',
11
- picture = '',
12
- collapsed = false,
13
- isOpen = false,
14
- onclick
15
- }: ProfileSelectorProps = $props()
16
-
17
- let styles = $derived(
18
- clsx(
19
- { 'p-[5px]': collapsed },
20
- { 'w-full pl-1.5 pr-2 py-[7px]': !collapsed },
21
- { 'border-white-30 bg-white-10': isOpen },
22
- { 'border-transparent hover:bg-white-5': !isOpen }
23
- )
24
- )
25
- </script>
26
-
27
- <button
28
- class="{styles} text-white border border-transparent text-base flex items-center justify-between space-x-1 rounded text-left"
29
- {onclick}
30
- >
31
- <span class="flex items-center justify-between w-full space-x-2">
32
- <ProfileAvatar {name} {picture} dark large />
33
- {#if !collapsed}
34
- <div class="flex-1 flex flex-col">
35
- <span class="tracking-normal font-medium truncate max-w-[136px]">{name}</span>
36
- <span class="text-sm text-white-50 truncate max-w-[136px]">{orgName}</span>
37
- </div>
38
- <Icon src={ChevronUp} class="w-4 h-4 text-white-40" />
39
- {/if}
40
- </span>
41
- </button>
@@ -1,4 +0,0 @@
1
- import type { ProfileSelectorProps } from './types';
2
- declare const ProfileSelector: import("svelte").Component<ProfileSelectorProps, {}, "">;
3
- type ProfileSelector = ReturnType<typeof ProfileSelector>;
4
- export default ProfileSelector;
@@ -1,13 +0,0 @@
1
- <script lang="ts">
2
- import TitleSection from './TitleSection.svelte'
3
- import type { SectionLayoutProps } from './types'
4
-
5
- let { title = '', children }: SectionLayoutProps = $props()
6
- </script>
7
-
8
- <div class="py-5">
9
- <TitleSection {title} />
10
- <div class="mt-3">
11
- {@render children?.()}
12
- </div>
13
- </div>
@@ -1,4 +0,0 @@
1
- import type { SectionLayoutProps } from './types';
2
- declare const SectionLayout: import("svelte").Component<SectionLayoutProps, {}, "">;
3
- type SectionLayout = ReturnType<typeof SectionLayout>;
4
- export default SectionLayout;
@@ -1,171 +0,0 @@
1
- declare namespace _default {
2
- namespace extend {
3
- namespace fontSize {
4
- let xl: string[];
5
- let lg: string[];
6
- let base: string[];
7
- let sm: string[];
8
- }
9
- let spacing: {
10
- 1.25: string;
11
- 18: string;
12
- 128: string;
13
- };
14
- let borderRadius: {
15
- xl: string;
16
- '2xl': string;
17
- };
18
- namespace minWidth {
19
- let dropdown: string;
20
- }
21
- let colors: {
22
- workspace: {
23
- accent: {
24
- DEFAULT: string;
25
- 50: string;
26
- 100: string;
27
- 200: string;
28
- 500: string;
29
- 600: string;
30
- 700: string;
31
- };
32
- };
33
- positive: {
34
- 50: string;
35
- 100: string;
36
- 200: string;
37
- 300: string;
38
- 400: string;
39
- 500: string;
40
- };
41
- danger: {
42
- 50: string;
43
- 100: string;
44
- 200: string;
45
- 300: string;
46
- 400: string;
47
- 500: string;
48
- 600: string;
49
- 700: string;
50
- };
51
- neutral: {
52
- 50: string;
53
- 100: string;
54
- 200: string;
55
- 300: string;
56
- 400: string;
57
- 500: string;
58
- 600: string;
59
- 700: string;
60
- 800: string;
61
- };
62
- sherwood: {
63
- 50: string;
64
- 100: string;
65
- 200: string;
66
- 300: string;
67
- 400: string;
68
- 500: string;
69
- 600: string;
70
- 700: string;
71
- };
72
- warning: {
73
- 50: string;
74
- 100: string;
75
- 200: string;
76
- 300: string;
77
- 400: string;
78
- 500: string;
79
- };
80
- white: {
81
- DEFAULT: string;
82
- 5: string;
83
- 10: string;
84
- 20: string;
85
- 30: string;
86
- 40: string;
87
- 50: string;
88
- 60: string;
89
- 70: string;
90
- 80: string;
91
- 90: string;
92
- };
93
- yellow: {
94
- 50: string;
95
- 100: string;
96
- 200: string;
97
- 300: string;
98
- 400: string;
99
- 500: string;
100
- 600: string;
101
- };
102
- blue: {
103
- 50: string;
104
- 100: string;
105
- 200: string;
106
- 300: string;
107
- 400: string;
108
- 500: string;
109
- };
110
- red: {
111
- 50: string;
112
- 100: string;
113
- 500: string;
114
- };
115
- purple: {
116
- 50: string;
117
- 100: string;
118
- 200: string;
119
- 300: string;
120
- 400: string;
121
- 500: string;
122
- };
123
- banner: {
124
- sandbox: string;
125
- warning: string;
126
- danger: string;
127
- };
128
- 'blue-violet': {
129
- 100: string;
130
- 200: string;
131
- 500: string;
132
- };
133
- crimson: {
134
- 100: string;
135
- 200: string;
136
- 500: string;
137
- };
138
- 'steel-blue': {
139
- 100: string;
140
- 200: string;
141
- 500: string;
142
- };
143
- olive: {
144
- 100: string;
145
- 200: string;
146
- 500: string;
147
- };
148
- teal: {
149
- 100: string;
150
- 200: string;
151
- 500: string;
152
- };
153
- };
154
- namespace boxShadow {
155
- let active: string;
156
- let warning: string;
157
- }
158
- namespace letterSpacing {
159
- let tightest: string;
160
- let tighter: string;
161
- let tight: string;
162
- let normal: string;
163
- let wide: string;
164
- }
165
- namespace fontFamily {
166
- let sans: string[];
167
- let mono: string[];
168
- }
169
- }
170
- }
171
- export default _default;
package/dist/tw.theme.js DELETED
@@ -1,188 +0,0 @@
1
- export default {
2
- extend: {
3
- fontSize: {
4
- xl: ['20px', '28px'],
5
- lg: ['16px', '24px'],
6
- base: ['14px', '20px'],
7
- sm: ['12px', '16px']
8
- },
9
-
10
- spacing: {
11
- 1.25: '5px',
12
- 18: '4.5rem',
13
- 128: '32rem'
14
- },
15
-
16
- borderRadius: {
17
- xl: '0.625rem',
18
- '2xl': '12px'
19
- },
20
-
21
- minWidth: {
22
- dropdown: '175px'
23
- },
24
-
25
- colors: {
26
- workspace: {
27
- accent: {
28
- DEFAULT: 'var(--workspace-accent-color, #169958)',
29
- 50: 'color-mix(in lab, transparent 95%, var(--workspace-accent-color, #169958))',
30
- 100: 'color-mix(in lab, transparent 90%, var(--workspace-accent-color, #169958))',
31
- 200: 'color-mix(in lab, transparent 80%, var(--workspace-accent-color, #169958))',
32
- 500: 'var(--workspace-accent-color, #169958)',
33
- 600: 'color-mix(in lab, black 16%, var(--workspace-accent-color, #169958))',
34
- 700: 'color-mix(in lab, black 32%, var(--workspace-accent-color, #169958))'
35
- }
36
- },
37
- positive: {
38
- 50: 'rgba(2, 144, 98, 0.05)',
39
- 100: 'rgba(2, 144, 98, 0.1)',
40
- 200: 'rgba(2, 144, 98, 0.2)',
41
- 300: 'rgba(2, 144, 98, 0.3)',
42
- 400: 'rgba(2, 144, 98, 0.4)',
43
- 500: '#029062'
44
- },
45
- danger: {
46
- 50: 'rgba(201, 45, 69, 0.05)',
47
- 100: 'rgba(201, 45, 69, 0.1)',
48
- 200: 'rgba(201, 45, 69, 0.2)',
49
- 300: 'rgba(201, 45, 69, 0.3)',
50
- 400: 'rgba(201, 45, 69, 0.4)',
51
- 500: '#C92D45',
52
- 600: '#A9263A',
53
- 700: '#891F2F'
54
- },
55
- neutral: {
56
- 50: '#F9FAFB',
57
- 100: '#F3F4F6',
58
- 200: '#E5E7EB',
59
- 300: '#D1D5DB',
60
- 400: '#9CA3AF',
61
- 500: '#6B7280',
62
- 600: '#4B5563',
63
- 700: '#1F2937',
64
- 800: '#030712'
65
- },
66
- sherwood: {
67
- 50: 'rgba(25, 65, 54, 0.05)',
68
- 100: 'rgba(25, 65, 54, 0.1)',
69
- 200: 'rgba(25, 65, 54, 0.2)',
70
- 300: 'rgba(25, 65, 54, 0.3)',
71
- 400: 'rgba(25, 65, 54, 0.4)',
72
- 500: '#194136',
73
- 600: '#15372D',
74
- 700: '#112C25'
75
- },
76
- warning: {
77
- 50: 'rgba(222, 99, 19, 0.05)',
78
- 100: 'rgba(222, 99, 19, 0.1)',
79
- 200: 'rgba(222, 99, 19, 0.2)',
80
- 300: 'rgba(222, 99, 19, 0.3)',
81
- 400: 'rgba(222, 99, 19, 0.4)',
82
- 500: '#DE6313'
83
- },
84
- white: {
85
- DEFAULT: '#FFFFFF',
86
- 5: 'rgba(255, 255, 255, 0.05)',
87
- 10: 'rgba(255, 255, 255, 0.1)',
88
- 20: 'rgba(255, 255, 255, 0.2)',
89
- 30: 'rgba(255, 255, 255, 0.3)',
90
- 40: 'rgba(255, 255, 255, 0.4)',
91
- 50: 'rgba(255, 255, 255, 0.5)',
92
- 60: 'rgba(255, 255, 255, 0.6)',
93
- 70: 'rgba(255, 255, 255, 0.7)',
94
- 80: 'rgba(255, 255, 255, 0.8)',
95
- 90: 'rgba(255, 255, 255, 0.9)'
96
- },
97
- yellow: {
98
- 50: 'rgba(215, 135, 0, 0.05)',
99
- 100: 'rgba(215, 135, 0, 0.1)',
100
- 200: 'rgba(215, 135, 0, 0.2)',
101
- 300: 'rgba(215, 135, 0, 0.3)',
102
- 400: 'rgba(215, 135, 0, 0.4)',
103
- 500: '#D78700',
104
- 600: '#FAD744'
105
- },
106
- blue: {
107
- 50: 'rgba(0, 101, 183, 0.05)',
108
- 100: 'rgba(0, 101, 183, 0.1)',
109
- 200: 'rgba(0, 101, 183, 0.2)',
110
- 300: 'rgba(0, 101, 183, 0.3)',
111
- 400: 'rgba(0, 101, 183, 0.4)',
112
- 500: '#0065B7'
113
- },
114
- red: {
115
- 50: 'rgba(255, 33, 22, 0.05)',
116
- 100: 'rgba(255, 33, 22, 0.1)',
117
- 500: 'rgba(255, 33, 22, 1)'
118
- },
119
- purple: {
120
- 50: 'rgba(136, 74, 190, 0.05)',
121
- 100: 'rgba(136, 74, 190, 0.1)',
122
- 200: 'rgba(136, 74, 190, 0.2)',
123
- 300: 'rgba(136, 74, 190, 0.3)',
124
- 400: 'rgba(136, 74, 190, 0.4)',
125
- 500: '#884ABE'
126
- },
127
- banner: {
128
- sandbox: '#D2F7CB',
129
- warning: '#A04A12',
130
- danger: '#B32530'
131
- },
132
- 'blue-violet': {
133
- 100: 'rgba(111, 36, 209, 0.1)',
134
- 200: 'rgba(111, 36, 209, 0.25)',
135
- 500: 'rgba(111, 36, 209, 1)'
136
- },
137
- crimson: {
138
- 100: 'rgba(198, 32, 91, 0.1)',
139
- 200: 'rgba(198, 32, 91, 0.25)',
140
- 500: 'rgba(198, 32, 91, 1)'
141
- },
142
- 'steel-blue': {
143
- 100: 'rgba(15, 124, 187, 0.1)',
144
- 200: 'rgba(15, 124, 187, 0.25)',
145
- 500: 'rgba(15, 124, 187, 1)'
146
- },
147
- olive: {
148
- 100: 'rgba(117, 117, 30, 0.1)',
149
- 200: 'rgba(117, 117, 30, 0.25)',
150
- 500: 'rgba(117, 117, 30, 1)'
151
- },
152
- teal: {
153
- 100: 'rgba(29, 142, 142, 0.1)',
154
- 200: 'rgba(29, 142, 142, 0.25)',
155
- 500: 'rgba(29, 142, 142, 1)'
156
- }
157
- },
158
-
159
- boxShadow: {
160
- active:
161
- '0px 0px 0px 2px color-mix(in lab, transparent 88%, var(--workspace-accent-color, #169958))',
162
- warning: '0px 0px 0px 2px rgba(215, 135, 0, 0.12)'
163
- },
164
-
165
- letterSpacing: {
166
- tightest: '-0.567px',
167
- tighter: '-0.304px',
168
- tight: '-0.07px',
169
- normal: '-0.039px',
170
- wide: '0.055px'
171
- },
172
-
173
- fontFamily: {
174
- sans: ['Inter', 'sans-serif'],
175
- mono: [
176
- 'CommitMono',
177
- 'ui-monospace',
178
- 'Menlo',
179
- 'Monaco',
180
- 'Consolas',
181
- '"Ubuntu Mono"',
182
- '"Roboto Mono"',
183
- '"DejaVu Sans Mono"',
184
- 'monospace'
185
- ]
186
- }
187
- }
188
- }