@formant/aesthetics 0.0.1 → 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,6 +1,5 @@
1
1
  import { Accordion as Accordion$1, Slot, AlertDialog as AlertDialog$1, AspectRatio as AspectRatio$1, Avatar as Avatar$1, Checkbox as Checkbox$1, Collapsible as Collapsible$1, Dialog as Dialog$1, ContextMenu as ContextMenu$1, DropdownMenu as DropdownMenu$1, HoverCard as HoverCard$1, Label as Label$1, Menubar as Menubar$1, NavigationMenu as NavigationMenu$1, Popover as Popover$1, Progress as Progress$1, RadioGroup as RadioGroup$1, ScrollArea as ScrollArea$1, Select as Select$1, Separator, Slider as Slider$1, Switch as Switch$1, Tabs as Tabs$1, Toggle as Toggle$1, ToggleGroup as ToggleGroup$1, Tooltip } from 'radix-ui';
2
2
  import { clsx } from 'clsx';
3
- import { twMerge } from 'tailwind-merge';
4
3
  import { ChevronDownIcon, ChevronUpIcon, ChevronRightIcon, MoreHorizontalIcon, ChevronLeftIcon, CheckIcon, XIcon, SearchIcon, MinusIcon, Loader2Icon, OctagonXIcon, TriangleAlertIcon, InfoIcon, CircleCheckIcon } from 'lucide-react';
5
4
  import { jsx, jsxs, Fragment } from 'react/jsx-runtime';
6
5
  import { cva } from 'class-variance-authority';
@@ -16,7 +15,7 @@ import { useTheme, ThemeProvider as ThemeProvider$1 } from 'next-themes';
16
15
  import { Toaster as Toaster$1 } from 'sonner';
17
16
 
18
17
  function cn(...inputs) {
19
- return twMerge(clsx(inputs));
18
+ return clsx(inputs);
20
19
  }
