@supernova-studio/client 1.93.0 → 1.94.1

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.d.mts CHANGED
@@ -222071,17 +222071,15 @@ declare const DTOForgeProjectContextV2: z.ZodObject<{
222071
222071
  type DTOForgeProjectContextV2 = z.infer<typeof DTOForgeProjectContextV2>;
222072
222072
  declare const DTOForgeThemeKnownPreset: z.ZodEnum<["Default", "Airbnb", "Spotify", "Windows98"]>;
222073
222073
  type DTOForgeThemeKnownPreset = z.infer<typeof DTOForgeThemeKnownPreset>;
222074
- declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
222075
- id: z.ZodString;
222074
+ declare const DTOForgeProjectContextCreateV2: z.ZodEffects<z.ZodObject<{
222076
222075
  name: z.ZodString;
222076
+ description: z.ZodOptional<z.ZodString>;
222077
222077
  workspaceId: z.ZodString;
222078
222078
  designSystemId: z.ZodOptional<z.ZodString>;
222079
222079
  brandId: z.ZodOptional<z.ZodString>;
222080
222080
  defaultTokenThemeSetId: z.ZodOptional<z.ZodString>;
222081
- description: z.ZodOptional<z.ZodString>;
222082
222081
  productContext: z.ZodOptional<z.ZodString>;
222083
222082
  additionalContext: z.ZodOptional<z.ZodString>;
222084
- isArchived: z.ZodBoolean;
222085
222083
  themePreset: z.ZodOptional<z.ZodString>;
222086
222084
  tokenThemeSets: z.ZodOptional<z.ZodArray<z.ZodObject<{
222087
222085
  id: z.ZodString;
@@ -222096,24 +222094,19 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
222096
222094
  name: string;
222097
222095
  tokenThemeIds: string[];
222098
222096
  }>, "many">>;
222099
- componentSet: z.ZodObject<{
222100
- type: z.ZodEnum<["Shadcn"]>;
222101
- }, "strip", z.ZodTypeAny, {
222102
- type: "Shadcn";
222103
- }, {
222104
- type: "Shadcn";
222105
- }>;
222106
- iconSet: z.ZodObject<{
222107
- type: z.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
222108
- variant: z.ZodOptional<z.ZodString>;
222097
+ sandboxTemplate: z.ZodOptional<z.ZodObject<{
222098
+ id: z.ZodString;
222099
+ version: z.ZodString;
222109
222100
  }, "strip", z.ZodTypeAny, {
222110
- type: "Phosphor" | "Lucide" | "Tabler";
222111
- variant?: string | undefined;
222101
+ id: string;
222102
+ version: string;
222112
222103
  }, {
222113
- type: "Phosphor" | "Lucide" | "Tabler";
222114
- variant?: string | undefined;
222115
- }>;
222116
- theme: z.ZodObject<{
222104
+ id: string;
222105
+ version: string;
222106
+ }>>;
222107
+ } & {
222108
+ thumbnailFileId: z.ZodOptional<z.ZodString>;
222109
+ theme: z.ZodOptional<z.ZodObject<{
222117
222110
  background: z.ZodObject<{
222118
222111
  aliasTo: z.ZodEffects<z.ZodNullable<z.ZodOptional<z.ZodString>>, string | undefined, string | null | undefined>;
222119
222112
  } & {
@@ -228696,76 +228689,28 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
228696
228689
  }[] | null | undefined;
228697
228690
  aliasTo?: string | null | undefined;
228698
228691
  };
228699
- }>;
228700
- createdAt: z.ZodDate;
228701
- updatedAt: z.ZodDate;
228702
- thumbnail: z.ZodOptional<z.ZodObject<Pick<{
228703
- id: z.ZodString;
228704
- name: z.ZodString;
228705
- deduplicationKey: z.ZodString;
228706
- pendingUpload: z.ZodOptional<z.ZodBoolean>;
228707
- storagePath: z.ZodString;
228708
- url: z.ZodString;
228709
- size: z.ZodNumber;
228710
- source: z.ZodOptional<z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
228711
- type: z.ZodLiteral<"UserUpload">;
228712
- userId: z.ZodString;
228713
- }, "strip", z.ZodTypeAny, {
228714
- type: "UserUpload";
228715
- userId: string;
228716
- }, {
228717
- type: "UserUpload";
228718
- userId: string;
228719
- }>, z.ZodObject<{
228720
- type: z.ZodLiteral<"Figma">;
228721
- renderMode: z.ZodEnum<["Image", "HTML", "JSON"]>;
228722
- }, "strip", z.ZodTypeAny, {
228723
- type: "Figma";
228724
- renderMode: "Image" | "HTML" | "JSON";
228725
- }, {
228726
- type: "Figma";
228727
- renderMode: "Image" | "HTML" | "JSON";
228728
- }>]>>;
228729
- }, "id" | "source" | "url"> & {
228730
- name: z.ZodOptional<z.ZodString>;
228692
+ }>>;
228693
+ iconSet: z.ZodOptional<z.ZodObject<{
228694
+ type: z.ZodEnum<["Phosphor", "Lucide", "Tabler"]>;
228695
+ variant: z.ZodOptional<z.ZodString>;
228731
228696
  }, "strip", z.ZodTypeAny, {
228732
- id: string;
228733
- url: string;
228734
- name?: string | undefined;
228735
- source?: {
228736
- type: "UserUpload";
228737
- userId: string;
228738
- } | {
228739
- type: "Figma";
228740
- renderMode: "Image" | "HTML" | "JSON";
228741
- } | undefined;
228697
+ type: "Phosphor" | "Lucide" | "Tabler";
228698
+ variant?: string | undefined;
228742
228699
  }, {
228743
- id: string;
228744
- url: string;
228745
- name?: string | undefined;
228746
- source?: {
228747
- type: "UserUpload";
228748
- userId: string;
228749
- } | {
228750
- type: "Figma";
228751
- renderMode: "Image" | "HTML" | "JSON";
228752
- } | undefined;
228700
+ type: "Phosphor" | "Lucide" | "Tabler";
228701
+ variant?: string | undefined;
228753
228702
  }>>;
