@rbxts/react-clean-ui 1.1.0 → 1.2.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.
Files changed (110) hide show
  1. package/out/Components/Chart/BarChart.d.ts +1 -0
  2. package/out/Components/Chart/BarChart.luau +149 -112
  3. package/out/Components/Chart/Pie.d.ts +1 -0
  4. package/out/Components/Chart/Pie.luau +21 -6
  5. package/out/Components/Decorator/BoxShadow.d.ts +1 -0
  6. package/out/Components/Decorator/BoxShadow.luau +12 -5
  7. package/out/Components/Decorator/Corners.d.ts +1 -0
  8. package/out/Components/Decorator/Corners.luau +8 -3
  9. package/out/Components/Decorator/Gradient.d.ts +8 -0
  10. package/out/Components/Decorator/Gradient.luau +23 -0
  11. package/out/Components/Decorator/Padding.d.ts +3 -1
  12. package/out/Components/Decorator/Padding.luau +11 -6
  13. package/out/Components/Decorator/index.d.ts +1 -0
  14. package/out/Components/Decorator/init.luau +3 -0
  15. package/out/Components/Input/Button.d.ts +1 -0
  16. package/out/Components/Input/Button.luau +49 -34
  17. package/out/Components/Input/Checkbox.d.ts +1 -0
  18. package/out/Components/Input/Checkbox.luau +28 -18
  19. package/out/Components/Input/HoverButton.d.ts +1 -0
  20. package/out/Components/Input/HoverButton.luau +44 -42
  21. package/out/Components/Input/Increment.d.ts +1 -0
  22. package/out/Components/Input/Increment.luau +10 -3
  23. package/out/Components/Input/Input.d.ts +3 -1
  24. package/out/Components/Input/Input.luau +89 -68
  25. package/out/Components/Input/Select.d.ts +11 -1
  26. package/out/Components/Input/Select.luau +315 -39
  27. package/out/Components/Input/Slider.luau +44 -53
  28. package/out/Components/Input/Switch.d.ts +9 -0
  29. package/out/Components/Input/Switch.luau +145 -0
  30. package/out/Components/Input/index.d.ts +1 -0
  31. package/out/Components/Input/init.luau +3 -0
  32. package/out/Components/Interaction/Modal.d.ts +14 -0
  33. package/out/Components/Interaction/Modal.luau +262 -0
  34. package/out/Components/Interaction/Toast.d.ts +2 -1
  35. package/out/Components/Interaction/Toast.luau +53 -28
  36. package/out/Components/Interaction/Tooltip.luau +36 -25
  37. package/out/Components/Interaction/index.d.ts +1 -0
  38. package/out/Components/Interaction/init.luau +3 -0
  39. package/out/Components/Layout/Accordion.d.ts +1 -0
  40. package/out/Components/Layout/Accordion.luau +51 -55
  41. package/out/Components/Layout/Column.d.ts +1 -0
  42. package/out/Components/Layout/Column.luau +11 -6
  43. package/out/Components/Layout/Container.d.ts +3 -0
  44. package/out/Components/Layout/Container.luau +26 -17
  45. package/out/Components/Layout/Draggable.luau +25 -3
  46. package/out/Components/Layout/Fieldset.d.ts +1 -0
  47. package/out/Components/Layout/Fieldset.luau +14 -42
  48. package/out/Components/Layout/FlexItem.luau +7 -0
  49. package/out/Components/Layout/Grid.d.ts +10 -0
  50. package/out/Components/Layout/Grid.luau +172 -0
  51. package/out/Components/Layout/Group.d.ts +1 -0
  52. package/out/Components/Layout/Group.luau +48 -60
  53. package/out/Components/Layout/HStack.d.ts +4 -0
  54. package/out/Components/Layout/HStack.luau +17 -10
  55. package/out/Components/Layout/Pagination.d.ts +32 -0
  56. package/out/Components/Layout/Pagination.luau +400 -0
  57. package/out/Components/Layout/Row.d.ts +1 -0
  58. package/out/Components/Layout/Row.luau +20 -48
  59. package/out/Components/Layout/Scroller.d.ts +1 -0
  60. package/out/Components/Layout/Scroller.luau +26 -34
  61. package/out/Components/Layout/Table.d.ts +31 -0
  62. package/out/Components/Layout/Table.luau +342 -0
  63. package/out/Components/Layout/Tabs.d.ts +20 -10
  64. package/out/Components/Layout/Tabs.luau +113 -119
  65. package/out/Components/Layout/VStack.d.ts +3 -0
  66. package/out/Components/Layout/VStack.luau +17 -10
  67. package/out/Components/Layout/index.d.ts +3 -0
  68. package/out/Components/Layout/init.luau +9 -0
  69. package/out/Components/Navigation/Menu.d.ts +1 -0
  70. package/out/Components/Navigation/Menu.luau +12 -3
  71. package/out/Components/Surface/Box.d.ts +3 -1
  72. package/out/Components/Surface/Box.luau +15 -4
  73. package/out/Components/Surface/Card.d.ts +1 -0
  74. package/out/Components/Surface/Card.luau +56 -154
  75. package/out/Components/Surface/Icon.d.ts +1 -0
  76. package/out/Components/Surface/Icon.luau +25 -16
  77. package/out/Components/Surface/ProgressBar.d.ts +14 -0
  78. package/out/Components/Surface/ProgressBar.luau +230 -0
  79. package/out/Components/Surface/index.d.ts +1 -0
  80. package/out/Components/Surface/init.luau +3 -0
  81. package/out/Components/Typography/Text.d.ts +1 -0
  82. package/out/Components/Typography/Text.luau +57 -53
  83. package/out/Contexts/index.d.ts +1 -0
  84. package/out/Contexts/init.luau +3 -0
  85. package/out/Contexts/modal.context.d.ts +15 -0
  86. package/out/Contexts/modal.context.luau +23 -0
  87. package/out/Contexts/toast.context.d.ts +1 -0
  88. package/out/Helpers/color.helper.luau +28 -0
  89. package/out/Helpers/css.helper.d.ts +4 -1
  90. package/out/Helpers/css.helper.luau +76 -6
  91. package/out/Helpers/gui.helper.luau +0 -3
  92. package/out/Helpers/size.helper.luau +0 -2
  93. package/out/Helpers/spacing.helper.luau +0 -3
  94. package/out/Helpers/typography.helper.luau +0 -2
  95. package/out/Interfaces/css.types.d.ts +7 -0
  96. package/out/Interfaces/css.types.luau +0 -20
  97. package/out/Providers/app.provider.luau +2 -1
  98. package/out/Providers/index.d.ts +1 -0
  99. package/out/Providers/init.luau +3 -0
  100. package/out/Providers/modal.provider.d.ts +6 -0
  101. package/out/Providers/modal.provider.luau +86 -0
  102. package/out/Providers/overlay.provider.luau +1 -0
  103. package/out/Providers/registry.provider.luau +0 -2
  104. package/out/Theme/theme.style.d.ts +2 -1
  105. package/out/Theme/theme.template.d.ts +126 -1
  106. package/out/Theme/themes/dark.theme.luau +225 -0
  107. package/out/Theme/themes/default.theme.luau +210 -0
  108. package/out/Theme/themes/sandstone.theme.luau +173 -0
  109. package/out/Theme/themes/wooden.theme.luau +195 -0
  110. package/package.json +1 -1