21
20
  function Accordion({
22
21
  className,
@@ -3918,7 +3917,8 @@ function ThemeHotkey() {
3918
3917
  return null;
3919
3918
  }
3920
3919
  var FORMANT_FONTS = "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap";
3921
- var FORMANT_THEME_CSS = `
3920
+ var FORMANT_UTILITY_CSS = `
3921
+ /* CSS Variables */
3922
3922
  :root {
3923
3923
  --background: #202428;
3924
3924
  --foreground: #F2F3F4;
@@ -3939,69 +3939,348 @@ var FORMANT_THEME_CSS = `
3939
3939
  --border: rgba(163, 171, 169, 0.1);
3940
3940
  --input: rgba(163, 171, 169, 0.2);
3941
3941
  --ring: #ACC3B3;
3942
- --chart-1: #ACC3B3;
3943
- --chart-2: #4B5E53;
3944
- --chart-3: #2C4142;
3945
- --chart-4: #E8AB7F;
3946
- --chart-5: #8B8CF4;
3947
3942
  --radius: 0.25rem;
3948
- --sidebar: #0A0F11;
3949
- --sidebar-foreground: #F2F3F4;
3950
- --sidebar-primary: #ACC3B3;
3951
- --sidebar-primary-foreground: #0A0F11;
3952
- --sidebar-accent: #202428;
3953
- --sidebar-accent-foreground: #F2F3F4;
3954
- --sidebar-border: rgba(163, 171, 169, 0.1);
3955
- --sidebar-ring: #ACC3B3;
3956
- --deep-command: #0A0F11;
3957
- --slate-mist: #202428;
3958
- --formant-white: #F2F3F4;
3959
- --system-neutral: #A3ABA9;
3960
- --fog-green: #4B5E53;
3961
- --ethereal-teal: #2C4142;
3962
- --horizon-glow: #ACC3B3;
3963
- --terminal-amber: #E8AB7F;
3964
- --interface-iris: #8B8CF4;
3943
+ --radius-sm: calc(0.25rem * 0.6);
3944
+ --radius-md: calc(0.25rem * 0.8);
3945
+ --radius-lg: 0.25rem;
3946
+ --radius-xl: calc(0.25rem * 1.4);
3965
3947
  }
3966
3948
 
3967
- * {
3968
- border-color: var(--border);
3969
- outline-color: var(--ring);
3970
- }
3949
+ /* Base */
3950
+ * { border-color: var(--border); outline-color: var(--ring); }
3951
+ body { background-color: var(--background); color: var(--foreground); font-family: 'Inter', sans-serif; }
3952
+ html { font-family: 'Inter', sans-serif; }
3953
+ h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; letter-spacing: -0.02em; }
3954
+ code, pre, .font-mono { font-family: 'JetBrains Mono', monospace; }
3971
3955
 
3972
- body {
3973
- background-color: var(--background);
3974
- color: var(--foreground);
3975
- font-family: 'Inter', sans-serif;
3976
- }
3956
+ /* Display */
3957
+ .block { display: block; }
3958
+ .inline-block { display: inline-block; }
3959
+ .inline { display: inline; }
3960
+ .flex { display: flex; }
3961
+ .inline-flex { display: inline-flex; }
3962
+ .grid { display: grid; }
3963
+ .contents { display: contents; }
3964
+ .hidden { display: none; }
3965
+ .table { display: table; }
3977
3966
 
3978
- html {
3979
- font-family: 'Inter', sans-serif;
3980
- }
3967
+ /* Flexbox */
3968
+ .flex-1 { flex: 1 1 0%; }
3969
+ .flex-auto { flex: 1 1 auto; }
3970
+ .flex-initial { flex: 0 1 auto; }
3971
+ .flex-none { flex: none; }
3972
+ .flex-col { flex-direction: column; }
3973
+ .flex-row { flex-direction: row; }
3974
+ .flex-wrap { flex-wrap: wrap; }
3975
+ .flex-nowrap { flex-wrap: nowrap; }
3976
+ .grow { flex-grow: 1; }
3977
+ .grow-0 { flex-grow: 0; }
3978
+ .shrink { flex-shrink: 1; }
3979
+ .shrink-0 { flex-shrink: 0; }
3980
+ .justify-start { justify-content: flex-start; }
3981
+ .justify-end { justify-content: flex-end; }
3982
+ .justify-center { justify-content: center; }
3983
+ .justify-between { justify-content: space-between; }
3984
+ .justify-around { justify-content: space-around; }
3985
+ .items-start { align-items: flex-start; }
3986
+ .items-end { align-items: flex-end; }
3987
+ .items-center { align-items: center; }
3988
+ .items-baseline { align-items: baseline; }
3989
+ .items-stretch { align-items: stretch; }
3981
3990
 
3982
- h1, h2, h3, h4, h5, h6 {
3983
- font-family: 'Space Grotesk', sans-serif;
3984
- letter-spacing: -0.02em;
3985
- }
3991
+ /* Grid */
3992
+ .grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
3993
+ .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
3994
+ .grid-cols-none { grid-template-columns: none; }
3995
+ .grid-rows-1 { grid-template-rows: repeat(1, minmax(0, 1fr)); }
3996
+ .grid-rows-2 { grid-template-rows: repeat(2, minmax(0, 1fr)); }
3997
+ .auto-rows-min { grid-auto-rows: min-content; }
3986
3998
 
3987
- code, pre, .font-mono {
3988
- font-family: 'JetBrains Mono', monospace;
3989
- }
3999
+ /* Gap */
4000
+ .gap-0 { gap: 0px; }
4001
+ .gap-0_5 { gap: 0.125rem; }
4002
+ .gap-1 { gap: 0.25rem; }
4003
+ .gap-1_5 { gap: 0.375rem; }
4004
+ .gap-2 { gap: 0.5rem; }
4005
+ .gap-2_5 { gap: 0.625rem; }
4006
+ .gap-3 { gap: 0.75rem; }
4007
+ .gap-3_5 { gap: 0.875rem; }
4008
+ .gap-4 { gap: 1rem; }
4009
+ .gap-5 { gap: 1.25rem; }
4010
+ .gap-6 { gap: 1.5rem; }
4011
+ .gap-8 { gap: 2rem; }
4012
+ .gap-10 { gap: 2.5rem; }
4013
+ .gap-12 { gap: 3rem; }
3990
4014
 
3991
- .font-heading {
3992
- font-family: 'Space Grotesk', sans-serif;
3993
- letter-spacing: -0.02em;
3994
- }
4015
+ /* Padding */
4016
+ .p-0 { padding: 0px; }
4017
+ .p-0_5 { padding: 0.125rem; }
4018
+ .p-1 { padding: 0.25rem; }
4019
+ .p-1_5 { padding: 0.375rem; }
4020
+ .p-2 { padding: 0.5rem; }
4021
+ .p-2_5 { padding: 0.625rem; }
4022
+ .p-3 { padding: 0.75rem; }
4023
+ .p-3_5 { padding: 0.875rem; }
4024
+ .p-4 { padding: 1rem; }
4025
+ .p-5 { padding: 1.25rem; }
4026
+ .p-6 { padding: 1.5rem; }
4027
+ .p-8 { padding: 2rem; }
4028
+ .px-0 { padding-left: 0px; padding-right: 0px; }
4029
+ .px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
4030
+ .px-1_5 { padding-left: 0.375rem; padding-right: 0.375rem; }
4031
+ .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
4032
+ .px-2_5 { padding-left: 0.625rem; padding-right: 0.625rem; }
4033
+ .px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
4034
+ .px-3_5 { padding-left: 0.875rem; padding-right: 0.875rem; }
4035
+ .px-4 { padding-left: 1rem; padding-right: 1rem; }
4036
+ .px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
4037
+ .px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
4038
+ .px-8 { padding-left: 2rem; padding-right: 2rem; }
4039
+ .py-0 { padding-top: 0px; padding-bottom: 0px; }
4040
+ .py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
4041
+ .py-1_5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
4042
+ .py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
4043
+ .py-2_5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
4044
+ .py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
4045
+ .py-3_5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
4046
+ .py-4 { padding-top: 1rem; padding-bottom: 1rem; }
4047
+ .pt-0 { padding-top: 0px; }
4048
+ .pt-1 { padding-top: 0.25rem; }
4049
+ .pt-2 { padding-top: 0.5rem; }
4050
+ .pt-3 { padding-top: 0.75rem; }
4051
+ .pt-4 { padding-top: 1rem; }
4052
+ .pr-0 { padding-right: 0px; }
4053
+ .pr-1 { padding-right: 0.25rem; }
4054
+ .pr-1_5 { padding-right: 0.375rem; }
4055
+ .pr-2 { padding-right: 0.5rem; }
4056
+ .pr-2_5 { padding-right: 0.625rem; }
4057
+ .pr-3 { padding-right: 0.75rem; }
4058
+ .pr-4 { padding-right: 1rem; }
4059
+ .pr-8 { padding-right: 2rem; }
4060
+ .pr-10 { padding-right: 2.5rem; }
4061
+ .pb-0 { padding-bottom: 0px; }
4062
+ .pb-1 { padding-bottom: 0.25rem; }
4063
+ .pb-2 { padding-bottom: 0.5rem; }
4064
+ .pb-3 { padding-bottom: 0.75rem; }
4065
+ .pb-4 { padding-bottom: 1rem; }
4066
+ .pl-0 { padding-left: 0px; }
4067
+ .pl-1 { padding-left: 0.25rem; }
4068
+ .pl-1_5 { padding-left: 0.375rem; }
4069
+ .pl-2 { padding-left: 0.5rem; }
4070
+ .pl-2_5 { padding-left: 0.625rem; }
4071
+ .pl-3 { padding-left: 0.75rem; }
4072
+ .pl-4 { padding-left: 1rem; }
4073
+ .pl-7 { padding-left: 1.75rem; }
4074
+ .pl-10 { padding-left: 2.5rem; }
3995
4075
 
3996
- .font-sans {
3997
- font-family: 'Inter', sans-serif;
3998
- }
4076
+ /* Margin */
4077
+ .m-0 { margin: 0px; }
4078
+ .m-1 { margin: 0.25rem; }
4079
+ .m-2 { margin: 0.5rem; }
4080
+ .m-3 { margin: 0.75rem; }
4081
+ .m-4 { margin: 1rem; }
4082
+ .m-auto { margin: auto; }
4083
+ .mx-auto { margin-left: auto; margin-right: auto; }
4084
+ .mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
4085
+ .mx-4 { margin-left: 1rem; margin-right: 1rem; }
4086
+ .my-1 { margin-top: 0.25rem; margin-bottom: 0.25rem; }
4087
+ .my-4 { margin-top: 1rem; margin-bottom: 1rem; }
4088
+ .mt-0 { margin-top: 0px; }
4089
+ .mt-1 { margin-top: 0.25rem; }
4090
+ .mt-2 { margin-top: 0.5rem; }
4091
+ .mt-3 { margin-top: 0.75rem; }
4092
+ .mt-4 { margin-top: 1rem; }
4093
+ .mt-6 { margin-top: 1.5rem; }
4094
+ .mt-8 { margin-top: 2rem; }
4095
+ .mt-24 { margin-top: 6rem; }
4096
+ .mr-0 { margin-right: 0px; }
4097
+ .mr-1 { margin-right: 0.25rem; }
4098
+ .mr-2 { margin-right: 0.5rem; }
4099
+ .mr-3 { margin-right: 0.75rem; }
4100
+ .mr-4 { margin-right: 1rem; }
4101
+ .mr-auto { margin-right: auto; }
4102
+ .ml-auto { margin-left: auto; }
4103
+ .ml-1 { margin-left: 0.25rem; }
4104
+ .ml-2 { margin-left: 0.5rem; }
4105
+ .ml-3 { margin-left: 0.75rem; }
4106
+ .ml-4 { margin-left: 1rem; }
4107
+ .mb-0 { margin-bottom: 0px; }
4108
+ .mb-1 { margin-bottom: 0.25rem; }
4109
+ .mb-2 { margin-bottom: 0.5rem; }
4110
+ .mb-3 { margin-bottom: 0.75rem; }
4111
+ .mb-4 { margin-bottom: 1rem; }
4112
+ .-mx-1 { margin-left: -0.25rem; margin-right: -0.25rem; }
4113
+ .-mx-4 { margin-left: -1rem; margin-right: -1rem; }
4114
+ .-my-1 { margin-top: -0.25rem; margin-bottom: -0.25rem; }
4115
+ .-mb-4 { margin-bottom: -1rem; }
4116
+ .-ml-4 { margin-left: -1rem; }
4117
+ .-mt-4 { margin-top: -1rem; }
4118
+ .-ml-12 { margin-left: -3rem; }
4119
+ .-mr-12 { margin-right: -3rem; }
4120
+ .-mt-12 { margin-top: -3rem; }
4121
+ .-mb-12 { margin-bottom: -3rem; }
3999
4122
 
4000
- .font-mono {
4001
- font-family: 'JetBrains Mono', monospace;
4002
- letter-spacing: 0.02em;
4003
- }
4123
+ /* Width */
4124
+ .w-0 { width: 0px; }
4125
+ .w-1 { width: 0.25rem; }
4126
+ .w-2 { width: 0.5rem; }
4127
+ .w-3 { width: 0.75rem; }
4128
+ .w-4 { width: 1rem; }
4129
+ .w-5 { width: 1.25rem; }
4130
+ .w-6 { width: 1.5rem; }
4131
+ .w-7 { width: 1.75rem; }
4132
+ .w-8 { width: 2rem; }
4133
+ .w-9 { width: 2.25rem; }
4134
+ .w-10 { width: 2.5rem; }
4135
+ .w-11 { width: 2.75rem; }
4136
+ .w-12 { width: 3rem; }
4137
+ .w-14 { width: 3.5rem; }
4138
+ .w-16 { width: 4rem; }
4139
+ .w-20 { width: 5rem; }
4140
+ .w-24 { width: 6rem; }
4141
+ .w-28 { width: 7rem; }
4142
+ .w-32 { width: 8rem; }
4143
+ .w-36 { width: 9rem; }
4144
+ .w-40 { width: 10rem; }
4145
+ .w-48 { width: 12rem; }
4146
+ .w-56 { width: 14rem; }
4147
+ .w-64 { width: 16rem; }
4148
+ .w-72 { width: 18rem; }
4149
+ .w-80 { width: 20rem; }
4150
+ .w-96 { width: 24rem; }
4151
+ .w-auto { width: auto; }
4152
+ .w-full { width: 100%; }
4153
+ .w-fit { width: fit-content; }
4154
+ .w-max { width: max-content; }
4155
+ .w-min { width: min-content; }
4156
+ .w-screen { width: 100vw; }
4157
+ .w-px { width: 1px; }
4158
+ .w-1_2 { width: 50%; }
4159
+ .w-1_3 { width: 33.333333%; }
4160
+ .w-2_3 { width: 66.666667%; }
4161
+ .w-1_4 { width: 25%; }
4162
+ .w-3_4 { width: 75%; }
4163
+ .min-w-0 { min-width: 0px; }
4164
+ .min-w-full { min-width: 100%; }
4165
+ .min-w-fit { min-width: fit-content; }
4166
+ .min-w-32 { min-width: 8rem; }
4167
+ .min-w-36 { min-width: 9rem; }
4168
+ .max-w-0 { max-width: 0px; }
4169
+ .max-w-xs { max-width: 20rem; }
4170
+ .max-w-sm { max-width: 24rem; }
4171
+ .max-w-md { max-width: 28rem; }
4172
+ .max-w-lg { max-width: 32rem; }
4173
+ .max-w-xl { max-width: 36rem; }
4174
+ .max-w-2xl { max-width: 42rem; }
4175
+ .max-w-3xl { max-width: 48rem; }
4176
+ .max-w-4xl { max-width: 56rem; }
4177
+ .max-w-5xl { max-width: 64rem; }
4178
+ .max-w-6xl { max-width: 72rem; }
4179
+ .max-w-7xl { max-width: 80rem; }
4180
+ .max-w-full { max-width: 100%; }
4181
+ .max-w-max { max-width: max-content; }
4182
+ .max-w-fit { max-width: fit-content; }
4183
+ .max-w-prose { max-width: 65ch; }
4184
+ .max-w-screen-sm { max-width: 640px; }
4185
+ .max-w-screen-md { max-width: 768px; }
4186
+ .max-w-screen-lg { max-width: 1024px; }
4187
+ .max-w-screen-xl { max-width: 1280px; }
4188
+ .max-w-screen-2xl { max-width: 1536px; }
4189
+ .max-w-[calc(100%-2rem)] { max-width: calc(100% - 2rem); }
4190
+
4191
+ /* Height */
4192
+ .h-0 { height: 0px; }
4193
+ .h-1 { height: 0.25rem; }
4194
+ .h-2 { height: 0.5rem; }
4195
+ .h-2_5 { height: 0.625rem; }
4196
+ .h-3 { height: 0.75rem; }
4197
+ .h-3_5 { height: 0.875rem; }
4198
+ .h-4 { height: 1rem; }
4199
+ .h-5 { height: 1.25rem; }
4200
+ .h-6 { height: 1.5rem; }
4201
+ .h-7 { height: 1.75rem; }
4202
+ .h-8 { height: 2rem; }
4203
+ .h-9 { height: 2.25rem; }
4204
+ .h-10 { height: 2.5rem; }
4205
+ .h-11 { height: 2.75rem; }
4206
+ .h-12 { height: 3rem; }
4207
+ .h-14 { height: 3.5rem; }
4208
+ .h-16 { height: 4rem; }
4209
+ .h-20 { height: 5rem; }
4210
+ .h-24 { height: 6rem; }
4211
+ .h-28 { height: 7rem; }
4212
+ .h-32 { height: 8rem; }
4213
+ .h-36 { height: 9rem; }
4214
+ .h-40 { height: 10rem; }
4215
+ .h-44 { height: 11rem; }
4216
+ .h-48 { height: 12rem; }
4217
+ .h-56 { height: 14rem; }
4218
+ .h-64 { height: 16rem; }
4219
+ .h-72 { height: 18rem; }
4220
+ .h-80 { height: 20rem; }
4221
+ .h-96 { height: 24rem; }
4222
+ .h-auto { height: auto; }
4223
+ .h-full { height: 100%; }
4224
+ .h-fit { height: fit-content; }
4225
+ .h-max { height: max-content; }
4226
+ .h-min { height: min-content; }
4227
+ .h-screen { height: 100vh; }
4228
+ .h-px { height: 1px; }
4229
+ .h-[14px] { height: 14px; }
4230
+ .h-[18.4px] { height: 18.4px; }
4231
+ .h-[80vh] { height: 80vh; }
4232
+ .h-[100px] { height: 100px; }
4233
+ .h-[180px] { height: 180px; }
4234
+ .h-[200px] { height: 200px; }
4235
+ .min-h-0 { min-height: 0px; }
4236
+ .min-h-full { min-height: 100%; }
4237
+ .min-h-screen { min-height: 100vh; }
4238
+ .min-h-20 { min-height: 5rem; }
4239
+ .max-h-full { max-height: 100%; }
4240
+ .max-h-screen { max-height: 100vh; }
4241
+ .max-h-72 { max-height: 18rem; }
4242
+ .max-h-[80vh] { max-height: 80vh; }
4004
4243
 
4244
+ /* Size (width + height) */
4245
+ .size-0 { width: 0px; height: 0px; }
4246
+ .size-1 { width: 0.25rem; height: 0.25rem; }
4247
+ .size-2 { width: 0.5rem; height: 0.5rem; }
4248
+ .size-2_5 { width: 0.625rem; height: 0.625rem; }
4249
+ .size-3 { width: 0.75rem; height: 0.75rem; }
4250
+ .size-3_5 { width: 0.875rem; height: 0.875rem; }
4251
+ .size-4 { width: 1rem; height: 1rem; }
4252
+ .size-5 { width: 1.25rem; height: 1.25rem; }
4253
+ .size-6 { width: 1.5rem; height: 1.5rem; }
4254
+ .size-7 { width: 1.75rem; height: 1.75rem; }
4255
+ .size-8 { width: 2rem; height: 2rem; }
4256
+ .size-9 { width: 2.25rem; height: 2.25rem; }
4257
+ .size-10 { width: 2.5rem; height: 2.5rem; }
4258
+ .size-full { width: 100%; height: 100%; }
4259
+
4260
+ /* Background Colors */
4261
+ .bg-transparent { background-color: transparent; }
4262
+ .bg-black { background-color: #000; }
4263
+ .bg-white { background-color: #fff; }
4264
+ .bg-background { background-color: var(--background); }
4265
+ .bg-foreground { background-color: var(--foreground); }
4266
+ .bg-card { background-color: var(--card); }
4267
+ .bg-card-foreground { background-color: var(--card-foreground); }
4268
+ .bg-popover { background-color: var(--popover); }
4269
+ .bg-popover-foreground { background-color: var(--popover-foreground); }
4270
+ .bg-primary { background-color: var(--primary); }
4271
+ .bg-primary-foreground { background-color: var(--primary-foreground); }
4272
+ .bg-secondary { background-color: var(--secondary); }
4273
+ .bg-secondary-foreground { background-color: var(--secondary-foreground); }
4274
+ .bg-muted { background-color: var(--muted); }
4275
+ .bg-muted-50 { background-color: rgba(32, 36, 40, 0.5); }
4276
+ .bg-muted-foreground { background-color: var(--muted-foreground); }
4277
+ .bg-accent { background-color: var(--accent); }
4278
+ .bg-accent-foreground { background-color: var(--accent-foreground); }
4279
+ .bg-destructive { background-color: var(--destructive); }
4280
+ .bg-destructive-foreground { background-color: var(--destructive-foreground); }
4281
+ .bg-border { background-color: var(--border); }
4282
+ .bg-input { background-color: var(--input); }
4283
+ .bg-ring { background-color: var(--ring); }
4005
4284
  .bg-deep-command { background-color: #0A0F11; }
4006
4285
  .bg-slate-mist { background-color: #202428; }
4007
4286
  .bg-formant-white { background-color: #F2F3F4; }
@@ -4011,7 +4290,43 @@ code, pre, .font-mono {
4011
4290
  .bg-horizon-glow { background-color: #ACC3B3; }
4012
4291
  .bg-terminal-amber { background-color: #E8AB7F; }
4013
4292
  .bg-interface-iris { background-color: #8B8CF4; }
4293
+ .bg-black-10 { background-color: rgba(0, 0, 0, 0.1); }
4294
+ .bg-[#0A0F11] { background-color: #0A0F11; }
4295
+ .bg-[#1A2A22] { background-color: #1A2A22; }
4296
+ .bg-[#151B1C] { background-color: #151B1C; }
4297
+ .bg-[#202428] { background-color: #202428; }
4298
+ .bg-[#2A1E14] { background-color: #2A1E14; }
4299
+ .bg-[rgba(172,195,179,0.08)] { background-color: rgba(172, 195, 179, 0.08); }
4300
+ .bg-[rgba(172,195,179,0.1)] { background-color: rgba(172, 195, 179, 0.1); }
4301
+ .bg-[rgba(139,140,244,0.1)] { background-color: rgba(139, 140, 244, 0.1); }
4302
+ .bg-[rgba(232,171,127,0.1)] { background-color: rgba(232, 171, 127, 0.1); }
4303
+ .bg-[rgba(44,65,66,0.3)] { background-color: rgba(44, 65, 66, 0.3); }
4304
+ .bg-[rgba(44,65,66,0.4)] { background-color: rgba(44, 65, 66, 0.4); }
4305
+ .bg-[rgba(75,94,83,0.3)] { background-color: rgba(75, 94, 83, 0.3); }
4014
4306
 
4307
+ /* Text Colors */
4308
+ .text-transparent { color: transparent; }
4309
+ .text-black { color: #000; }
4310
+ .text-white { color: #fff; }
4311
+ .text-background { color: var(--background); }
4312
+ .text-foreground { color: var(--foreground); }
4313
+ .text-card { color: var(--card); }
4314
+ .text-card-foreground { color: var(--card-foreground); }
4315
+ .text-popover { color: var(--popover); }
4316
+ .text-popover-foreground { color: var(--popover-foreground); }
4317
+ .text-primary { color: var(--primary); }
4318
+ .text-primary-foreground { color: var(--primary-foreground); }
4319
+ .text-secondary { color: var(--secondary); }
4320
+ .text-secondary-foreground { color: var(--secondary-foreground); }
4321
+ .text-muted { color: var(--muted); }
4322
+ .text-muted-foreground { color: var(--muted-foreground); }
4323
+ .text-accent { color: var(--accent); }
4324
+ .text-accent-foreground { color: var(--accent-foreground); }
4325
+ .text-destructive { color: var(--destructive); }
4326
+ .text-destructive-foreground { color: var(--destructive-foreground); }
4327
+ .text-border { color: var(--border); }
4328
+ .text-input { color: var(--input); }
4329
+ .text-ring { color: var(--ring); }
4015
4330
  .text-deep-command { color: #0A0F11; }
4016
4331
  .text-slate-mist { color: #202428; }
4017
4332
  .text-formant-white { color: #F2F3F4; }
@@ -4021,11 +4336,679 @@ code, pre, .font-mono {
4021
4336
  .text-horizon-glow { color: #ACC3B3; }
4022
4337
  .text-terminal-amber { color: #E8AB7F; }
4023
4338
  .text-interface-iris { color: #8B8CF4; }
4339
+ .text-[#A3ABA9] { color: #A3ABA9; }
4340
+ .text-[#ACC3B3] { color: #ACC3B3; }
4341
+ .text-[#E8AB7F] { color: #E8AB7F; }
4342
+ .text-[#F2F3F4] { color: #F2F3F4; }
4343
+ .text-[#8B8CF4] { color: #8B8CF4; }
4344
+ .text-[rgba(163,171,169,0.5)] { color: rgba(163, 171, 169, 0.5); }
4024
4345
 
4346
+ /* Border Colors */
4347
+ .border-transparent { border-color: transparent; }
4348
+ .border-black { border-color: #000; }
4349
+ .border-white { border-color: #fff; }
4350
+ .border-background { border-color: var(--background); }
4351
+ .border-foreground { border-color: var(--foreground); }
4352
+ .border-card { border-color: var(--card); }
4353
+ .border-card-foreground { border-color: var(--card-foreground); }
4354
+ .border-popover { border-color: var(--popover); }
4355
+ .border-popover-foreground { border-color: var(--popover-foreground); }
4356
+ .border-primary { border-color: var(--primary); }
4357
+ .border-primary-foreground { border-color: var(--primary-foreground); }
4358
+ .border-secondary { border-color: var(--secondary); }
4359
+ .border-secondary-foreground { border-color: var(--secondary-foreground); }
4360
+ .border-muted { border-color: var(--muted); }
4361
+ .border-muted-foreground { border-color: var(--muted-foreground); }
4362
+ .border-accent { border-color: var(--accent); }
4363
+ .border-accent-foreground { border-color: var(--accent-foreground); }
4364
+ .border-destructive { border-color: var(--destructive); }
4365
+ .border-destructive-foreground { border-color: var(--destructive-foreground); }
4366
+ .border-border { border-color: var(--border); }
4367
+ .border-border-50 { border-color: rgba(163, 171, 169, 0.05); }
4368
+ .border-input { border-color: var(--input); }
4369
+ .border-ring { border-color: var(--ring); }
4370
+ .border-foreground-10 { border-color: rgba(242, 243, 244, 0.1); }
4025
4371
  .border-fog-green { border-color: rgba(75, 94, 83, 0.4); }
4026
4372
  .border-terminal-amber { border-color: rgba(232, 171, 127, 0.25); }
4027
4373
  .border-interface-iris { border-color: rgba(139, 140, 244, 0.25); }
4374
+ .border-[#ACC3B3] { border-color: #ACC3B3; }
4375
+ .border-[#A3ABA9] { border-color: #A3ABA9; }
4376
+ .border-[rgba(163,171,169,0.1)] { border-color: rgba(163, 171, 169, 0.1); }
4377
+ .border-[rgba(163,171,169,0.2)] { border-color: rgba(163, 171, 169, 0.2); }
4378
+ .border-[rgba(75,94,83,0.4)] { border-color: rgba(75, 94, 83, 0.4); }
4379
+ .border-[rgba(44,65,66,0.6)] { border-color: rgba(44, 65, 66, 0.6); }
4380
+ .border-[rgba(172,195,179,0.4)] { border-color: rgba(172, 195, 179, 0.4); }
4381
+ .border-[rgba(232,171,127,0.2)] { border-color: rgba(232, 171, 127, 0.2); }
4382
+ .border-[rgba(139,140,244,0.25)] { border-color: rgba(139, 140, 244, 0.25); }
4383
+
4384
+ /* Border Width */
4385
+ .border-0 { border-width: 0px; }
4386
+ .border-2 { border-width: 2px; }
4387
+ .border { border-width: 1px; }
4388
+ .border-t { border-top-width: 1px; }
4389
+ .border-t-0 { border-top-width: 0px; }
4390
+ .border-r { border-right-width: 1px; }
4391
+ .border-r-0 { border-right-width: 0px; }
4392
+ .border-b { border-bottom-width: 1px; }
4393
+ .border-b-0 { border-bottom-width: 0px; }
4394
+ .border-l { border-left-width: 1px; }
4395
+ .border-l-0 { border-left-width: 0px; }
4396
+ .border-x { border-left-width: 1px; border-right-width: 1px; }
4397
+ .border-y { border-top-width: 1px; border-bottom-width: 1px; }
4398
+ .border-y-0 { border-top-width: 0px; border-bottom-width: 0px; }
4399
+ .border-[1.5px] { border-width: 1.5px; }
4400
+
4401
+ /* Border Style */
4402
+ .border-solid { border-style: solid; }
4403
+ .border-dashed { border-style: dashed; }
4404
+ .border-dotted { border-style: dotted; }
4405
+ .border-double { border-style: double; }
4406
+ .border-hidden { border-style: hidden; }
4407
+ .border-none { border-style: none; }
4408
+
4409
+ /* Border Radius */
4410
+ .rounded-none { border-radius: 0; }
4411
+ .rounded-sm { border-radius: var(--radius-sm); }
4412
+ .rounded { border-radius: var(--radius); }
4413
+ .rounded-md { border-radius: var(--radius-md); }
4414
+ .rounded-lg { border-radius: var(--radius-lg); }
4415
+ .rounded-xl { border-radius: var(--radius-xl); }
4416
+ .rounded-2xl { border-radius: var(--radius-2xl); }
4417
+ .rounded-3xl { border-radius: var(--radius-3xl); }
4418
+ .rounded-4xl { border-radius: var(--radius-4xl); }
4419
+ .rounded-full { border-radius: 9999px; }
4420
+ .rounded-[2px] { border-radius: 2px; }
4421
+ .rounded-[3px] { border-radius: 3px; }
4422
+ .rounded-[4px] { border-radius: 4px; }
4423
+ .rounded-[calc(var(--radius)-3px)] { border-radius: calc(var(--radius) - 3px); }
4424
+ .rounded-[calc(var(--radius)-5px)] { border-radius: calc(var(--radius) - 5px); }
4425
+ .rounded-[min(var(--radius-md),10px)] { border-radius: min(var(--radius-md), 10px); }
4426
+ .rounded-[min(var(--radius-md),12px)] { border-radius: min(var(--radius-md), 12px); }
4427
+ .rounded-t-lg { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
4428
+ .rounded-t-xl { border-top-left-radius: var(--radius-xl); border-top-right-radius: var(--radius-xl); }
4429
+ .rounded-b-lg { border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
4430
+ .rounded-b-xl { border-bottom-left-radius: var(--radius-xl); border-bottom-right-radius: var(--radius-xl); }
4431
+ .rounded-l-lg { border-top-left-radius: var(--radius-lg); border-bottom-left-radius: var(--radius-lg); }
4432
+ .rounded-l-md { border-top-left-radius: var(--radius-md); border-bottom-left-radius: var(--radius-md); }
4433
+ .rounded-r-lg { border-top-right-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
4434
+ .rounded-r-md { border-top-right-radius: var(--radius-md); border-bottom-right-radius: var(--radius-md); }
4435
+
4436
+ /* Typography - Font Size */
4437
+ .text-xs { font-size: 0.75rem; line-height: 1rem; }
4438
+ .text-sm { font-size: 0.875rem; line-height: 1.25rem; }
4439
+ .text-base { font-size: 1rem; line-height: 1.5rem; }
4440
+ .text-lg { font-size: 1.125rem; line-height: 1.75rem; }
4441
+ .text-xl { font-size: 1.25rem; line-height: 1.75rem; }
4442
+ .text-2xl { font-size: 1.5rem; line-height: 2rem; }
4443
+ .text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
4444
+ .text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
4445
+ .text-5xl { font-size: 3rem; line-height: 1; }
4446
+ .text-[10px] { font-size: 10px; }
4447
+ .text-[11px] { font-size: 11px; }
4448
+ .text-[12px] { font-size: 12px; }
4449
+ .text-[13px] { font-size: 13px; }
4450
+ .text-[0.8rem] { font-size: 0.8rem; }
4451
+
4452
+ /* Typography - Font Weight */
4453
+ .font-thin { font-weight: 100; }
4454
+ .font-extralight { font-weight: 200; }
4455
+ .font-light { font-weight: 300; }
4456
+ .font-normal { font-weight: 400; }
4457
+ .font-medium { font-weight: 500; }
4458
+ .font-semibold { font-weight: 600; }
4459
+ .font-bold { font-weight: 700; }
4460
+ .font-extrabold { font-weight: 800; }
4461
+ .font-black { font-weight: 900; }
4462
+
4463
+ /* Typography - Letter Spacing */
4464
+ .tracking-tighter { letter-spacing: -0.05em; }
4465
+ .tracking-tight { letter-spacing: -0.025em; }
4466
+ .tracking-normal { letter-spacing: 0em; }
4467
+ .tracking-wide { letter-spacing: 0.025em; }
4468
+ .tracking-wider { letter-spacing: 0.05em; }
4469
+ .tracking-widest { letter-spacing: 0.1em; }
4470
+ .tracking-[0.04em] { letter-spacing: 0.04em; }
4471
+ .tracking-[0.08em] { letter-spacing: 0.08em; }
4472
+ .tracking-[0.1em] { letter-spacing: 0.1em; }
4473
+ .tracking-[0.15em] { letter-spacing: 0.15em; }
4474
+ .tracking-[0.3em] { letter-spacing: 0.3em; }
4475
+
4476
+ /* Typography - Line Height */
4477
+ .leading-3 { line-height: .75rem; }
4478
+ .leading-4 { line-height: 1rem; }
4479
+ .leading-5 { line-height: 1.25rem; }
4480
+ .leading-6 { line-height: 1.5rem; }
4481
+ .leading-7 { line-height: 1.75rem; }
4482
+ .leading-8 { line-height: 2rem; }
4483
+ .leading-9 { line-height: 2.25rem; }
4484
+ .leading-10 { line-height: 2.5rem; }
4485
+ .leading-none { line-height: 1; }
4486
+ .leading-tight { line-height: 1.25; }
4487
+ .leading-snug { line-height: 1.375; }
4488
+ .leading-normal { line-height: 1.5; }
4489
+ .leading-relaxed { line-height: 1.625; }
4490
+ .leading-loose { line-height: 2; }
4491
+
4492
+ /* Typography - Text Align */
4493
+ .text-left { text-align: left; }
4494
+ .text-center { text-align: center; }
4495
+ .text-right { text-align: right; }
4496
+ .text-justify { text-align: justify; }
4497
+ .text-start { text-align: start; }
4498
+ .text-end { text-align: end; }
4499
+
4500
+ /* Typography - Text Transform */
4501
+ .uppercase { text-transform: uppercase; }
4502
+ .lowercase { text-transform: lowercase; }
4503
+ .capitalize { text-transform: capitalize; }
4504
+ .normal-case { text-transform: none; }
4028
4505
 
4506
+ /* Typography - Text Decoration */
4507
+ .underline { text-decoration-line: underline; }
4508
+ .overline { text-decoration-line: overline; }
4509
+ .line-through { text-decoration-line: line-through; }
4510
+ .no-underline { text-decoration-line: none; }
4511
+ .underline-offset-1 { text-underline-offset: 1px; }
4512
+ .underline-offset-2 { text-underline-offset: 2px; }
4513
+ .underline-offset-3 { text-underline-offset: 3px; }
4514
+ .underline-offset-4 { text-underline-offset: 4px; }
4515
+ .underline-offset-8 { text-underline-offset: 8px; }
4516
+
4517
+ /* Typography - Text Overflow */
4518
+ .truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
4519
+ .text-ellipsis { text-overflow: ellipsis; }
4520
+ .text-clip { text-overflow: clip; }
4521
+ .whitespace-normal { white-space: normal; }
4522
+ .whitespace-nowrap { white-space: nowrap; }
4523
+ .whitespace-pre { white-space: pre; }
4524
+ .whitespace-pre-line { white-space: pre-line; }
4525
+ .whitespace-pre-wrap { white-space: pre-wrap; }
4526
+ .break-normal { overflow-wrap: normal; word-break: normal; }
4527
+ .break-words { overflow-wrap: break-word; }
4528
+ .break-all { word-break: break-all; }
4529
+ .break-keep { word-break: keep-all; }
4530
+
4531
+ /* Typography - Others */
4532
+ .text-balance { text-wrap: balance; }
4533
+ .text-pretty { text-wrap: pretty; }
4534
+ .tabular-nums { font-variant-numeric: tabular-nums; }
4535
+ .select-none { user-select: none; }
4536
+ .select-text { user-select: text; }
4537
+ .select-all { user-select: all; }
4538
+ .select-auto { user-select: auto; }
4539
+ `;
4540
+ var FORMANT_UTILITY_CSS_PART2 = `
4541
+ /* Opacity */
4542
+ .opacity-0 { opacity: 0; }
4543
+ .opacity-5 { opacity: 0.05; }
4544
+ .opacity-10 { opacity: 0.1; }
4545
+ .opacity-15 { opacity: 0.15; }
4546
+ .opacity-20 { opacity: 0.2; }
4547
+ .opacity-25 { opacity: 0.25; }
4548
+ .opacity-30 { opacity: 0.3; }
4549
+ .opacity-35 { opacity: 0.35; }
4550
+ .opacity-40 { opacity: 0.4; }
4551
+ .opacity-45 { opacity: 0.45; }
4552
+ .opacity-50 { opacity: 0.5; }
4553
+ .opacity-55 { opacity: 0.55; }
4554
+ .opacity-60 { opacity: 0.6; }
4555
+ .opacity-65 { opacity: 0.65; }
4556
+ .opacity-70 { opacity: 0.7; }
4557
+ .opacity-75 { opacity: 0.75; }
4558
+ .opacity-80 { opacity: 0.8; }
4559
+ .opacity-85 { opacity: 0.85; }
4560
+ .opacity-90 { opacity: 0.9; }
4561
+ .opacity-95 { opacity: 0.95; }
4562
+ .opacity-100 { opacity: 1; }
4563
+
4564
+ /* Shadow */
4565
+ .shadow-none { box-shadow: none; }
4566
+ .shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
4567
+ .shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
4568
+ .shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
4569
+ .shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
4570
+ .shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
4571
+ .shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
4572
+ .shadow-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); }
4573
+
4574
+ /* Ring */
4575
+ .ring-0 { box-shadow: 0 0 0 0px; }
4576
+ .ring-1 { box-shadow: 0 0 0 1px; }
4577
+ .ring-2 { box-shadow: 0 0 0 2px; }
4578
+ .ring-3 { box-shadow: 0 0 0 3px; }
4579
+ .ring-4 { box-shadow: 0 0 0 4px; }
4580
+ .ring { box-shadow: 0 0 0 3px; }
4581
+ .ring-offset-0 { --tw-ring-offset-width: 0px; }
4582
+ .ring-offset-1 { --tw-ring-offset-width: 1px; }
4583
+ .ring-offset-2 { --tw-ring-offset-width: 2px; }
4584
+ .ring-offset-4 { --tw-ring-offset-width: 4px; }
4585
+ .ring-offset-8 { --tw-ring-offset-width: 8px; }
4586
+ .ring-offset-background { --tw-ring-offset-color: var(--background); }
4587
+ .ring-background { --tw-ring-color: var(--background); }
4588
+ .ring-ring { --tw-ring-color: var(--ring); }
4589
+
4590
+ /* Backdrop Blur */
4591
+ .backdrop-blur-sm { backdrop-filter: blur(4px); }
4592
+ .backdrop-blur { backdrop-filter: blur(8px); }
4593
+ .backdrop-blur-md { backdrop-filter: blur(12px); }
4594
+ .backdrop-blur-lg { backdrop-filter: blur(16px); }
4595
+ .backdrop-blur-xl { backdrop-filter: blur(24px); }
4596
+
4597
+ /* Transitions */
4598
+ .transition-none { transition-property: none; }
4599
+ .transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
4600
+ .transition-colors { transition-property: background-color, border-color, color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
4601
+ .transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
4602
+ .transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
4603
+ .transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
4604
+ .duration-0 { transition-duration: 0s; }
4605
+ .duration-75 { transition-duration: 75ms; }
4606
+ .duration-100 { transition-duration: 100ms; }
4607
+ .duration-150 { transition-duration: 150ms; }
4608
+ .duration-200 { transition-duration: 200ms; }
4609
+ .duration-300 { transition-duration: 300ms; }
4610
+ .duration-500 { transition-duration: 500ms; }
4611
+ .duration-700 { transition-duration: 700ms; }
4612
+ .duration-1000 { transition-duration: 1000ms; }
4613
+ .ease-linear { transition-timing-function: linear; }
4614
+ .ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
4615
+ .ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
4616
+ .ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
4617
+
4618
+ /* Animations */
4619
+ @keyframes spin {
4620
+ to { transform: rotate(360deg); }
4621
+ }
4622
+ @keyframes ping {
4623
+ 75%, 100% { transform: scale(2); opacity: 0; }
4624
+ }
4625
+ @keyframes pulse {
4626
+ 50% { opacity: .5; }
4627
+ }
4628
+ @keyframes bounce {
4629
+ 0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); }
4630
+ 50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); }
4631
+ }
4632
+ @keyframes caret-blink {
4633
+ 0%, 70%, 100% { opacity: 1; }
4634
+ 20%, 50% { opacity: 0; }
4635
+ }
4636
+ @keyframes fadeUp {
4637
+ from { opacity: 0; transform: translateY(24px); }
4638
+ to { opacity: 1; transform: translateY(0); }
4639
+ }
4640
+ @keyframes fadeIn {
4641
+ from { opacity: 0; }
4642
+ to { opacity: 1; }
4643
+ }
4644
+ @keyframes fadeOut {
4645
+ from { opacity: 1; }
4646
+ to { opacity: 0; }
4647
+ }
4648
+ @keyframes zoomIn {
4649
+ from { opacity: 0; transform: scale(0.95); }
4650
+ to { opacity: 1; transform: scale(1); }
4651
+ }
4652
+ @keyframes zoomOut {
4653
+ from { opacity: 1; transform: scale(1); }
4654
+ to { opacity: 0; transform: scale(0.95); }
4655
+ }
4656
+ @keyframes accordion-down {
4657
+ from { height: 0; }
4658
+ to { height: var(--radix-accordion-content-height); }
4659
+ }
4660
+ @keyframes accordion-up {
4661
+ from { height: var(--radix-accordion-content-height); }
4662
+ to { height: 0; }
4663
+ }
4664
+
4665
+ .animate-spin { animation: spin 1s linear infinite; }
4666
+ .animate-ping { animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite; }
4667
+ .animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
4668
+ .animate-bounce { animation: bounce 1s infinite; }
4669
+ .animate-caret-blink { animation: caret-blink 1s infinite; }
4670
+ .animate-fade-up { animation: fadeUp 0.7s ease forwards; }
4671
+ .animate-fade-in { animation: fadeIn 0.15s ease-out; }
4672
+ .animate-fade-out { animation: fadeOut 0.15s ease-out; }
4673
+ .animate-zoom-in { animation: zoomIn 0.15s ease-out; }
4674
+ .animate-zoom-out { animation: zoomOut 0.15s ease-out; }
4675
+ .animate-accordion-down { animation: accordion-down 0.2s ease-out; }
4676
+ .animate-accordion-up { animation: accordion-up 0.2s ease-out; }
4677
+
4678
+ /* Transforms */
4679
+ .transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
4680
+ .transform-none { transform: none; }
4681
+ .translate-x-0 { --tw-translate-x: 0; }
4682
+ .translate-x-1 { --tw-translate-x: 0.25rem; }
4683
+ .translate-x-1_2 { --tw-translate-x: 50%; }
4684
+ .translate-x-full { --tw-translate-x: 100%; }
4685
+ .-translate-x-1 { --tw-translate-x: -0.25rem; }
4686
+ .-translate-x-1_2 { --tw-translate-x: -50%; }
4687
+ .-translate-x-full { --tw-translate-x: -100%; }
4688
+ .translate-y-0 { --tw-translate-y: 0; }
4689
+ .translate-y-1 { --tw-translate-y: 0.25rem; }
4690
+ .translate-y-4 { --tw-translate-y: 1rem; }
4691
+ .-translate-y-1 { --tw-translate-y: -0.25rem; }
4692
+ .-translate-y-1_2 { --tw-translate-y: -50%; }
4693
+ .-translate-y-full { --tw-translate-y: -100%; }
4694
+ .rotate-0 { --tw-rotate: 0deg; }
4695
+ .rotate-45 { --tw-rotate: 45deg; }
4696
+ .rotate-90 { --tw-rotate: 90deg; }
4697
+ .rotate-180 { --tw-rotate: 180deg; }
4698
+ .scale-0 { --tw-scale-x: 0; --tw-scale-y: 0; }
4699
+ .scale-50 { --tw-scale-x: .5; --tw-scale-y: .5; }
4700
+ .scale-75 { --tw-scale-x: .75; --tw-scale-y: .75; }
4701
+ .scale-95 { --tw-scale-x: .95; --tw-scale-y: .95; }
4702
+ .scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; }
4703
+ .scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
4704
+ .scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }
4705
+ .scale-125 { --tw-scale-x: 1.25; --tw-scale-y: 1.25; }
4706
+
4707
+ /* Z-Index */
4708
+ .z-0 { z-index: 0; }
4709
+ .z-10 { z-index: 10; }
4710
+ .z-1 { z-index: 1; }
4711
+ .z-50 { z-index: 50; }
4712
+ .z-auto { z-index: auto; }
4713
+ .isolate { isolation: isolate; }
4714
+ .isolation-auto { isolation: auto; }
4715
+
4716
+ /* Overflow */
4717
+ .overflow-auto { overflow: auto; }
4718
+ .overflow-hidden { overflow: hidden; }
4719
+ .overflow-clip { overflow: clip; }
4720
+ .overflow-visible { overflow: visible; }
4721
+ .overflow-scroll { overflow: scroll; }
4722
+ .overflow-x-auto { overflow-x: auto; }
4723
+ .overflow-x-hidden { overflow-x: hidden; }
4724
+ .overflow-x-clip { overflow-x: clip; }
4725
+ .overflow-x-visible { overflow-x: visible; }
4726
+ .overflow-x-scroll { overflow-x: scroll; }
4727
+ .overflow-y-auto { overflow-y: auto; }
4728
+ .overflow-y-hidden { overflow-y: hidden; }
4729
+ .overflow-y-clip { overflow-y: clip; }
4730
+ .overflow-y-visible { overflow-y: visible; }
4731
+ .overflow-y-scroll { overflow-y: scroll; }
4732
+
4733
+ /* Positioning */
4734
+ .static { position: static; }
4735
+ .fixed { position: fixed; }
4736
+ .absolute { position: absolute; }
4737
+ .relative { position: relative; }
4738
+ .sticky { position: sticky; }
4739
+ .inset-0 { inset: 0px; }
4740
+ .inset-1 { inset: 0.25rem; }
4741
+ .inset-2 { inset: 0.5rem; }
4742
+ .inset-3 { inset: 0.75rem; }
4743
+ .inset-4 { inset: 1rem; }
4744
+ .inset-auto { inset: auto; }
4745
+ .inset-x-0 { left: 0px; right: 0px; }
4746
+ .inset-x-1 { left: 0.25rem; right: 0.25rem; }
4747
+ .inset-x-2 { left: 0.5rem; right: 0.5rem; }
4748
+ .inset-x-3 { left: 0.75rem; right: 0.75rem; }
4749
+ .inset-x-4 { left: 1rem; right: 1rem; }
4750
+ .inset-y-0 { top: 0px; bottom: 0px; }
4751
+ .inset-y-1 { top: 0.25rem; bottom: 0.25rem; }
4752
+ .inset-y-2 { top: 0.5rem; bottom: 0.5rem; }
4753
+ .inset-y-3 { top: 0.75rem; bottom: 0.75rem; }
4754
+ .inset-y-4 { top: 1rem; bottom: 1rem; }
4755
+ .-inset-1 { inset: -0.25rem; }
4756
+ .-inset-2 { inset: -0.5rem; }
4757
+ .-inset-3 { inset: -0.75rem; }
4758
+ .-inset-4 { inset: -1rem; }
4759
+ .-inset-x-3 { left: -0.75rem; right: -0.75rem; }
4760
+ .-inset-y-2 { top: -0.5rem; bottom: -0.5rem; }
4761
+ .top-0 { top: 0px; }
4762
+ .top-1 { top: 0.25rem; }
4763
+ .top-1_2 { top: 50%; }
4764
+ .top-2 { top: 0.5rem; }
4765
+ .top-2_5 { top: 0.625rem; }
4766
+ .top-3 { top: 0.75rem; }
4767
+ .top-4 { top: 1rem; }
4768
+ .top-5 { top: 1.25rem; }
4769
+ .top-6 { top: 1.5rem; }
4770
+ .top-8 { top: 2rem; }
4771
+ .top-10 { top: 2.5rem; }
4772
+ .top-12 { top: 3rem; }
4773
+ .top-24 { top: 6rem; }
4774
+ .top-full { top: 100%; }
4775
+ .right-0 { right: 0px; }
4776
+ .right-1 { right: 0.25rem; }
4777
+ .right-2 { right: 0.5rem; }
4778
+ .right-3 { right: 0.75rem; }
4779
+ .right-4 { right: 1rem; }
4780
+ .bottom-0 { bottom: 0px; }
4781
+ .bottom-3 { bottom: 0.75rem; }
4782
+ .bottom-4 { bottom: 1rem; }
4783
+ .bottom-12 { bottom: 3rem; }
4784
+ .bottom-full { bottom: 100%; }
4785
+ .left-0 { left: 0px; }
4786
+ .left-1 { left: 0.25rem; }
4787
+ .left-1_2 { left: 50%; }
4788
+ .left-1_5 { left: 0.375rem; }
4789
+ .left-2 { left: 0.5rem; }
4790
+ .left-3 { left: 0.75rem; }
4791
+ .left-4 { left: 1rem; }
4792
+ .left-12 { left: 3rem; }
4793
+ .left-full { left: 100%; }
4794
+ .-left-12 { left: -3rem; }
4795
+ .-right-12 { right: -3rem; }
4796
+ .-top-12 { top: -3rem; }
4797
+ .-bottom-12 { bottom: -3rem; }
4798
+
4799
+ /* Interactivity */
4800
+ .cursor-auto { cursor: auto; }
4801
+ .cursor-default { cursor: default; }
4802
+ .cursor-pointer { cursor: pointer; }
4803
+ .cursor-wait { cursor: wait; }
4804
+ .cursor-text { cursor: text; }
4805
+ .cursor-move { cursor: move; }
4806
+ .cursor-help { cursor: help; }
4807
+ .cursor-not-allowed { cursor: not-allowed; }
4808
+ .cursor-none { cursor: none; }
4809
+ .cursor-progress { cursor: progress; }
4810
+ .pointer-events-none { pointer-events: none; }
4811
+ .pointer-events-auto { pointer-events: auto; }
4812
+ .touch-manipulation { touch-action: manipulation; }
4813
+ .resize-none { resize: none; }
4814
+ .resize-y { resize: vertical; }
4815
+ .resize-x { resize: horizontal; }
4816
+ .resize { resize: both; }
4817
+ .scroll-py-1 { scroll-padding-top: 0.25rem; scroll-padding-bottom: 0.25rem; }
4818
+ .scroll-my-1 { scroll-margin-top: 0.25rem; scroll-margin-bottom: 0.25rem; }
4819
+
4820
+ /* Accessibility */
4821
+ .sr-only {
4822
+ position: absolute;
4823
+ width: 1px;
4824
+ height: 1px;
4825
+ padding: 0;
4826
+ margin: -1px;
4827
+ overflow: hidden;
4828
+ clip: rect(0, 0, 0, 0);
4829
+ white-space: nowrap;
4830
+ border-width: 0;
4831
+ }
4832
+
4833
+ /* Outline */
4834
+ .outline-none { outline: 2px solid transparent; outline-offset: 2px; }
4835
+ .outline-hidden { outline-style: none; }
4836
+ .outline-1 { outline-width: 1px; }
4837
+ .outline-2 { outline-width: 2px; }
4838
+ .outline-4 { outline-width: 4px; }
4839
+ .outline { outline-width: 3px; }
4840
+
4841
+ /* Focus Visible */
4842
+ .focus-visible:outline-none:focus-visible { outline: 2px solid transparent; outline-offset: 2px; }
4843
+ .focus-visible:outline-1:focus-visible { outline-width: 1px; }
4844
+ .focus-visible:outline-ring:focus-visible { outline-color: var(--ring); }
4845
+ .focus-visible:ring-1:focus-visible { box-shadow: 0 0 0 1px; }
4846
+ .focus-visible:ring-2:focus-visible { box-shadow: 0 0 0 2px; }
4847
+ .focus-visible:ring-3:focus-visible { box-shadow: 0 0 0 3px; }
4848
+ .focus-visible:ring-ring:focus-visible { box-shadow: 0 0 0 3px var(--ring); }
4849
+ .focus-visible:ring-ring/50:focus-visible { box-shadow: 0 0 0 3px rgba(172, 195, 179, 0.5); }
4850
+ .focus-visible:border-ring:focus-visible { border-color: var(--ring); }
4851
+
4852
+ /* Visibility */
4853
+ .visible { visibility: visible; }
4854
+ .invisible { visibility: hidden; }
4855
+ .collapse { visibility: collapse; }
4856
+
4857
+ /* Aspect Ratio */
4858
+ .aspect-auto { aspect-ratio: auto; }
4859
+ .aspect-square { aspect-ratio: 1 / 1; }
4860
+ .aspect-video { aspect-ratio: 16 / 9; }
4861
+
4862
+ /* Object Fit/Position */
4863
+ .object-contain { object-fit: contain; }
4864
+ .object-cover { object-fit: cover; }
4865
+ .object-fill { object-fit: fill; }
4866
+ .object-none { object-fit: none; }
4867
+ .object-scale-down { object-fit: scale-down; }
4868
+ .object-bottom { object-position: bottom; }
4869
+ .object-center { object-position: center; }
4870
+ .object-left { object-position: left; }
4871
+ .object-left-bottom { object-position: left bottom; }
4872
+ .object-left-top { object-position: left top; }
4873
+ .object-right { object-position: right; }
4874
+ .object-right-bottom { object-position: right bottom; }
4875
+ .object-right-top { object-position: right top; }
4876
+ .object-top { object-position: top; }
4877
+
4878
+ /* List Style */
4879
+ .list-none { list-style-type: none; }
4880
+ .list-disc { list-style-type: disc; }
4881
+ .list-decimal { list-style-type: decimal; }
4882
+
4883
+ /* Scrollbar */
4884
+ .no-scrollbar::-webkit-scrollbar { display: none; }
4885
+ .no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
4886
+ `;
4887
+ var FORMANT_UTILITY_CSS_PART3 = `
4888
+ /* Data attribute selectors */
4889
+ .data-open:animate-in[data-state="open"],
4890
+ .data-open:animate-in[data-open="true"] { animation: fadeIn 0.15s ease-out, zoomIn 0.15s ease-out; }
4891
+ .data-closed:animate-out[data-state="closed"],
4892
+ .data-closed:animate-out[data-open="false"] { animation: fadeOut 0.15s ease-out, zoomOut 0.15s ease-out; }
4893
+ .data-open:fade-in-0[data-state="open"] { animation: fadeIn 0.15s ease-out; }
4894
+ .data-closed:fade-out-0[data-state="closed"] { animation: fadeOut 0.15s ease-out; }
4895
+ .data-open:zoom-in-95[data-state="open"] { animation: zoomIn 0.15s ease-out; }
4896
+ .data-closed:zoom-out-95[data-state="closed"] { animation: zoomOut 0.15s ease-out; }
4897
+ .data-[side=bottom]:slide-in-from-top-2[data-side="bottom"] { animation: slideInFromTop 0.2s ease-out; }
4898
+ .data-[side=left]:slide-in-from-right-2[data-side="left"] { animation: slideInFromRight 0.2s ease-out; }
4899
+ .data-[side=right]:slide-in-from-left-2[data-side="right"] { animation: slideInFromLeft 0.2s ease-out; }
4900
+ .data-[side=top]:slide-in-from-bottom-2[data-side="top"] { animation: slideInFromBottom 0.2s ease-out; }
4901
+ .data-[state=visible]:animate-in[data-state="visible"] { animation: fadeIn 0.15s ease-out; }
4902
+ .data-[state=hidden]:animate-out[data-state="hidden"] { animation: fadeOut 0.15s ease-out; }
4903
+ .data-disabled:pointer-events-none[data-disabled="true"] { pointer-events: none; }
4904
+ .data-disabled:opacity-50[data-disabled="true"] { opacity: 0.5; }
4905
+ .data-selected:bg-muted[data-selected="true"] { background-color: var(--muted); }
4906
+ .data-selected:text-foreground[data-selected="true"] { color: var(--foreground); }
4907
+ .data-[disabled=true]:pointer-events-none[data-disabled="true"] { pointer-events: none; }
4908
+ .data-[disabled=true]:opacity-50[data-disabled="true"] { opacity: 0.5; }
4909
+
4910
+ /* ARIA selectors */
4911
+ .aria-invalid:border-destructive[aria-invalid="true"] { border-color: var(--destructive); }
4912
+ .aria-invalid:ring-2[aria-invalid="true"] { box-shadow: 0 0 0 2px; }
4913
+ .aria-invalid:ring-destructive-20[aria-invalid="true"] { box-shadow: 0 0 0 2px rgba(232, 171, 127, 0.2); }
4914
+ .aria-invalid:ring-destructive/20[aria-invalid="true"] { box-shadow: 0 0 0 2px rgba(232, 171, 127, 0.2); }
4915
+ .aria-disabled:opacity-50[aria-disabled="true"] { opacity: 0.5; }
4916
+
4917
+ /* Disabled selectors */
4918
+ .disabled:pointer-events-none:disabled { pointer-events: none; }
4919
+ .disabled:opacity-50:disabled { opacity: 0.5; }
4920
+ .disabled:cursor-not-allowed:disabled { cursor: not-allowed; }
4921
+
4922
+ /* Focus selectors */
4923
+ .focus:bg-accent:focus { background-color: var(--accent); }
4924
+ .focus:text-accent-foreground:focus { color: var(--accent-foreground); }
4925
+ .focus:ring-2:focus { box-shadow: 0 0 0 2px; }
4926
+ .focus:z-10:focus { z-index: 10; }
4927
+
4928
+ /* Hover selectors */
4929
+ .hover:bg-muted:hover { background-color: var(--muted); }
4930
+ .hover:text-foreground:hover { color: var(--foreground); }
4931
+ .hover:underline:hover { text-decoration-line: underline; }
4932
+ .hover:opacity-90:hover { opacity: 0.9; }
4933
+ .hover:ring-3:hover { box-shadow: 0 0 0 3px; }
4934
+
4935
+ /* Active selectors */
4936
+ .active:translate-y-px:active { transform: translateY(1px); }
4937
+
4938
+ /* Has selectors */
4939
+ .has-[>svg]:pl-10:has(>svg) { padding-left: 2.5rem; }
4940
+ .has-data-[slot=card-footer]:pb-0:has([data-slot="card-footer"]) { padding-bottom: 0; }
4941
+ .has-data-[slot=card-action]:grid-cols-[1fr_auto]:has([data-slot="card-action"]) { grid-template-columns: 1fr auto; }
4942
+ .has-data-[slot=card-description]:grid-rows-[auto_auto]:has([data-slot="card-description"]) { grid-template-rows: auto auto; }
4943
+ .has-[>img:first-child]:pt-0:has(>img:first-child) { padding-top: 0; }
4944
+ .has-aria-expanded:bg-muted-50:has([aria-expanded="true"]) { background-color: rgba(32, 36, 40, 0.5); }
4945
+
4946
+ /* Group selectors */
4947
+ .group:hover .group-hover:opacity-100 { opacity: 1; }
4948
+
4949
+ /* Complex child selectors */
4950
+ .[&_svg]:pointer-events-none svg { pointer-events: none; }
4951
+ .[&_svg]:shrink-0 svg { flex-shrink: 0; }
4952
+ .[&_svg]:size-3 svg { width: 0.75rem; height: 0.75rem; }
4953
+ .[&_svg]:size-4 svg { width: 1rem; height: 1rem; }
4954
+ .[&_svg]:text-muted-foreground svg { color: var(--muted-foreground); }
4955
+ .[&_svg:not([class*='size-'])]:size-4 svg:not([class*="size-"]) { width: 1rem; height: 1rem; }
4956
+ .[&>svg:not([class*='size-'])]:size-4 > svg:not([class*="size-"]) { width: 1rem; height: 1rem; }
4957
+ .[&>svg]:h-2_5 > svg { height: 0.625rem; }
4958
+ .[&>svg]:w-2_5 > svg { width: 0.625rem; }
4959
+ .[&>svg]:h-3 > svg { height: 0.75rem; }
4960
+ .[&>svg]:w-3 > svg { width: 0.75rem; }
4961
+ .[&>svg]:text-muted-foreground > svg { color: var(--muted-foreground); }
4962
+ .[&_p:not(:last-child)]:mb-4 p:not(:last-child) { margin-bottom: 1rem; }
4963
+ .[&_a]:underline a { text-decoration-line: underline; }
4964
+ .[&_a]:underline-offset-3 a { text-underline-offset: 3px; }
4965
+ .[&_a]:hover:text-foreground a:hover { color: var(--foreground); }
4966
+
4967
+ /* Responsive variants */
4968
+ @media (min-width: 640px) {
4969
+ .sm:flex { display: flex; }
4970
+ .sm:grid { display: grid; }
4971
+ .sm:hidden { display: none; }
4972
+ .sm:w-auto { width: auto; }
4973
+ .sm:max-w-sm { max-width: 24rem; }
4974
+ .sm:flex-row { flex-direction: row; }
4975
+ .sm:flex-col { flex-direction: column; }
4976
+ .sm:justify-end { justify-content: flex-end; }
4977
+ .sm:text-left { text-align: left; }
4978
+ .sm:block { display: block; }
4979
+ .sm:gap-3 { gap: 0.75rem; }
4980
+ .sm:rounded-lg { border-radius: var(--radius-lg); }
4981
+ .sm:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
4982
+ .sm:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
4983
+ .sm:p-4 { padding: 1rem; }
4984
+ .sm:pr-1_5 { padding-right: 0.375rem; }
4985
+ .sm:pl-1_5 { padding-left: 0.375rem; }
4986
+ }
4987
+
4988
+ @media (min-width: 768px) {
4989
+ .md:absolute { position: absolute; }
4990
+ .md:flex-row { flex-direction: row; }
4991
+ .md:w-auto { width: auto; }
4992
+ .md:text-pretty { text-wrap: pretty; }
4993
+ .md:gap-0_5 { gap: 0.125rem; }
4994
+ .md:text-left { text-align: left; }
4995
+ }
4996
+
4997
+ @media (min-width: 1024px) {
4998
+ .lg:flex { display: flex; }
4999
+ .lg:flex-row { flex-direction: row; }
5000
+ .lg:w-[400px] { width: 400px; }
5001
+ .lg:w-[420px] { width: 420px; }
5002
+ }
5003
+
5004
+ /* In-data selectors */
5005
+ .in-data-[slot=card-content]:bg-transparent[data-slot="card-content"] { background-color: transparent; }
5006
+ .in-data-[slot=popover-content]:bg-transparent[data-slot="popover-content"] { background-color: transparent; }
5007
+ .in-data-[slot=dialog-content]:rounded-lg[data-slot="dialog-content"] { border-radius: var(--radius-lg); }
5008
+ .in-data-[slot=combobox-content]:focus-within:border-inherit[data-slot="combobox-content"]:focus-within { border-color: inherit; }
5009
+ .in-data-[slot=combobox-content]:focus-within:ring-0[data-slot="combobox-content"]:focus-within { box-shadow: none; }
5010
+
5011
+ /* Formant Animation Utilities */
4029
5012
  @keyframes fadeUp {
4030
5013
  from { opacity: 0; transform: translateY(24px); }
4031
5014
  to { opacity: 1; transform: translateY(0); }
@@ -4035,6 +5018,7 @@ code, pre, .font-mono {
4035
5018
  animation: fadeUp 0.7s ease forwards;
4036
5019
  }
4037
5020
 
5021
+ /* Formant Section Label Style */
4038
5022
  .section-label {
4039
5023
  font-family: 'JetBrains Mono', monospace;
4040
5024
  font-size: 10px;
@@ -4054,19 +5038,49 @@ code, pre, .font-mono {
4054
5038
  background: #E8AB7F;
4055
5039
  }
4056
5040
 
5041
+ /* Custom scrollbar for dark theme */
4057
5042
  ::-webkit-scrollbar { width: 8px; height: 8px; }
4058
5043
  ::-webkit-scrollbar-track { background: #0A0F11; }
4059
5044
  ::-webkit-scrollbar-thumb { background: #4B5E53; border-radius: 4px; }
4060
5045
  ::-webkit-scrollbar-thumb:hover { background: #ACC3B3; }
5046
+
5047
+ /* Origin utilities */
5048
+ .origin-(--radix-context-menu-content-transform-origin) { transform-origin: var(--radix-context-menu-content-transform-origin); }
5049
+ .origin-(--radix-dropdown-menu-content-transform-origin) { transform-origin: var(--radix-dropdown-menu-content-transform-origin); }
5050
+ .origin-(--radix-hover-card-content-transform-origin) { transform-origin: var(--radix-hover-card-content-transform-origin); }
5051
+ .origin-(--radix-popover-content-transform-origin) { transform-origin: var(--radix-popover-content-transform-origin); }
5052
+ .origin-(--radix-select-content-transform-origin) { transform-origin: var(--radix-select-content-transform-origin); }
5053
+ .origin-top-center { transform-origin: top center; }
5054
+
5055
+ /* Utility for height with CSS variable */
5056
+ .h-(--radix-accordion-content-height) { height: var(--radix-accordion-content-height); }
5057
+
5058
+ /* Size with CSS variable */
5059
+ .size-(--cell-size) { width: var(--cell-size); height: var(--cell-size); }
5060
+
5061
+ /* Border radius with CSS variable */
5062
+ .rounded-(--cell-radius) { border-radius: var(--cell-radius); }
5063
+
5064
+ /* Specific component utility overrides */
5065
+ .bg-blend-color { background-blend-mode: color; }
5066
+ .mix-blend-darken { mix-blend-mode: darken; }
5067
+ .mix-blend-lighten { mix-blend-mode: lighten; }
5068
+
5069
+ /* Additional specific styles */
5070
+ @keyframes slideInFromTop { from { transform: translateY(-100%); } to { transform: translateY(0); } }
5071
+ @keyframes slideInFromBottom { from { transform: translateY(100%); } to { transform: translateY(0); } }
5072
+ @keyframes slideInFromLeft { from { transform: translateX(-100%); } to { transform: translateX(0); } }
5073
+ @keyframes slideInFromRight { from { transform: translateX(100%); } to { transform: translateX(0); } }
4061
5074
  `;
5075
+ var FORMANT_COMPLETE_CSS = FORMANT_UTILITY_CSS + FORMANT_UTILITY_CSS_PART2 + FORMANT_UTILITY_CSS_PART3;
4062
5076
  function FormantAesthetics({ children }) {
4063
5077
  return /* @__PURE__ */ jsxs(ThemeProvider, { children: [
4064
5078
  /* @__PURE__ */ jsx("link", { rel: "stylesheet", href: FORMANT_FONTS }),
4065
- /* @__PURE__ */ jsx("style", { dangerouslySetInnerHTML: { __html: FORMANT_THEME_CSS } }),
5079
+ /* @__PURE__ */ jsx("style", { dangerouslySetInnerHTML: { __html: FORMANT_COMPLETE_CSS } }),
4066
5080
  children
4067
5081
  ] });
4068
5082
  }
4069
5083
 
4070
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FormantAesthetics, FormantLogo, FormantLogoWithText, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator2 as Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Slider, Toaster as Sonner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants };
5084
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FORMANT_COMPLETE_CSS, FORMANT_FONTS, FormantAesthetics, FormantLogo, FormantLogoWithText, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator2 as Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Skeleton, Slider, Toaster as Sonner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThemeProvider, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants };
4071
5085
  //# sourceMappingURL=index.js.map
4072
5086
  //# sourceMappingURL=index.js.map