228754
- sandboxTemplate: z.ZodOptional<z.ZodObject<{
228755
- id: z.ZodString;
228756
- version: z.ZodString;
228703
+ componentSet: z.ZodOptional<z.ZodObject<{
228704
+ type: z.ZodEnum<["Shadcn"]>;
228757
228705
  }, "strip", z.ZodTypeAny, {
228758
- id: string;
228759
- version: string;
228706
+ type: "Shadcn";
228760
228707
  }, {
228761
- id: string;
228762
- version: string;
228708
+ type: "Shadcn";
228763
228709
  }>>;
228764
- }, "id" | "createdAt" | "updatedAt" | "thumbnail" | "isArchived"> & {
228765
- thumbnailFileId: z.ZodOptional<z.ZodString>;
228766
228710
  }, "strip", z.ZodTypeAny, {
228767
228711
  name: string;
228768
- theme: {
228712
+ workspaceId: string;
228713
+ theme?: {
228769
228714
  card: {
228770
228715
  value?: {
228771
228716
  color: string | {
@@ -229712,15 +229657,7 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
229712
229657
  }[] | undefined;
229713
229658
  aliasTo?: string | undefined;
229714
229659
  };
229715
- };
229716
- workspaceId: string;
229717
- componentSet: {
229718
- type: "Shadcn";
229719
- };
229720
- iconSet: {
229721
- type: "Phosphor" | "Lucide" | "Tabler";
229722
- variant?: string | undefined;
229723
- };
229660
+ } | undefined;
229724
229661
  description?: string | undefined;
229725
229662
  designSystemId?: string | undefined;
229726
229663
  brandId?: string | undefined;
@@ -229733,6 +229670,13 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
229733
229670
  name: string;
229734
229671
  tokenThemeIds: string[];
229735
229672
  }[] | undefined;
229673
+ componentSet?: {
229674
+ type: "Shadcn";
229675
+ } | undefined;
229676
+ iconSet?: {
229677
+ type: "Phosphor" | "Lucide" | "Tabler";
229678
+ variant?: string | undefined;
229679
+ } | undefined;
229736
229680
  sandboxTemplate?: {
229737
229681
  id: string;
229738
229682
  version: string;
@@ -229740,7 +229684,8 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
229740
229684
  thumbnailFileId?: string | undefined;
229741
229685
  }, {
229742
229686
  name: string;
229743
- theme: {
229687
+ workspaceId: string;
229688
+ theme?: {
229744
229689
  card: {
229745
229690
  value?: {
229746
229691
  color: string | {
@@ -230687,15 +230632,7 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
230687
230632
  }[] | null | undefined;
230688
230633
  aliasTo?: string | null | undefined;
230689
230634
  };
230690
- };
230691
- workspaceId: string;
230692
- componentSet: {
230693
- type: "Shadcn";
230694
- };
230695
- iconSet: {
230696
- type: "Phosphor" | "Lucide" | "Tabler";
230697
- variant?: string | undefined;
230698
- };
230635
+ } | undefined;
230699
230636
  description?: string | undefined;
230700
230637
  designSystemId?: string | undefined;
230701
230638
  brandId?: string | undefined;
@@ -230708,6 +230645,1963 @@ declare const DTOForgeProjectContextCreateV2: z.ZodObject<Omit<{
230708
230645
  name: string;
230709
230646
  tokenThemeIds: string[];
230710
230647
  }[] | undefined;
230648
+ componentSet?: {
230649
+ type: "Shadcn";
230650
+ } | undefined;
230651
+ iconSet?: {
230652
+ type: "Phosphor" | "Lucide" | "Tabler";
230653
+ variant?: string | undefined;
230654
+ } | undefined;
230655
+ sandboxTemplate?: {
230656
+ id: string;
230657
+ version: string;
230658
+ } | undefined;
230659
+ thumbnailFileId?: string | undefined;
230660
+ }>, {
230661
+ name: string;
230662
+ workspaceId: string;
230663
+ theme?: {
230664
+ card: {
230665
+ value?: {
230666
+ color: string | {
230667
+ aliasTo?: string | undefined;
230668
+ };
230669
+ opacity: {
230670
+ value?: {
230671
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230672
+ measure: number;
230673
+ } | undefined;
230674
+ aliasTo?: string | undefined;
230675
+ };
230676
+ } | undefined;
230677
+ aliasTo?: string | undefined;
230678
+ };
230679
+ radius: {
230680
+ value?: {
230681
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230682
+ measure: number;
230683
+ } | undefined;
230684
+ aliasTo?: string | undefined;
230685
+ };
230686
+ fontFamily: {
230687
+ value?: string | undefined;
230688
+ aliasTo?: string | undefined;
230689
+ };
230690
+ border: {
230691
+ value?: {
230692
+ color: string | {
230693
+ aliasTo?: string | undefined;
230694
+ };
230695
+ opacity: {
230696
+ value?: {
230697
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230698
+ measure: number;
230699
+ } | undefined;
230700
+ aliasTo?: string | undefined;
230701
+ };
230702
+ } | undefined;
230703
+ aliasTo?: string | undefined;
230704
+ };
230705
+ sidebar: {
230706
+ value?: {
230707
+ color: string | {
230708
+ aliasTo?: string | undefined;
230709
+ };
230710
+ opacity: {
230711
+ value?: {
230712
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230713
+ measure: number;
230714
+ } | undefined;
230715
+ aliasTo?: string | undefined;
230716
+ };
230717
+ } | undefined;
230718
+ aliasTo?: string | undefined;
230719
+ };
230720
+ input: {
230721
+ value?: {
230722
+ color: string | {
230723
+ aliasTo?: string | undefined;
230724
+ };
230725
+ opacity: {
230726
+ value?: {
230727
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230728
+ measure: number;
230729
+ } | undefined;
230730
+ aliasTo?: string | undefined;
230731
+ };
230732
+ } | undefined;
230733
+ aliasTo?: string | undefined;
230734
+ };
230735
+ background: {
230736
+ value?: {
230737
+ color: string | {
230738
+ aliasTo?: string | undefined;
230739
+ };
230740
+ opacity: {
230741
+ value?: {
230742
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230743
+ measure: number;
230744
+ } | undefined;
230745
+ aliasTo?: string | undefined;
230746
+ };
230747
+ } | undefined;
230748
+ aliasTo?: string | undefined;
230749
+ };
230750
+ foreground: {
230751
+ value?: {
230752
+ color: string | {
230753
+ aliasTo?: string | undefined;
230754
+ };
230755
+ opacity: {
230756
+ value?: {
230757
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230758
+ measure: number;
230759
+ } | undefined;
230760
+ aliasTo?: string | undefined;
230761
+ };
230762
+ } | undefined;
230763
+ aliasTo?: string | undefined;
230764
+ };
230765
+ cardForeground: {
230766
+ value?: {
230767
+ color: string | {
230768
+ aliasTo?: string | undefined;
230769
+ };
230770
+ opacity: {
230771
+ value?: {
230772
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230773
+ measure: number;
230774
+ } | undefined;
230775
+ aliasTo?: string | undefined;
230776
+ };
230777
+ } | undefined;
230778
+ aliasTo?: string | undefined;
230779
+ };
230780
+ popover: {
230781
+ value?: {
230782
+ color: string | {
230783
+ aliasTo?: string | undefined;
230784
+ };
230785
+ opacity: {
230786
+ value?: {
230787
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230788
+ measure: number;
230789
+ } | undefined;
230790
+ aliasTo?: string | undefined;
230791
+ };
230792
+ } | undefined;
230793
+ aliasTo?: string | undefined;
230794
+ };
230795
+ popoverForeground: {
230796
+ value?: {
230797
+ color: string | {
230798
+ aliasTo?: string | undefined;
230799
+ };
230800
+ opacity: {
230801
+ value?: {
230802
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230803
+ measure: number;
230804
+ } | undefined;
230805
+ aliasTo?: string | undefined;
230806
+ };
230807
+ } | undefined;
230808
+ aliasTo?: string | undefined;
230809
+ };
230810
+ primary: {
230811
+ value?: {
230812
+ color: string | {
230813
+ aliasTo?: string | undefined;
230814
+ };
230815
+ opacity: {
230816
+ value?: {
230817
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230818
+ measure: number;
230819
+ } | undefined;
230820
+ aliasTo?: string | undefined;
230821
+ };
230822
+ } | undefined;
230823
+ aliasTo?: string | undefined;
230824
+ };
230825
+ primaryForeground: {
230826
+ value?: {
230827
+ color: string | {
230828
+ aliasTo?: string | undefined;
230829
+ };
230830
+ opacity: {
230831
+ value?: {
230832
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230833
+ measure: number;
230834
+ } | undefined;
230835
+ aliasTo?: string | undefined;
230836
+ };
230837
+ } | undefined;
230838
+ aliasTo?: string | undefined;
230839
+ };
230840
+ secondary: {
230841
+ value?: {
230842
+ color: string | {
230843
+ aliasTo?: string | undefined;
230844
+ };
230845
+ opacity: {
230846
+ value?: {
230847
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230848
+ measure: number;
230849
+ } | undefined;
230850
+ aliasTo?: string | undefined;
230851
+ };
230852
+ } | undefined;
230853
+ aliasTo?: string | undefined;
230854
+ };
230855
+ secondaryForeground: {
230856
+ value?: {
230857
+ color: string | {
230858
+ aliasTo?: string | undefined;
230859
+ };
230860
+ opacity: {
230861
+ value?: {
230862
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230863
+ measure: number;
230864
+ } | undefined;
230865
+ aliasTo?: string | undefined;
230866
+ };
230867
+ } | undefined;
230868
+ aliasTo?: string | undefined;
230869
+ };
230870
+ muted: {
230871
+ value?: {
230872
+ color: string | {
230873
+ aliasTo?: string | undefined;
230874
+ };
230875
+ opacity: {
230876
+ value?: {
230877
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230878
+ measure: number;
230879
+ } | undefined;
230880
+ aliasTo?: string | undefined;
230881
+ };
230882
+ } | undefined;
230883
+ aliasTo?: string | undefined;
230884
+ };
230885
+ mutedForeground: {
230886
+ value?: {
230887
+ color: string | {
230888
+ aliasTo?: string | undefined;
230889
+ };
230890
+ opacity: {
230891
+ value?: {
230892
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230893
+ measure: number;
230894
+ } | undefined;
230895
+ aliasTo?: string | undefined;
230896
+ };
230897
+ } | undefined;
230898
+ aliasTo?: string | undefined;
230899
+ };
230900
+ accent: {
230901
+ value?: {
230902
+ color: string | {
230903
+ aliasTo?: string | undefined;
230904
+ };
230905
+ opacity: {
230906
+ value?: {
230907
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230908
+ measure: number;
230909
+ } | undefined;
230910
+ aliasTo?: string | undefined;
230911
+ };
230912
+ } | undefined;
230913
+ aliasTo?: string | undefined;
230914
+ };
230915
+ accentForeground: {
230916
+ value?: {
230917
+ color: string | {
230918
+ aliasTo?: string | undefined;
230919
+ };
230920
+ opacity: {
230921
+ value?: {
230922
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230923
+ measure: number;
230924
+ } | undefined;
230925
+ aliasTo?: string | undefined;
230926
+ };
230927
+ } | undefined;
230928
+ aliasTo?: string | undefined;
230929
+ };
230930
+ destructive: {
230931
+ value?: {
230932
+ color: string | {
230933
+ aliasTo?: string | undefined;
230934
+ };
230935
+ opacity: {
230936
+ value?: {
230937
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230938
+ measure: number;
230939
+ } | undefined;
230940
+ aliasTo?: string | undefined;
230941
+ };
230942
+ } | undefined;
230943
+ aliasTo?: string | undefined;
230944
+ };
230945
+ ring: {
230946
+ value?: {
230947
+ color: string | {
230948
+ aliasTo?: string | undefined;
230949
+ };
230950
+ opacity: {
230951
+ value?: {
230952
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230953
+ measure: number;
230954
+ } | undefined;
230955
+ aliasTo?: string | undefined;
230956
+ };
230957
+ } | undefined;
230958
+ aliasTo?: string | undefined;
230959
+ };
230960
+ chart1: {
230961
+ value?: {
230962
+ color: string | {
230963
+ aliasTo?: string | undefined;
230964
+ };
230965
+ opacity: {
230966
+ value?: {
230967
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230968
+ measure: number;
230969
+ } | undefined;
230970
+ aliasTo?: string | undefined;
230971
+ };
230972
+ } | undefined;
230973
+ aliasTo?: string | undefined;
230974
+ };
230975
+ chart2: {
230976
+ value?: {
230977
+ color: string | {
230978
+ aliasTo?: string | undefined;
230979
+ };
230980
+ opacity: {
230981
+ value?: {
230982
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230983
+ measure: number;
230984
+ } | undefined;
230985
+ aliasTo?: string | undefined;
230986
+ };
230987
+ } | undefined;
230988
+ aliasTo?: string | undefined;
230989
+ };
230990
+ chart3: {
230991
+ value?: {
230992
+ color: string | {
230993
+ aliasTo?: string | undefined;
230994
+ };
230995
+ opacity: {
230996
+ value?: {
230997
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
230998
+ measure: number;
230999
+ } | undefined;
231000
+ aliasTo?: string | undefined;
231001
+ };
231002
+ } | undefined;
231003
+ aliasTo?: string | undefined;
231004
+ };
231005
+ chart4: {
231006
+ value?: {
231007
+ color: string | {
231008
+ aliasTo?: string | undefined;
231009
+ };
231010
+ opacity: {
231011
+ value?: {
231012
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231013
+ measure: number;
231014
+ } | undefined;
231015
+ aliasTo?: string | undefined;
231016
+ };
231017
+ } | undefined;
231018
+ aliasTo?: string | undefined;
231019
+ };
231020
+ chart5: {
231021
+ value?: {
231022
+ color: string | {
231023
+ aliasTo?: string | undefined;
231024
+ };
231025
+ opacity: {
231026
+ value?: {
231027
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231028
+ measure: number;
231029
+ } | undefined;
231030
+ aliasTo?: string | undefined;
231031
+ };
231032
+ } | undefined;
231033
+ aliasTo?: string | undefined;
231034
+ };
231035
+ sidebarForeground: {
231036
+ value?: {
231037
+ color: string | {
231038
+ aliasTo?: string | undefined;
231039
+ };
231040
+ opacity: {
231041
+ value?: {
231042
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231043
+ measure: number;
231044
+ } | undefined;
231045
+ aliasTo?: string | undefined;
231046
+ };
231047
+ } | undefined;
231048
+ aliasTo?: string | undefined;
231049
+ };
231050
+ sidebarPrimary: {
231051
+ value?: {
231052
+ color: string | {
231053
+ aliasTo?: string | undefined;
231054
+ };
231055
+ opacity: {
231056
+ value?: {
231057
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231058
+ measure: number;
231059
+ } | undefined;
231060
+ aliasTo?: string | undefined;
231061
+ };
231062
+ } | undefined;
231063
+ aliasTo?: string | undefined;
231064
+ };
231065
+ sidebarPrimaryForeground: {
231066
+ value?: {
231067
+ color: string | {
231068
+ aliasTo?: string | undefined;
231069
+ };
231070
+ opacity: {
231071
+ value?: {
231072
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231073
+ measure: number;
231074
+ } | undefined;
231075
+ aliasTo?: string | undefined;
231076
+ };
231077
+ } | undefined;
231078
+ aliasTo?: string | undefined;
231079
+ };
231080
+ sidebarAccent: {
231081
+ value?: {
231082
+ color: string | {
231083
+ aliasTo?: string | undefined;
231084
+ };
231085
+ opacity: {
231086
+ value?: {
231087
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231088
+ measure: number;
231089
+ } | undefined;
231090
+ aliasTo?: string | undefined;
231091
+ };
231092
+ } | undefined;
231093
+ aliasTo?: string | undefined;
231094
+ };
231095
+ sidebarAccentForeground: {
231096
+ value?: {
231097
+ color: string | {
231098
+ aliasTo?: string | undefined;
231099
+ };
231100
+ opacity: {
231101
+ value?: {
231102
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231103
+ measure: number;
231104
+ } | undefined;
231105
+ aliasTo?: string | undefined;
231106
+ };
231107
+ } | undefined;
231108
+ aliasTo?: string | undefined;
231109
+ };
231110
+ sidebarBorder: {
231111
+ value?: {
231112
+ color: string | {
231113
+ aliasTo?: string | undefined;
231114
+ };
231115
+ opacity: {
231116
+ value?: {
231117
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231118
+ measure: number;
231119
+ } | undefined;
231120
+ aliasTo?: string | undefined;
231121
+ };
231122
+ } | undefined;
231123
+ aliasTo?: string | undefined;
231124
+ };
231125
+ sidebarRing: {
231126
+ value?: {
231127
+ color: string | {
231128
+ aliasTo?: string | undefined;
231129
+ };
231130
+ opacity: {
231131
+ value?: {
231132
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231133
+ measure: number;
231134
+ } | undefined;
231135
+ aliasTo?: string | undefined;
231136
+ };
231137
+ } | undefined;
231138
+ aliasTo?: string | undefined;
231139
+ };
231140
+ textXs: {
231141
+ value?: {
231142
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231143
+ measure: number;
231144
+ } | undefined;
231145
+ aliasTo?: string | undefined;
231146
+ };
231147
+ textSm: {
231148
+ value?: {
231149
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231150
+ measure: number;
231151
+ } | undefined;
231152
+ aliasTo?: string | undefined;
231153
+ };
231154
+ textBase: {
231155
+ value?: {
231156
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231157
+ measure: number;
231158
+ } | undefined;
231159
+ aliasTo?: string | undefined;
231160
+ };
231161
+ textLg: {
231162
+ value?: {
231163
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231164
+ measure: number;
231165
+ } | undefined;
231166
+ aliasTo?: string | undefined;
231167
+ };
231168
+ textXl: {
231169
+ value?: {
231170
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231171
+ measure: number;
231172
+ } | undefined;
231173
+ aliasTo?: string | undefined;
231174
+ };
231175
+ text2xl: {
231176
+ value?: {
231177
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231178
+ measure: number;
231179
+ } | undefined;
231180
+ aliasTo?: string | undefined;
231181
+ };
231182
+ text3xl: {
231183
+ value?: {
231184
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231185
+ measure: number;
231186
+ } | undefined;
231187
+ aliasTo?: string | undefined;
231188
+ };
231189
+ text4xl: {
231190
+ value?: {
231191
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231192
+ measure: number;
231193
+ } | undefined;
231194
+ aliasTo?: string | undefined;
231195
+ };
231196
+ text5xl: {
231197
+ value?: {
231198
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231199
+ measure: number;
231200
+ } | undefined;
231201
+ aliasTo?: string | undefined;
231202
+ };
231203
+ text6xl: {
231204
+ value?: {
231205
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231206
+ measure: number;
231207
+ } | undefined;
231208
+ aliasTo?: string | undefined;
231209
+ };
231210
+ text7xl: {
231211
+ value?: {
231212
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231213
+ measure: number;
231214
+ } | undefined;
231215
+ aliasTo?: string | undefined;
231216
+ };
231217
+ text8xl: {
231218
+ value?: {
231219
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231220
+ measure: number;
231221
+ } | undefined;
231222
+ aliasTo?: string | undefined;
231223
+ };
231224
+ text9xl: {
231225
+ value?: {
231226
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231227
+ measure: number;
231228
+ } | undefined;
231229
+ aliasTo?: string | undefined;
231230
+ };
231231
+ textXsLineHeight: {
231232
+ value?: {
231233
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231234
+ measure: number;
231235
+ } | undefined;
231236
+ aliasTo?: string | undefined;
231237
+ };
231238
+ textSmLineHeight: {
231239
+ value?: {
231240
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231241
+ measure: number;
231242
+ } | undefined;
231243
+ aliasTo?: string | undefined;
231244
+ };
231245
+ textBaseLineHeight: {
231246
+ value?: {
231247
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231248
+ measure: number;
231249
+ } | undefined;
231250
+ aliasTo?: string | undefined;
231251
+ };
231252
+ textLgLineHeight: {
231253
+ value?: {
231254
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231255
+ measure: number;
231256
+ } | undefined;
231257
+ aliasTo?: string | undefined;
231258
+ };
231259
+ textXlLineHeight: {
231260
+ value?: {
231261
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231262
+ measure: number;
231263
+ } | undefined;
231264
+ aliasTo?: string | undefined;
231265
+ };
231266
+ text2xlLineHeight: {
231267
+ value?: {
231268
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231269
+ measure: number;
231270
+ } | undefined;
231271
+ aliasTo?: string | undefined;
231272
+ };
231273
+ text3xlLineHeight: {
231274
+ value?: {
231275
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231276
+ measure: number;
231277
+ } | undefined;
231278
+ aliasTo?: string | undefined;
231279
+ };
231280
+ text4xlLineHeight: {
231281
+ value?: {
231282
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231283
+ measure: number;
231284
+ } | undefined;
231285
+ aliasTo?: string | undefined;
231286
+ };
231287
+ text5xlLineHeight: {
231288
+ value?: {
231289
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231290
+ measure: number;
231291
+ } | undefined;
231292
+ aliasTo?: string | undefined;
231293
+ };
231294
+ text6xlLineHeight: {
231295
+ value?: {
231296
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231297
+ measure: number;
231298
+ } | undefined;
231299
+ aliasTo?: string | undefined;
231300
+ };
231301
+ text7xlLineHeight: {
231302
+ value?: {
231303
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231304
+ measure: number;
231305
+ } | undefined;
231306
+ aliasTo?: string | undefined;
231307
+ };
231308
+ text8xlLineHeight: {
231309
+ value?: {
231310
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231311
+ measure: number;
231312
+ } | undefined;
231313
+ aliasTo?: string | undefined;
231314
+ };
231315
+ text9xlLineHeight: {
231316
+ value?: {
231317
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231318
+ measure: number;
231319
+ } | undefined;
231320
+ aliasTo?: string | undefined;
231321
+ };
231322
+ fontWeightThin: {
231323
+ value?: string | undefined;
231324
+ aliasTo?: string | undefined;
231325
+ };
231326
+ fontWeightExtralight: {
231327
+ value?: string | undefined;
231328
+ aliasTo?: string | undefined;
231329
+ };
231330
+ fontWeightLight: {
231331
+ value?: string | undefined;
231332
+ aliasTo?: string | undefined;
231333
+ };
231334
+ fontWeightNormal: {
231335
+ value?: string | undefined;
231336
+ aliasTo?: string | undefined;
231337
+ };
231338
+ fontWeightMedium: {
231339
+ value?: string | undefined;
231340
+ aliasTo?: string | undefined;
231341
+ };
231342
+ fontWeightSemibold: {
231343
+ value?: string | undefined;
231344
+ aliasTo?: string | undefined;
231345
+ };
231346
+ fontWeightBold: {
231347
+ value?: string | undefined;
231348
+ aliasTo?: string | undefined;
231349
+ };
231350
+ fontWeightExtrabold: {
231351
+ value?: string | undefined;
231352
+ aliasTo?: string | undefined;
231353
+ };
231354
+ fontWeightBlack: {
231355
+ value?: string | undefined;
231356
+ aliasTo?: string | undefined;
231357
+ };
231358
+ spacing: {
231359
+ value?: {
231360
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231361
+ measure: number;
231362
+ } | undefined;
231363
+ aliasTo?: string | undefined;
231364
+ };
231365
+ shadow2xs: {
231366
+ value?: {
231367
+ value?: {
231368
+ type: "Drop" | "Inner";
231369
+ color: {
231370
+ value?: {
231371
+ color: string | {
231372
+ aliasTo?: string | undefined;
231373
+ };
231374
+ opacity: {
231375
+ value?: {
231376
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231377
+ measure: number;
231378
+ } | undefined;
231379
+ aliasTo?: string | undefined;
231380
+ };
231381
+ } | undefined;
231382
+ aliasTo?: string | undefined;
231383
+ };
231384
+ radius: number;
231385
+ x: number;
231386
+ y: number;
231387
+ spread: number;
231388
+ opacity?: {
231389
+ value?: {
231390
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231391
+ measure: number;
231392
+ } | undefined;
231393
+ aliasTo?: string | undefined;
231394
+ } | undefined;
231395
+ } | undefined;
231396
+ aliasTo?: string | undefined;
231397
+ }[] | undefined;
231398
+ aliasTo?: string | undefined;
231399
+ };
231400
+ shadowXs: {
231401
+ value?: {
231402
+ value?: {
231403
+ type: "Drop" | "Inner";
231404
+ color: {
231405
+ value?: {
231406
+ color: string | {
231407
+ aliasTo?: string | undefined;
231408
+ };
231409
+ opacity: {
231410
+ value?: {
231411
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231412
+ measure: number;
231413
+ } | undefined;
231414
+ aliasTo?: string | undefined;
231415
+ };
231416
+ } | undefined;
231417
+ aliasTo?: string | undefined;
231418
+ };
231419
+ radius: number;
231420
+ x: number;
231421
+ y: number;
231422
+ spread: number;
231423
+ opacity?: {
231424
+ value?: {
231425
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231426
+ measure: number;
231427
+ } | undefined;
231428
+ aliasTo?: string | undefined;
231429
+ } | undefined;
231430
+ } | undefined;
231431
+ aliasTo?: string | undefined;
231432
+ }[] | undefined;
231433
+ aliasTo?: string | undefined;
231434
+ };
231435
+ shadowSm: {
231436
+ value?: {
231437
+ value?: {
231438
+ type: "Drop" | "Inner";
231439
+ color: {
231440
+ value?: {
231441
+ color: string | {
231442
+ aliasTo?: string | undefined;
231443
+ };
231444
+ opacity: {
231445
+ value?: {
231446
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231447
+ measure: number;
231448
+ } | undefined;
231449
+ aliasTo?: string | undefined;
231450
+ };
231451
+ } | undefined;
231452
+ aliasTo?: string | undefined;
231453
+ };
231454
+ radius: number;
231455
+ x: number;
231456
+ y: number;
231457
+ spread: number;
231458
+ opacity?: {
231459
+ value?: {
231460
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231461
+ measure: number;
231462
+ } | undefined;
231463
+ aliasTo?: string | undefined;
231464
+ } | undefined;
231465
+ } | undefined;
231466
+ aliasTo?: string | undefined;
231467
+ }[] | undefined;
231468
+ aliasTo?: string | undefined;
231469
+ };
231470
+ shadowMd: {
231471
+ value?: {
231472
+ value?: {
231473
+ type: "Drop" | "Inner";
231474
+ color: {
231475
+ value?: {
231476
+ color: string | {
231477
+ aliasTo?: string | undefined;
231478
+ };
231479
+ opacity: {
231480
+ value?: {
231481
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231482
+ measure: number;
231483
+ } | undefined;
231484
+ aliasTo?: string | undefined;
231485
+ };
231486
+ } | undefined;
231487
+ aliasTo?: string | undefined;
231488
+ };
231489
+ radius: number;
231490
+ x: number;
231491
+ y: number;
231492
+ spread: number;
231493
+ opacity?: {
231494
+ value?: {
231495
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231496
+ measure: number;
231497
+ } | undefined;
231498
+ aliasTo?: string | undefined;
231499
+ } | undefined;
231500
+ } | undefined;
231501
+ aliasTo?: string | undefined;
231502
+ }[] | undefined;
231503
+ aliasTo?: string | undefined;
231504
+ };
231505
+ shadowLg: {
231506
+ value?: {
231507
+ value?: {
231508
+ type: "Drop" | "Inner";
231509
+ color: {
231510
+ value?: {
231511
+ color: string | {
231512
+ aliasTo?: string | undefined;
231513
+ };
231514
+ opacity: {
231515
+ value?: {
231516
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231517
+ measure: number;
231518
+ } | undefined;
231519
+ aliasTo?: string | undefined;
231520
+ };
231521
+ } | undefined;
231522
+ aliasTo?: string | undefined;
231523
+ };
231524
+ radius: number;
231525
+ x: number;
231526
+ y: number;
231527
+ spread: number;
231528
+ opacity?: {
231529
+ value?: {
231530
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231531
+ measure: number;
231532
+ } | undefined;
231533
+ aliasTo?: string | undefined;
231534
+ } | undefined;
231535
+ } | undefined;
231536
+ aliasTo?: string | undefined;
231537
+ }[] | undefined;
231538
+ aliasTo?: string | undefined;
231539
+ };
231540
+ shadowXl: {
231541
+ value?: {
231542
+ value?: {
231543
+ type: "Drop" | "Inner";
231544
+ color: {
231545
+ value?: {
231546
+ color: string | {
231547
+ aliasTo?: string | undefined;
231548
+ };
231549
+ opacity: {
231550
+ value?: {
231551
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231552
+ measure: number;
231553
+ } | undefined;
231554
+ aliasTo?: string | undefined;
231555
+ };
231556
+ } | undefined;
231557
+ aliasTo?: string | undefined;
231558
+ };
231559
+ radius: number;
231560
+ x: number;
231561
+ y: number;
231562
+ spread: number;
231563
+ opacity?: {
231564
+ value?: {
231565
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231566
+ measure: number;
231567
+ } | undefined;
231568
+ aliasTo?: string | undefined;
231569
+ } | undefined;
231570
+ } | undefined;
231571
+ aliasTo?: string | undefined;
231572
+ }[] | undefined;
231573
+ aliasTo?: string | undefined;
231574
+ };
231575
+ shadow2xl: {
231576
+ value?: {
231577
+ value?: {
231578
+ type: "Drop" | "Inner";
231579
+ color: {
231580
+ value?: {
231581
+ color: string | {
231582
+ aliasTo?: string | undefined;
231583
+ };
231584
+ opacity: {
231585
+ value?: {
231586
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231587
+ measure: number;
231588
+ } | undefined;
231589
+ aliasTo?: string | undefined;
231590
+ };
231591
+ } | undefined;
231592
+ aliasTo?: string | undefined;
231593
+ };
231594
+ radius: number;
231595
+ x: number;
231596
+ y: number;
231597
+ spread: number;
231598
+ opacity?: {
231599
+ value?: {
231600
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231601
+ measure: number;
231602
+ } | undefined;
231603
+ aliasTo?: string | undefined;
231604
+ } | undefined;
231605
+ } | undefined;
231606
+ aliasTo?: string | undefined;
231607
+ }[] | undefined;
231608
+ aliasTo?: string | undefined;
231609
+ };
231610
+ } | undefined;
231611
+ description?: string | undefined;
231612
+ designSystemId?: string | undefined;
231613
+ brandId?: string | undefined;
231614
+ defaultTokenThemeSetId?: string | undefined;
231615
+ productContext?: string | undefined;
231616
+ additionalContext?: string | undefined;
231617
+ themePreset?: string | undefined;
231618
+ tokenThemeSets?: {
231619
+ id: string;
231620
+ name: string;
231621
+ tokenThemeIds: string[];
231622
+ }[] | undefined;
231623
+ componentSet?: {
231624
+ type: "Shadcn";
231625
+ } | undefined;
231626
+ iconSet?: {
231627
+ type: "Phosphor" | "Lucide" | "Tabler";
231628
+ variant?: string | undefined;
231629
+ } | undefined;
231630
+ sandboxTemplate?: {
231631
+ id: string;
231632
+ version: string;
231633
+ } | undefined;
231634
+ thumbnailFileId?: string | undefined;
231635
+ }, {
231636
+ name: string;
231637
+ workspaceId: string;
231638
+ theme?: {
231639
+ card: {
231640
+ value?: {
231641
+ color: string | {
231642
+ aliasTo?: string | null | undefined;
231643
+ };
231644
+ opacity: {
231645
+ value?: {
231646
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231647
+ measure: number;
231648
+ } | null | undefined;
231649
+ aliasTo?: string | null | undefined;
231650
+ };
231651
+ } | null | undefined;
231652
+ aliasTo?: string | null | undefined;
231653
+ };
231654
+ radius: {
231655
+ value?: {
231656
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231657
+ measure: number;
231658
+ } | null | undefined;
231659
+ aliasTo?: string | null | undefined;
231660
+ };
231661
+ fontFamily: {
231662
+ value?: string | null | undefined;
231663
+ aliasTo?: string | null | undefined;
231664
+ };
231665
+ border: {
231666
+ value?: {
231667
+ color: string | {
231668
+ aliasTo?: string | null | undefined;
231669
+ };
231670
+ opacity: {
231671
+ value?: {
231672
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231673
+ measure: number;
231674
+ } | null | undefined;
231675
+ aliasTo?: string | null | undefined;
231676
+ };
231677
+ } | null | undefined;
231678
+ aliasTo?: string | null | undefined;
231679
+ };
231680
+ sidebar: {
231681
+ value?: {
231682
+ color: string | {
231683
+ aliasTo?: string | null | undefined;
231684
+ };
231685
+ opacity: {
231686
+ value?: {
231687
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231688
+ measure: number;
231689
+ } | null | undefined;
231690
+ aliasTo?: string | null | undefined;
231691
+ };
231692
+ } | null | undefined;
231693
+ aliasTo?: string | null | undefined;
231694
+ };
231695
+ input: {
231696
+ value?: {
231697
+ color: string | {
231698
+ aliasTo?: string | null | undefined;
231699
+ };
231700
+ opacity: {
231701
+ value?: {
231702
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231703
+ measure: number;
231704
+ } | null | undefined;
231705
+ aliasTo?: string | null | undefined;
231706
+ };
231707
+ } | null | undefined;
231708
+ aliasTo?: string | null | undefined;
231709
+ };
231710
+ background: {
231711
+ value?: {
231712
+ color: string | {
231713
+ aliasTo?: string | null | undefined;
231714
+ };
231715
+ opacity: {
231716
+ value?: {
231717
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231718
+ measure: number;
231719
+ } | null | undefined;
231720
+ aliasTo?: string | null | undefined;
231721
+ };
231722
+ } | null | undefined;
231723
+ aliasTo?: string | null | undefined;
231724
+ };
231725
+ foreground: {
231726
+ value?: {
231727
+ color: string | {
231728
+ aliasTo?: string | null | undefined;
231729
+ };
231730
+ opacity: {
231731
+ value?: {
231732
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231733
+ measure: number;
231734
+ } | null | undefined;
231735
+ aliasTo?: string | null | undefined;
231736
+ };
231737
+ } | null | undefined;
231738
+ aliasTo?: string | null | undefined;
231739
+ };
231740
+ cardForeground: {
231741
+ value?: {
231742
+ color: string | {
231743
+ aliasTo?: string | null | undefined;
231744
+ };
231745
+ opacity: {
231746
+ value?: {
231747
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231748
+ measure: number;
231749
+ } | null | undefined;
231750
+ aliasTo?: string | null | undefined;
231751
+ };
231752
+ } | null | undefined;
231753
+ aliasTo?: string | null | undefined;
231754
+ };
231755
+ popover: {
231756
+ value?: {
231757
+ color: string | {
231758
+ aliasTo?: string | null | undefined;
231759
+ };
231760
+ opacity: {
231761
+ value?: {
231762
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231763
+ measure: number;
231764
+ } | null | undefined;
231765
+ aliasTo?: string | null | undefined;
231766
+ };
231767
+ } | null | undefined;
231768
+ aliasTo?: string | null | undefined;
231769
+ };
231770
+ popoverForeground: {
231771
+ value?: {
231772
+ color: string | {
231773
+ aliasTo?: string | null | undefined;
231774
+ };
231775
+ opacity: {
231776
+ value?: {
231777
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231778
+ measure: number;
231779
+ } | null | undefined;
231780
+ aliasTo?: string | null | undefined;
231781
+ };
231782
+ } | null | undefined;
231783
+ aliasTo?: string | null | undefined;
231784
+ };
231785
+ primary: {
231786
+ value?: {
231787
+ color: string | {
231788
+ aliasTo?: string | null | undefined;
231789
+ };
231790
+ opacity: {
231791
+ value?: {
231792
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231793
+ measure: number;
231794
+ } | null | undefined;
231795
+ aliasTo?: string | null | undefined;
231796
+ };
231797
+ } | null | undefined;
231798
+ aliasTo?: string | null | undefined;
231799
+ };
231800
+ primaryForeground: {
231801
+ value?: {
231802
+ color: string | {
231803
+ aliasTo?: string | null | undefined;
231804
+ };
231805
+ opacity: {
231806
+ value?: {
231807
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231808
+ measure: number;
231809
+ } | null | undefined;
231810
+ aliasTo?: string | null | undefined;
231811
+ };
231812
+ } | null | undefined;
231813
+ aliasTo?: string | null | undefined;
231814
+ };
231815
+ secondary: {
231816
+ value?: {
231817
+ color: string | {
231818
+ aliasTo?: string | null | undefined;
231819
+ };
231820
+ opacity: {
231821
+ value?: {
231822
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231823
+ measure: number;
231824
+ } | null | undefined;
231825
+ aliasTo?: string | null | undefined;
231826
+ };
231827
+ } | null | undefined;
231828
+ aliasTo?: string | null | undefined;
231829
+ };
231830
+ secondaryForeground: {
231831
+ value?: {
231832
+ color: string | {
231833
+ aliasTo?: string | null | undefined;
231834
+ };
231835
+ opacity: {
231836
+ value?: {
231837
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231838
+ measure: number;
231839
+ } | null | undefined;
231840
+ aliasTo?: string | null | undefined;
231841
+ };
231842
+ } | null | undefined;
231843
+ aliasTo?: string | null | undefined;
231844
+ };
231845
+ muted: {
231846
+ value?: {
231847
+ color: string | {
231848
+ aliasTo?: string | null | undefined;
231849
+ };
231850
+ opacity: {
231851
+ value?: {
231852
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231853
+ measure: number;
231854
+ } | null | undefined;
231855
+ aliasTo?: string | null | undefined;
231856
+ };
231857
+ } | null | undefined;
231858
+ aliasTo?: string | null | undefined;
231859
+ };
231860
+ mutedForeground: {
231861
+ value?: {
231862
+ color: string | {
231863
+ aliasTo?: string | null | undefined;
231864
+ };
231865
+ opacity: {
231866
+ value?: {
231867
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231868
+ measure: number;
231869
+ } | null | undefined;
231870
+ aliasTo?: string | null | undefined;
231871
+ };
231872
+ } | null | undefined;
231873
+ aliasTo?: string | null | undefined;
231874
+ };
231875
+ accent: {
231876
+ value?: {
231877
+ color: string | {
231878
+ aliasTo?: string | null | undefined;
231879
+ };
231880
+ opacity: {
231881
+ value?: {
231882
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231883
+ measure: number;
231884
+ } | null | undefined;
231885
+ aliasTo?: string | null | undefined;
231886
+ };
231887
+ } | null | undefined;
231888
+ aliasTo?: string | null | undefined;
231889
+ };
231890
+ accentForeground: {
231891
+ value?: {
231892
+ color: string | {
231893
+ aliasTo?: string | null | undefined;
231894
+ };
231895
+ opacity: {
231896
+ value?: {
231897
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231898
+ measure: number;
231899
+ } | null | undefined;
231900
+ aliasTo?: string | null | undefined;
231901
+ };
231902
+ } | null | undefined;
231903
+ aliasTo?: string | null | undefined;
231904
+ };
231905
+ destructive: {
231906
+ value?: {
231907
+ color: string | {
231908
+ aliasTo?: string | null | undefined;
231909
+ };
231910
+ opacity: {
231911
+ value?: {
231912
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231913
+ measure: number;
231914
+ } | null | undefined;
231915
+ aliasTo?: string | null | undefined;
231916
+ };
231917
+ } | null | undefined;
231918
+ aliasTo?: string | null | undefined;
231919
+ };
231920
+ ring: {
231921
+ value?: {
231922
+ color: string | {
231923
+ aliasTo?: string | null | undefined;
231924
+ };
231925
+ opacity: {
231926
+ value?: {
231927
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231928
+ measure: number;
231929
+ } | null | undefined;
231930
+ aliasTo?: string | null | undefined;
231931
+ };
231932
+ } | null | undefined;
231933
+ aliasTo?: string | null | undefined;
231934
+ };
231935
+ chart1: {
231936
+ value?: {
231937
+ color: string | {
231938
+ aliasTo?: string | null | undefined;
231939
+ };
231940
+ opacity: {
231941
+ value?: {
231942
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231943
+ measure: number;
231944
+ } | null | undefined;
231945
+ aliasTo?: string | null | undefined;
231946
+ };
231947
+ } | null | undefined;
231948
+ aliasTo?: string | null | undefined;
231949
+ };
231950
+ chart2: {
231951
+ value?: {
231952
+ color: string | {
231953
+ aliasTo?: string | null | undefined;
231954
+ };
231955
+ opacity: {
231956
+ value?: {
231957
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231958
+ measure: number;
231959
+ } | null | undefined;
231960
+ aliasTo?: string | null | undefined;
231961
+ };
231962
+ } | null | undefined;
231963
+ aliasTo?: string | null | undefined;
231964
+ };
231965
+ chart3: {
231966
+ value?: {
231967
+ color: string | {
231968
+ aliasTo?: string | null | undefined;
231969
+ };
231970
+ opacity: {
231971
+ value?: {
231972
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231973
+ measure: number;
231974
+ } | null | undefined;
231975
+ aliasTo?: string | null | undefined;
231976
+ };
231977
+ } | null | undefined;
231978
+ aliasTo?: string | null | undefined;
231979
+ };
231980
+ chart4: {
231981
+ value?: {
231982
+ color: string | {
231983
+ aliasTo?: string | null | undefined;
231984
+ };
231985
+ opacity: {
231986
+ value?: {
231987
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
231988
+ measure: number;
231989
+ } | null | undefined;
231990
+ aliasTo?: string | null | undefined;
231991
+ };
231992
+ } | null | undefined;
231993
+ aliasTo?: string | null | undefined;
231994
+ };
231995
+ chart5: {
231996
+ value?: {
231997
+ color: string | {
231998
+ aliasTo?: string | null | undefined;
231999
+ };
232000
+ opacity: {
232001
+ value?: {
232002
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232003
+ measure: number;
232004
+ } | null | undefined;
232005
+ aliasTo?: string | null | undefined;
232006
+ };
232007
+ } | null | undefined;
232008
+ aliasTo?: string | null | undefined;
232009
+ };
232010
+ sidebarForeground: {
232011
+ value?: {
232012
+ color: string | {
232013
+ aliasTo?: string | null | undefined;
232014
+ };
232015
+ opacity: {
232016
+ value?: {
232017
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232018
+ measure: number;
232019
+ } | null | undefined;
232020
+ aliasTo?: string | null | undefined;
232021
+ };
232022
+ } | null | undefined;
232023
+ aliasTo?: string | null | undefined;
232024
+ };
232025
+ sidebarPrimary: {
232026
+ value?: {
232027
+ color: string | {
232028
+ aliasTo?: string | null | undefined;
232029
+ };
232030
+ opacity: {
232031
+ value?: {
232032
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232033
+ measure: number;
232034
+ } | null | undefined;
232035
+ aliasTo?: string | null | undefined;
232036
+ };
232037
+ } | null | undefined;
232038
+ aliasTo?: string | null | undefined;
232039
+ };
232040
+ sidebarPrimaryForeground: {
232041
+ value?: {
232042
+ color: string | {
232043
+ aliasTo?: string | null | undefined;
232044
+ };
232045
+ opacity: {
232046
+ value?: {
232047
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232048
+ measure: number;
232049
+ } | null | undefined;
232050
+ aliasTo?: string | null | undefined;
232051
+ };
232052
+ } | null | undefined;
232053
+ aliasTo?: string | null | undefined;
232054
+ };
232055
+ sidebarAccent: {
232056
+ value?: {
232057
+ color: string | {
232058
+ aliasTo?: string | null | undefined;
232059
+ };
232060
+ opacity: {
232061
+ value?: {
232062
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232063
+ measure: number;
232064
+ } | null | undefined;
232065
+ aliasTo?: string | null | undefined;
232066
+ };
232067
+ } | null | undefined;
232068
+ aliasTo?: string | null | undefined;
232069
+ };
232070
+ sidebarAccentForeground: {
232071
+ value?: {
232072
+ color: string | {
232073
+ aliasTo?: string | null | undefined;
232074
+ };
232075
+ opacity: {
232076
+ value?: {
232077
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232078
+ measure: number;
232079
+ } | null | undefined;
232080
+ aliasTo?: string | null | undefined;
232081
+ };
232082
+ } | null | undefined;
232083
+ aliasTo?: string | null | undefined;
232084
+ };
232085
+ sidebarBorder: {
232086
+ value?: {
232087
+ color: string | {
232088
+ aliasTo?: string | null | undefined;
232089
+ };
232090
+ opacity: {
232091
+ value?: {
232092
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232093
+ measure: number;
232094
+ } | null | undefined;
232095
+ aliasTo?: string | null | undefined;
232096
+ };
232097
+ } | null | undefined;
232098
+ aliasTo?: string | null | undefined;
232099
+ };
232100
+ sidebarRing: {
232101
+ value?: {
232102
+ color: string | {
232103
+ aliasTo?: string | null | undefined;
232104
+ };
232105
+ opacity: {
232106
+ value?: {
232107
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232108
+ measure: number;
232109
+ } | null | undefined;
232110
+ aliasTo?: string | null | undefined;
232111
+ };
232112
+ } | null | undefined;
232113
+ aliasTo?: string | null | undefined;
232114
+ };
232115
+ textXs: {
232116
+ value?: {
232117
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232118
+ measure: number;
232119
+ } | null | undefined;
232120
+ aliasTo?: string | null | undefined;
232121
+ };
232122
+ textSm: {
232123
+ value?: {
232124
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232125
+ measure: number;
232126
+ } | null | undefined;
232127
+ aliasTo?: string | null | undefined;
232128
+ };
232129
+ textBase: {
232130
+ value?: {
232131
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232132
+ measure: number;
232133
+ } | null | undefined;
232134
+ aliasTo?: string | null | undefined;
232135
+ };
232136
+ textLg: {
232137
+ value?: {
232138
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232139
+ measure: number;
232140
+ } | null | undefined;
232141
+ aliasTo?: string | null | undefined;
232142
+ };
232143
+ textXl: {
232144
+ value?: {
232145
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232146
+ measure: number;
232147
+ } | null | undefined;
232148
+ aliasTo?: string | null | undefined;
232149
+ };
232150
+ text2xl: {
232151
+ value?: {
232152
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232153
+ measure: number;
232154
+ } | null | undefined;
232155
+ aliasTo?: string | null | undefined;
232156
+ };
232157
+ text3xl: {
232158
+ value?: {
232159
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232160
+ measure: number;
232161
+ } | null | undefined;
232162
+ aliasTo?: string | null | undefined;
232163
+ };
232164
+ text4xl: {
232165
+ value?: {
232166
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232167
+ measure: number;
232168
+ } | null | undefined;
232169
+ aliasTo?: string | null | undefined;
232170
+ };
232171
+ text5xl: {
232172
+ value?: {
232173
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232174
+ measure: number;
232175
+ } | null | undefined;
232176
+ aliasTo?: string | null | undefined;
232177
+ };
232178
+ text6xl: {
232179
+ value?: {
232180
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232181
+ measure: number;
232182
+ } | null | undefined;
232183
+ aliasTo?: string | null | undefined;
232184
+ };
232185
+ text7xl: {
232186
+ value?: {
232187
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232188
+ measure: number;
232189
+ } | null | undefined;
232190
+ aliasTo?: string | null | undefined;
232191
+ };
232192
+ text8xl: {
232193
+ value?: {
232194
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232195
+ measure: number;
232196
+ } | null | undefined;
232197
+ aliasTo?: string | null | undefined;
232198
+ };
232199
+ text9xl: {
232200
+ value?: {
232201
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232202
+ measure: number;
232203
+ } | null | undefined;
232204
+ aliasTo?: string | null | undefined;
232205
+ };
232206
+ textXsLineHeight: {
232207
+ value?: {
232208
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232209
+ measure: number;
232210
+ } | null | undefined;
232211
+ aliasTo?: string | null | undefined;
232212
+ };
232213
+ textSmLineHeight: {
232214
+ value?: {
232215
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232216
+ measure: number;
232217
+ } | null | undefined;
232218
+ aliasTo?: string | null | undefined;
232219
+ };
232220
+ textBaseLineHeight: {
232221
+ value?: {
232222
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232223
+ measure: number;
232224
+ } | null | undefined;
232225
+ aliasTo?: string | null | undefined;
232226
+ };
232227
+ textLgLineHeight: {
232228
+ value?: {
232229
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232230
+ measure: number;
232231
+ } | null | undefined;
232232
+ aliasTo?: string | null | undefined;
232233
+ };
232234
+ textXlLineHeight: {
232235
+ value?: {
232236
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232237
+ measure: number;
232238
+ } | null | undefined;
232239
+ aliasTo?: string | null | undefined;
232240
+ };
232241
+ text2xlLineHeight: {
232242
+ value?: {
232243
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232244
+ measure: number;
232245
+ } | null | undefined;
232246
+ aliasTo?: string | null | undefined;
232247
+ };
232248
+ text3xlLineHeight: {
232249
+ value?: {
232250
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232251
+ measure: number;
232252
+ } | null | undefined;
232253
+ aliasTo?: string | null | undefined;
232254
+ };
232255
+ text4xlLineHeight: {
232256
+ value?: {
232257
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232258
+ measure: number;
232259
+ } | null | undefined;
232260
+ aliasTo?: string | null | undefined;
232261
+ };
232262
+ text5xlLineHeight: {
232263
+ value?: {
232264
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232265
+ measure: number;
232266
+ } | null | undefined;
232267
+ aliasTo?: string | null | undefined;
232268
+ };
232269
+ text6xlLineHeight: {
232270
+ value?: {
232271
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232272
+ measure: number;
232273
+ } | null | undefined;
232274
+ aliasTo?: string | null | undefined;
232275
+ };
232276
+ text7xlLineHeight: {
232277
+ value?: {
232278
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232279
+ measure: number;
232280
+ } | null | undefined;
232281
+ aliasTo?: string | null | undefined;
232282
+ };
232283
+ text8xlLineHeight: {
232284
+ value?: {
232285
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232286
+ measure: number;
232287
+ } | null | undefined;
232288
+ aliasTo?: string | null | undefined;
232289
+ };
232290
+ text9xlLineHeight: {
232291
+ value?: {
232292
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232293
+ measure: number;
232294
+ } | null | undefined;
232295
+ aliasTo?: string | null | undefined;
232296
+ };
232297
+ fontWeightThin: {
232298
+ value?: string | null | undefined;
232299
+ aliasTo?: string | null | undefined;
232300
+ };
232301
+ fontWeightExtralight: {
232302
+ value?: string | null | undefined;
232303
+ aliasTo?: string | null | undefined;
232304
+ };
232305
+ fontWeightLight: {
232306
+ value?: string | null | undefined;
232307
+ aliasTo?: string | null | undefined;
232308
+ };
232309
+ fontWeightNormal: {
232310
+ value?: string | null | undefined;
232311
+ aliasTo?: string | null | undefined;
232312
+ };
232313
+ fontWeightMedium: {
232314
+ value?: string | null | undefined;
232315
+ aliasTo?: string | null | undefined;
232316
+ };
232317
+ fontWeightSemibold: {
232318
+ value?: string | null | undefined;
232319
+ aliasTo?: string | null | undefined;
232320
+ };
232321
+ fontWeightBold: {
232322
+ value?: string | null | undefined;
232323
+ aliasTo?: string | null | undefined;
232324
+ };
232325
+ fontWeightExtrabold: {
232326
+ value?: string | null | undefined;
232327
+ aliasTo?: string | null | undefined;
232328
+ };
232329
+ fontWeightBlack: {
232330
+ value?: string | null | undefined;
232331
+ aliasTo?: string | null | undefined;
232332
+ };
232333
+ spacing: {
232334
+ value?: {
232335
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232336
+ measure: number;
232337
+ } | null | undefined;
232338
+ aliasTo?: string | null | undefined;
232339
+ };
232340
+ shadow2xs: {
232341
+ value?: {
232342
+ value?: {
232343
+ type: "Drop" | "Inner";
232344
+ color: {
232345
+ value?: {
232346
+ color: string | {
232347
+ aliasTo?: string | null | undefined;
232348
+ };
232349
+ opacity: {
232350
+ value?: {
232351
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232352
+ measure: number;
232353
+ } | null | undefined;
232354
+ aliasTo?: string | null | undefined;
232355
+ };
232356
+ } | null | undefined;
232357
+ aliasTo?: string | null | undefined;
232358
+ };
232359
+ radius: number;
232360
+ x: number;
232361
+ y: number;
232362
+ spread: number;
232363
+ opacity?: {
232364
+ value?: {
232365
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232366
+ measure: number;
232367
+ } | null | undefined;
232368
+ aliasTo?: string | null | undefined;
232369
+ } | undefined;
232370
+ } | null | undefined;
232371
+ aliasTo?: string | null | undefined;
232372
+ }[] | null | undefined;
232373
+ aliasTo?: string | null | undefined;
232374
+ };
232375
+ shadowXs: {
232376
+ value?: {
232377
+ value?: {
232378
+ type: "Drop" | "Inner";
232379
+ color: {
232380
+ value?: {
232381
+ color: string | {
232382
+ aliasTo?: string | null | undefined;
232383
+ };
232384
+ opacity: {
232385
+ value?: {
232386
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232387
+ measure: number;
232388
+ } | null | undefined;
232389
+ aliasTo?: string | null | undefined;
232390
+ };
232391
+ } | null | undefined;
232392
+ aliasTo?: string | null | undefined;
232393
+ };
232394
+ radius: number;
232395
+ x: number;
232396
+ y: number;
232397
+ spread: number;
232398
+ opacity?: {
232399
+ value?: {
232400
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232401
+ measure: number;
232402
+ } | null | undefined;
232403
+ aliasTo?: string | null | undefined;
232404
+ } | undefined;
232405
+ } | null | undefined;
232406
+ aliasTo?: string | null | undefined;
232407
+ }[] | null | undefined;
232408
+ aliasTo?: string | null | undefined;
232409
+ };
232410
+ shadowSm: {
232411
+ value?: {
232412
+ value?: {
232413
+ type: "Drop" | "Inner";
232414
+ color: {
232415
+ value?: {
232416
+ color: string | {
232417
+ aliasTo?: string | null | undefined;
232418
+ };
232419
+ opacity: {
232420
+ value?: {
232421
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232422
+ measure: number;
232423
+ } | null | undefined;
232424
+ aliasTo?: string | null | undefined;
232425
+ };
232426
+ } | null | undefined;
232427
+ aliasTo?: string | null | undefined;
232428
+ };
232429
+ radius: number;
232430
+ x: number;
232431
+ y: number;
232432
+ spread: number;
232433
+ opacity?: {
232434
+ value?: {
232435
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232436
+ measure: number;
232437
+ } | null | undefined;
232438
+ aliasTo?: string | null | undefined;
232439
+ } | undefined;
232440
+ } | null | undefined;
232441
+ aliasTo?: string | null | undefined;
232442
+ }[] | null | undefined;
232443
+ aliasTo?: string | null | undefined;
232444
+ };
232445
+ shadowMd: {
232446
+ value?: {
232447
+ value?: {
232448
+ type: "Drop" | "Inner";
232449
+ color: {
232450
+ value?: {
232451
+ color: string | {
232452
+ aliasTo?: string | null | undefined;
232453
+ };
232454
+ opacity: {
232455
+ value?: {
232456
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232457
+ measure: number;
232458
+ } | null | undefined;
232459
+ aliasTo?: string | null | undefined;
232460
+ };
232461
+ } | null | undefined;
232462
+ aliasTo?: string | null | undefined;
232463
+ };
232464
+ radius: number;
232465
+ x: number;
232466
+ y: number;
232467
+ spread: number;
232468
+ opacity?: {
232469
+ value?: {
232470
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232471
+ measure: number;
232472
+ } | null | undefined;
232473
+ aliasTo?: string | null | undefined;
232474
+ } | undefined;
232475
+ } | null | undefined;
232476
+ aliasTo?: string | null | undefined;
232477
+ }[] | null | undefined;
232478
+ aliasTo?: string | null | undefined;
232479
+ };
232480
+ shadowLg: {
232481
+ value?: {
232482
+ value?: {
232483
+ type: "Drop" | "Inner";
232484
+ color: {
232485
+ value?: {
232486
+ color: string | {
232487
+ aliasTo?: string | null | undefined;
232488
+ };
232489
+ opacity: {
232490
+ value?: {
232491
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232492
+ measure: number;
232493
+ } | null | undefined;
232494
+ aliasTo?: string | null | undefined;
232495
+ };
232496
+ } | null | undefined;
232497
+ aliasTo?: string | null | undefined;
232498
+ };
232499
+ radius: number;
232500
+ x: number;
232501
+ y: number;
232502
+ spread: number;
232503
+ opacity?: {
232504
+ value?: {
232505
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232506
+ measure: number;
232507
+ } | null | undefined;
232508
+ aliasTo?: string | null | undefined;
232509
+ } | undefined;
232510
+ } | null | undefined;
232511
+ aliasTo?: string | null | undefined;
232512
+ }[] | null | undefined;
232513
+ aliasTo?: string | null | undefined;
232514
+ };
232515
+ shadowXl: {
232516
+ value?: {
232517
+ value?: {
232518
+ type: "Drop" | "Inner";
232519
+ color: {
232520
+ value?: {
232521
+ color: string | {
232522
+ aliasTo?: string | null | undefined;
232523
+ };
232524
+ opacity: {
232525
+ value?: {
232526
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232527
+ measure: number;
232528
+ } | null | undefined;
232529
+ aliasTo?: string | null | undefined;
232530
+ };
232531
+ } | null | undefined;
232532
+ aliasTo?: string | null | undefined;
232533
+ };
232534
+ radius: number;
232535
+ x: number;
232536
+ y: number;
232537
+ spread: number;
232538
+ opacity?: {
232539
+ value?: {
232540
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232541
+ measure: number;
232542
+ } | null | undefined;
232543
+ aliasTo?: string | null | undefined;
232544
+ } | undefined;
232545
+ } | null | undefined;
232546
+ aliasTo?: string | null | undefined;
232547
+ }[] | null | undefined;
232548
+ aliasTo?: string | null | undefined;
232549
+ };
232550
+ shadow2xl: {
232551
+ value?: {
232552
+ value?: {
232553
+ type: "Drop" | "Inner";
232554
+ color: {
232555
+ value?: {
232556
+ color: string | {
232557
+ aliasTo?: string | null | undefined;
232558
+ };
232559
+ opacity: {
232560
+ value?: {
232561
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232562
+ measure: number;
232563
+ } | null | undefined;
232564
+ aliasTo?: string | null | undefined;
232565
+ };
232566
+ } | null | undefined;
232567
+ aliasTo?: string | null | undefined;
232568
+ };
232569
+ radius: number;
232570
+ x: number;
232571
+ y: number;
232572
+ spread: number;
232573
+ opacity?: {
232574
+ value?: {
232575
+ unit: "Pixels" | "Percent" | "Rem" | "Ms" | "Raw" | "Points";
232576
+ measure: number;
232577
+ } | null | undefined;
232578
+ aliasTo?: string | null | undefined;
232579
+ } | undefined;
232580
+ } | null | undefined;
232581
+ aliasTo?: string | null | undefined;
232582
+ }[] | null | undefined;
232583
+ aliasTo?: string | null | undefined;
232584
+ };
232585
+ } | undefined;
232586
+ description?: string | undefined;
232587
+ designSystemId?: string | undefined;
232588
+ brandId?: string | undefined;
232589
+ defaultTokenThemeSetId?: string | undefined;
232590
+ productContext?: string | undefined;
232591
+ additionalContext?: string | undefined;
232592
+ themePreset?: string | undefined;
232593
+ tokenThemeSets?: {
232594
+ id: string;
232595
+ name: string;
232596
+ tokenThemeIds: string[];
232597
+ }[] | undefined;
232598
+ componentSet?: {
232599
+ type: "Shadcn";
232600
+ } | undefined;
232601
+ iconSet?: {
232602
+ type: "Phosphor" | "Lucide" | "Tabler";
232603
+ variant?: string | undefined;
232604
+ } | undefined;
230711
232605
  sandboxTemplate?: {
230712
232606
  id: string;
230713
232607
  version: string;