@@ -158,16 +158,30 @@ local DarkTheme = createTheme({
158
158
  primary = {
159
159
  default = {
160
160
  textColor = Color3.fromHex("#FFFFFF"),
161
+ backgroundColor = Color3.fromHex("#FFFFFF"),
162
+ borderColor = Color3.fromHex("#6B96F0"),
163
+ backgroundGradient = {
164
+ colors = { Color3.fromHex("#365FAF"), Color3.fromHex("#4775CC") },
165
+ rotation = 90,
166
+ },
161
167
  },
162
168
  disabled = {
163
169
  backgroundColor = Color3.fromHex("#1D222B"),
164
170
  borderColor = Color3.fromHex("#343B49"),
165
171
  textColor = Color3.fromHex("#697386"),
166
172
  },
173
+ hover = {
174
+ backgroundColor = Color3.fromHex("#b8b8b8"),
175
+ },
167
176
  },
168
177
  success = {
169
178
  default = {
170
179
  textColor = Color3.fromHex("#FFFFFF"),
180
+ borderColor = Color3.fromHex("#42C982"),
181
+ backgroundGradient = {
182
+ colors = { Color3.fromHex("#237A4D"), Color3.fromHex("#2D965F") },
183
+ rotation = 90,
184
+ },
171
185
  },
172
186
  disabled = {
173
187
  backgroundColor = Color3.fromHex("#1D222B"),
@@ -178,6 +192,11 @@ local DarkTheme = createTheme({
178
192
  info = {
179
193
  default = {
180
194
  textColor = Color3.fromHex("#FFFFFF"),
195
+ borderColor = Color3.fromHex("#3ED6E8"),
196
+ backgroundGradient = {
197
+ colors = { Color3.fromHex("#0E7C8C"), Color3.fromHex("#20B4C4") },
198
+ rotation = 90,
199
+ },
181
200
  },
182
201
  disabled = {
183
202
  backgroundColor = Color3.fromHex("#1D222B"),
@@ -188,6 +207,11 @@ local DarkTheme = createTheme({
188
207
  warning = {
189
208
  default = {
190
209
  textColor = Color3.fromHex("#FFFFFF"),
210
+ borderColor = Color3.fromHex("#E0AD3E"),
211
+ backgroundGradient = {
212
+ colors = { Color3.fromHex("#916B1D"), Color3.fromHex("#AF8427") },
213
+ rotation = 90,
214
+ },
191
215
  },
192
216
  disabled = {
193
217
  backgroundColor = Color3.fromHex("#1D222B"),
@@ -198,6 +222,11 @@ local DarkTheme = createTheme({
198
222
  danger = {
199
223
  default = {
200
224
  textColor = Color3.fromHex("#FFFFFF"),
225
+ borderColor = Color3.fromHex("#EB6262"),
226
+ backgroundGradient = {
227
+ colors = { Color3.fromHex("#A63737"), Color3.fromHex("#C64646") },
228
+ rotation = 90,
229
+ },
201
230
  },
202
231
  disabled = {
203
232
  backgroundColor = Color3.fromHex("#1D222B"),
@@ -214,6 +243,7 @@ local DarkTheme = createTheme({
214
243
  placeholder = {
215
244
  color = Color3.fromHex("#697386"),
216
245
  },
246
+ iconColor = Color3.fromHex("#697386"),
217
247
  },
218
248
  select = {
219
249
  dropDownBackgroundColor = Color3.fromHex("#20252E"),
@@ -238,11 +268,37 @@ local DarkTheme = createTheme({
238
268
  },
239
269
  },
240
270
  },
271
+ optGroup = {
272
+ textColor = Color3.fromHex("#8892A6"),
273
+ spacing = {
274
+ xs = 4,
275
+ sm = 6,
276
+ md = 8,
277
+ lg = 10,
278
+ xl = 12,
279
+ },
280
+ },
281
+ search = {
282
+ spacing = {
283
+ xs = 4,
284
+ sm = 6,
285
+ md = 8,
286
+ lg = 10,
287
+ xl = 12,
288
+ },
289
+ },
241
290
  },
242
291
  checkbox = {
243
292
  borderColor = Color3.fromHex("#3A4352"),
244
293
  borderThickness = 1,
245
294
  cornerRadius = 8,
295
+ intents = {
296
+ primary = {
297
+ default = {
298
+ backgroundColor = Color3.fromHex("#2A303B"),
299
+ },
300
+ },
301
+ },
246
302
  spacing = {
247
303
  xs = 1,
248
304
  sm = 2,
@@ -251,6 +307,30 @@ local DarkTheme = createTheme({
251
307
  xl = 8,
252
308
  },
253
309
  },
310
+ switch = {
311
+ width = 40,
312
+ height = 22,
313
+ cornerRadius = "100%",
314
+ borderThickness = 1,
315
+ disabledTransparency = 0.5,
316
+ animation = {
317
+ duration = 0.15,
318
+ },
319
+ track = {
320
+ backgroundColor = Color3.fromHex("#2A303B"),
321
+ backgroundTransparency = 0,
322
+ borderColor = Color3.fromHex("#3A4352"),
323
+ },
324
+ thumb = {
325
+ inset = 2,
326
+ cornerRadius = "100%",
327
+ backgroundColor = Color3.fromHex("#E8EDF8"),
328
+ backgroundTransparency = 0,
329
+ borderColor = Color3.fromHex("#4B74C7"),
330
+ borderThickness = 1,
331
+ boxShadow = "0px 0px 2px 1px",
332
+ },
333
+ },
254
334
  tabs = {
255
335
  borderColor = Color3.fromHex("#343B49"),
256
336
  backgroundColor = Color3.fromHex("#1B1F27"),
@@ -301,6 +381,57 @@ local DarkTheme = createTheme({
301
381
  },
302
382
  },
303
383
  },
384
+ pagination = {
385
+ backgroundColor = Color3.fromHex("#14181F"),
386
+ backgroundTransparency = 0,
387
+ borderColor = Color3.fromHex("#343B49"),
388
+ borderThickness = 1,
389
+ cornerRadius = 8,
390
+ spacing = {
391
+ xs = 2,
392
+ sm = 4,
393
+ md = 6,
394
+ lg = 8,
395
+ xl = 12,
396
+ },
397
+ item = {
398
+ borderThickness = 0,
399
+ cornerRadius = 4,
400
+ spacing = {
401
+ xs = 1,
402
+ sm = 2,
403
+ md = 4,
404
+ lg = 6,
405
+ xl = 8,
406
+ },
407
+ intents = {
408
+ primary = {
409
+ default = {
410
+ backgroundTransparency = 1,
411
+ textColor = Color3.fromHex("#AAB3C2"),
412
+ },
413
+ hover = {
414
+ backgroundTransparency = 1,
415
+ textColor = Color3.fromHex("#FFFFFF"),
416
+ },
417
+ focus = {
418
+ textColor = Color3.fromHex("#FFFFFF"),
419
+ backgroundColor = Color3.fromHex("#2A303B"),
420
+ backgroundTransparency = 0,
421
+ boxShadow = "2px 2px 6px 0px",
422
+ typography = {
423
+ weight = Enum.FontWeight.Bold,
424
+ },
425
+ },
426
+ disabled = {
427
+ backgroundTransparency = 1,
428
+ borderColor = Color3.fromHex("#343B49"),
429
+ textColor = Color3.fromHex("#697386"),
430
+ },
431
+ },
432
+ },
433
+ },
434
+ },
304
435
  accordion = {
305
436
  borderColor = Color3.fromHex("#4B5568"),
306
437
  header = {
@@ -330,6 +461,14 @@ local DarkTheme = createTheme({
330
461
  backgroundColor = Color3.fromHex("#171B22"),
331
462
  },
332
463
  },
464
+ table = {
465
+ backgroundColor = Color3.fromHex("#171B22"),
466
+ borderColor = Color3.fromHex("#4B5568"),
467
+ rowDividerColor = Color3.fromHex("#343C4A"),
468
+ header = {
469
+ backgroundColor = Color3.fromHex("#252B36"),
470
+ },
471
+ },
333
472
  draggable = {
334
473
  placeholder = {
335
474
  backgroundColor = Color3.fromHex("#2A303B"),
@@ -387,6 +526,92 @@ local DarkTheme = createTheme({
387
526
  cornerRadius = "100%",
388
527
  },
389
528
  },
529
+ progressBar = {
530
+ animation = {
531
+ duration = 0.2,
532
+ },
533
+ header = {
534
+ spacing = {
535
+ xs = 2,
536
+ sm = 4,
537
+ md = 6,
538
+ lg = 8,
539
+ xl = 10,
540
+ },
541
+ label = {
542
+ typography = {
543
+ size = Enum.FontSize.Size18,
544
+ color = Color3.fromHex("#E8EDF8"),
545
+ },
546
+ },
547
+ value = {
548
+ typography = {
549
+ size = Enum.FontSize.Size18,
550
+ color = Color3.fromHex("#697386"),
551
+ },
552
+ },
553
+ },
554
+ track = {
555
+ backgroundColor = Color3.fromHex("#2A303B"),
556
+ backgroundTransparency = 0,
557
+ borderColor = Color3.fromHex("#3A4352"),
558
+ borderThickness = 1,
559
+ cornerRadius = "100%",
560
+ },
561
+ fill = {
562
+ cornerRadius = "100%",
563
+ intents = {
564
+ primary = {
565
+ default = {
566
+ backgroundColor = Color3.fromHex("#FFFFFF"),
567
+ backgroundGradient = {
568
+ colors = { Color3.fromHex("#5A87DE"), Color3.fromHex("#345FAF") },
569
+ rotation = 90,
570
+ },
571
+ },
572
+ },
573
+ success = {
574
+ default = {
575
+ backgroundColor = Color3.fromHex("#FFFFFF"),
576
+ backgroundGradient = {
577
+ colors = { Color3.fromHex("#40A871"), Color3.fromHex("#237A4D") },
578
+ rotation = 90,
579
+ },
580
+ },
581
+ },
582
+ info = {
583
+ default = {
584
+ backgroundColor = Color3.fromHex("#FFFFFF"),
585
+ backgroundGradient = {
586
+ colors = { Color3.fromHex("#4799D0"), Color3.fromHex("#286D9F") },
587
+ rotation = 90,
588
+ },
589
+ },
590
+ },
591
+ warning = {
592
+ default = {
593
+ backgroundColor = Color3.fromHex("#FFFFFF"),
594
+ backgroundGradient = {
595
+ colors = { Color3.fromHex("#C29639"), Color3.fromHex("#916B1D") },
596
+ rotation = 90,
597
+ },
598
+ },
599
+ },
600
+ danger = {
601
+ default = {
602
+ backgroundColor = Color3.fromHex("#FFFFFF"),
603
+ backgroundGradient = {
604
+ colors = { Color3.fromHex("#D95858"), Color3.fromHex("#A63737") },
605
+ rotation = 90,
606
+ },
607
+ },
608
+ },
609
+ },
610
+ stripe = {
611
+ enabled = false,
612
+ },
613
+ },
614
+ },
390
615
  toast = {
391
616
  width = 300,
392
617
  fadeDuration = 0.5,
@@ -194,6 +194,7 @@ local DefaultTheme = {
194
194
  placeholder = {
195
195
  color = Color3.fromHex("#8A8A8A"),
196
196
  },
197
+ iconColor = Color3.fromHex("#8A8A8A"),
197
198
  },
198
199
  select = {
199
200
  dropDownBackgroundColor = Color3.fromHex("#FFFFFF"),
@@ -216,6 +217,25 @@ local DefaultTheme = {
216
217
  },
217
218
  },
218
219
  },
220
+ optGroup = {
221
+ textColor = Color3.fromHex("#5C6577"),
222
+ spacing = {
223
+ xs = 4,
224
+ sm = 6,
225
+ md = 8,
226
+ lg = 10,
227
+ xl = 12,
228
+ },
229
+ },
230
+ search = {
231
+ spacing = {
232
+ xs = 4,
233
+ sm = 6,
234
+ md = 8,
235
+ lg = 10,
236
+ xl = 12,
237
+ },
238
+ },
219
239
  },
220
240
  checkbox = {
221
241
  borderColor = Color3.fromHex("#D9DEE8"),
@@ -229,6 +249,30 @@ local DefaultTheme = {
229
249
  xl = 8,
230
250
  },
231
251
  },
252
+ switch = {
253
+ width = 40,
254
+ height = 22,
255
+ cornerRadius = "100%",
256
+ borderThickness = 1,
257
+ disabledTransparency = 0.5,
258
+ animation = {
259
+ duration = 0.15,
260
+ },
261
+ track = {
262
+ backgroundColor = Color3.fromHex("#D9DEE8"),
263
+ backgroundTransparency = 0,
264
+ borderColor = Color3.fromHex("#D9DEE8"),
265
+ },
266
+ thumb = {
267
+ inset = 2,
268
+ cornerRadius = "100%",
269
+ backgroundColor = Color3.fromHex("#FFFFFF"),
270
+ backgroundTransparency = 0,
271
+ borderColor = Color3.fromHex("#D9DEE8"),
272
+ borderThickness = 1,
273
+ boxShadow = "0px 0px 2px 1px",
274
+ },
275
+ },
232
276
  tabs = {
233
277
  borderColor = Color3.fromHex("#D9DEE8"),
234
278
  backgroundColor = Color3.fromHex("#FFFFFF"),
@@ -279,6 +323,57 @@ local DefaultTheme = {
279
323
  },
280
324
  },
281
325
  },
326
+ pagination = {
327
+ backgroundColor = Color3.fromHex("#F5F5F5"),
328
+ backgroundTransparency = 0,
329
+ borderColor = Color3.fromHex("#D9DEE8"),
330
+ borderThickness = 1,
331
+ cornerRadius = 8,
332
+ spacing = {
333
+ xs = 2,
334
+ sm = 4,
335
+ md = 6,
336
+ lg = 8,
337
+ xl = 12,
338
+ },
339
+ item = {
340
+ borderThickness = 0,
341
+ cornerRadius = 4,
342
+ spacing = {
343
+ xs = 1,
344
+ sm = 2,
345
+ md = 4,
346
+ lg = 6,
347
+ xl = 8,
348
+ },
349
+ intents = {
350
+ primary = {
351
+ default = {
352
+ backgroundTransparency = 1,
353
+ textColor = Color3.fromHex("#4F4F4F"),
354
+ },
355
+ hover = {
356
+ backgroundTransparency = 1,
357
+ textColor = Color3.fromHex("#000000"),
358
+ },
359
+ focus = {
360
+ textColor = Color3.fromHex("#000000"),
361
+ backgroundColor = Color3.fromHex("#FFFFFF"),
362
+ backgroundTransparency = 0,
363
+ boxShadow = "2px 2px 2px 2px",
364
+ typography = {
365
+ weight = Enum.FontWeight.Bold,
366
+ },
367
+ },
368
+ disabled = {
369
+ backgroundTransparency = 1,
370
+ borderColor = Color3.fromHex("#D9DEE8"),
371
+ textColor = Color3.fromHex("#8A8A8A"),
372
+ },
373
+ },
374
+ },
375
+ },
376
+ },
282
377
  accordion = {
283
378
  borderColor = Color3.fromHex("#D9DEE8"),
284
379
  borderThickness = 1,
@@ -337,6 +432,31 @@ local DefaultTheme = {
337
432
  duration = 0.2,
338
433
  },
339
434
  },
435
+ table = {
436
+ backgroundColor = Color3.fromHex("#FFFFFF"),
437
+ backgroundTransparency = 0,
438
+ borderColor = Color3.fromHex("#D9DEE8"),
439
+ borderThickness = 1,
440
+ cornerRadius = 8,
441
+ rowDividerColor = Color3.fromHex("#D9DEE8"),
442
+ rowDividerThickness = 1,
443
+ header = {
444
+ backgroundColor = Color3.fromHex("#F2F4F8"),
445
+ backgroundTransparency = 0,
446
+ typography = {
447
+ weight = Enum.FontWeight.Bold,
448
+ },
449
+ },
450
+ cell = {
451
+ spacing = {
452
+ xs = 4,
453
+ sm = 8,
454
+ md = 12,
455
+ lg = 16,
456
+ xl = 24,
457
+ },
458
+ },
459
+ },
340
460
  draggable = {
341
461
  placeholder = {
342
462
  backgroundColor = Color3.fromHex("#D9DEE8"),
@@ -454,6 +574,86 @@ local DefaultTheme = {
454
574
  aspectRatio = 1,
455
575
  },
456
576
  },
577
+ progressBar = {
578
+ height = {
579
+ xs = 8,
580
+ sm = 12,
581
+ md = 16,
582
+ lg = 20,
583
+ xl = 30,
584
+ },
585
+ animation = {
586
+ duration = 0.2,
587
+ },
588
+ header = {
589
+ spacing = {
590
+ xs = 2,
591
+ sm = 4,
592
+ md = 6,
593
+ lg = 8,
594
+ xl = 10,
595
+ },
596
+ label = {
597
+ typography = {
598
+ size = Enum.FontSize.Size18,
599
+ color = Color3.fromHex("#1D2433"),
600
+ },
601
+ },
602
+ value = {
603
+ typography = {
604
+ size = Enum.FontSize.Size18,
605
+ color = Color3.fromHex("#5C6577"),
606
+ },
607
+ },
608
+ },
609
+ track = {
610
+ backgroundColor = Color3.fromHex("#F5F5F5"),
611
+ backgroundTransparency = 0,
612
+ borderColor = Color3.fromHex("#D9DEE8"),
613
+ borderThickness = 1,
614
+ cornerRadius = 4,
615
+ },
616
+ fill = {
617
+ cornerRadius = 4,
618
+ intents = {
619
+ primary = {
620
+ default = {
621
+ backgroundColor = Color3.fromHex("#477FE8"),
622
+ },
623
+ },
624
+ success = {
625
+ default = {
626
+ backgroundColor = Color3.fromHex("#2E9D63"),
627
+ },
628
+ },
629
+ info = {
630
+ default = {
631
+ backgroundColor = Color3.fromHex("#3187C8"),
632
+ },
633
+ },
634
+ warning = {
635
+ default = {
636
+ backgroundColor = Color3.fromHex("#E7A92F"),
637
+ },
638
+ },
639
+ danger = {
640
+ default = {
641
+ backgroundColor = Color3.fromHex("#D64545"),
642
+ },
643
+ },
644
+ },
645
+ stripe = {
646
+ enabled = true,
647
+ image = {
648
+ image = 86644568183933,
649
+ tileSize = "16px",
650
+ transparency = 0.9,
651
+ },
652
+ duration = 0.75,
653
+ direction = 1,
654
+ },
655
+ },
656
+ },
457
657
  toast = {
458
658
  fadeDuration = 0.5,
459
659
  width = 300,
@@ -536,6 +736,16 @@ local DefaultTheme = {
536
736
  },
537
737
  },
538
738
  },
739
+ modal = {
740
+ fadeDuration = 0.2,
741
+ baseZIndex = 1000,
742
+ zIndexStep = 10,
743
+ width = 420,
744
+ backdrop = {
745
+ backgroundColor = Color3.fromRGB(0, 0, 0),
746
+ backgroundTransparency = 0.5,
747
+ },
748
+ },
539
749
  charts = {
540
750
  colors = { Color3.fromHex("#2E9D63"), Color3.fromHex("#D64545"), Color3.fromHex("#E7A92F"), Color3.fromHex("#3187C8"), Color3.fromHex("#8E5AD7"), Color3.fromHex("#2FA7A1"), Color3.fromHex("#F26D4F"), Color3.fromHex("#D94F9D"), Color3.fromHex("#6B7C93"), Color3.fromHex("#7CB342") },
541
751
  pie = {