purgetss 6.2.27 → 6.2.28

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 (56) hide show
  1. package/README.md +4 -3
  2. package/dist/glossary/constantProperties/anchorPoint.md +24 -0
  3. package/dist/glossary/constantProperties/autocapitalization-alternative.md +8 -0
  4. package/dist/glossary/constantProperties/backgroundGradient-linear.md +25 -0
  5. package/dist/glossary/constantProperties/backgroundGradient-radial.md +13 -0
  6. package/dist/glossary/constantProperties/backgroundGradient.md +497 -0
  7. package/dist/glossary/constantProperties/backgroundSelectedGradient.md +497 -0
  8. package/dist/glossary/constantProperties/borderRadius-alternative.md +466 -0
  9. package/dist/glossary/constantProperties/borderRadius-full.md +45 -0
  10. package/dist/glossary/constantProperties/clipMode.md +6 -0
  11. package/dist/glossary/constantProperties/constraint.md +6 -0
  12. package/dist/glossary/constantProperties/content-height-and-width.md +10 -0
  13. package/dist/glossary/constantProperties/curve-alternative.md +11 -0
  14. package/dist/glossary/constantProperties/defaultItemTemplate.md +8 -0
  15. package/dist/glossary/constantProperties/displayCaps.md +11 -0
  16. package/dist/glossary/constantProperties/draggingType.md +6 -0
  17. package/dist/glossary/constantProperties/dropShadow.md +12 -0
  18. package/dist/glossary/constantProperties/ellipsize-alternative.md +17 -0
  19. package/dist/glossary/constantProperties/filterAttribute.md +6 -0
  20. package/dist/glossary/constantProperties/flip.md +6 -0
  21. package/dist/glossary/constantProperties/fontFamily.md +4 -0
  22. package/dist/glossary/constantProperties/fontSize.md +17 -0
  23. package/dist/glossary/constantProperties/fontStyle.md +6 -0
  24. package/dist/glossary/constantProperties/fontWeight.md +13 -0
  25. package/dist/glossary/constantProperties/grid-cols-rows-span.md +31 -0
  26. package/dist/glossary/constantProperties/gridFlow.md +8 -0
  27. package/dist/glossary/constantProperties/gridSystem.md +31 -0
  28. package/dist/glossary/constantProperties/items.md +8 -0
  29. package/dist/glossary/constantProperties/margin-alternative.md +263 -0
  30. package/dist/glossary/constantProperties/margin.md +1137 -0
  31. package/dist/glossary/constantProperties/minimumFontSize.md +17 -0
  32. package/dist/glossary/constantProperties/moveByProperties.md +5 -0
  33. package/dist/glossary/constantProperties/navigationMode.md +6 -0
  34. package/dist/glossary/constantProperties/orientationModes.md +19 -0
  35. package/dist/glossary/constantProperties/padding-alternative.md +249 -0
  36. package/dist/glossary/constantProperties/placement.md +14 -0
  37. package/dist/glossary/constantProperties/progressBarStyle.md +7 -0
  38. package/dist/glossary/constantProperties/r-drawable.md +172 -0
  39. package/dist/glossary/constantProperties/rotate-negative-values.md +18 -0
  40. package/dist/glossary/constantProperties/scrollType.md +6 -0
  41. package/dist/glossary/constantProperties/showScrollIndicators.md +10 -0
  42. package/dist/glossary/constantProperties/statusBarStyle-alternative.md +7 -0
  43. package/dist/glossary/constantProperties/theme.md +28 -0
  44. package/dist/glossary/constantProperties/tiMedia.md +18 -0
  45. package/dist/glossary/constantProperties/titleAttributesShadow-alternative.md +12 -0
  46. package/dist/glossary/constantProperties/toggle.md +7 -0
  47. package/dist/glossary/constantProperties/touchEnabled-alternative.md +6 -0
  48. package/dist/glossary/constantProperties/viewShadowOffset.md +14 -0
  49. package/dist/glossary/constantProperties/visible-alternative.md +6 -0
  50. package/dist/glossary/constantProperties/widthHeight.md +68 -0
  51. package/dist/glossary/constantProperties/zoom-in-out.md +34 -0
  52. package/dist/tailwind.tss +0 -5
  53. package/experimental/completions2.js +9 -15
  54. package/index.js +12 -4
  55. package/lib/helpers.js +24 -7
  56. package/package.json +1 -1
package/README.md CHANGED
@@ -10,12 +10,13 @@
10
10
 
11
11
  </div>
12
12
 
13
- **PurgeTSS** is a package that helps **[Titanium developers](https://tidev.io/)** create visually appealing mobile apps more easily, with features including highly customizable utility classes, icon fonts support, a basic Animation module, a simple grid system, and a shades command for creating custom colors.
13
+ **PurgeTSS** serves as a valuable toolkit tailored to streamline the mobile app development journey for **[Titanium developers](https://tidev.io/)**. By offering a range of user-friendly functionalities, including the ability to fine-tune utility classes, seamless integration of icon fonts, a foundational Animation module, a straightforward grid system, and the innovative 'shades' command for personalized color palettes, PurgeTSS aims to simplify the creation of visually captivating mobile applications.
14
14
 
15
15
  ---
16
16
 
17
- # Key features of PurgeTSS
18
- - Provides more than 19,000 **[Tailwind-like](https://tailwindcss.com/)** utility classes ready to use in your projects.
17
+ Now, let's delve into the key features that make **PurgeTSS** a game-changer for developers:
18
+
19
+ - Provides more than 21,000 **[Tailwind-like](https://tailwindcss.com/)** utility classes ready to use in your projects.
19
20
  - Creates a clean **app.tss** file with only the classes used in your project by parsing all your XML files.
20
21
  - You can customize any of the default classes via a simple configuration file, or create **just-in-time** classes with **arbitrary values** within your Views.
21
22
  - You can easily use icon fonts from **Font Awesome**, **Material Icons**, **Material Symbols**, and **Framework7-Icons** on Buttons and Labels.
@@ -0,0 +1,24 @@
1
+ ```scss
2
+ // Property(ies): anchorPoint
3
+ // Component(s): Ti.UI.Animation, Ti.UI.View
4
+ '.origin-center': { anchorPoint: { x: 0.5, y: 0.5 } }
5
+ '.origin-top': { anchorPoint: { x: 0.5, y: 0 } }
6
+ '.origin-top-right': { anchorPoint: { x: 1, y: 0 } }
7
+ '.origin-right': { anchorPoint: { x: 0.5, y: 1 } }
8
+ '.origin-bottom-right': { anchorPoint: { x: 1, y: 1 } }
9
+ '.origin-bottom': { anchorPoint: { x: 0.5, y: 1 } }
10
+ '.origin-bottom-left': { anchorPoint: { x: 0, y: 1 } }
11
+ '.origin-left': { anchorPoint: { x: 0, y: 0.5 } }
12
+ '.origin-top-left': { anchorPoint: { x: 0, y: 0 } }
13
+
14
+ // anchor-point-{position} variant
15
+ '.anchor-point-center': { anchorPoint: { x: 0.5, y: 0.5 } }
16
+ '.anchor-point-top': { anchorPoint: { x: 0.5, y: 0 } }
17
+ '.anchor-point-top-right': { anchorPoint: { x: 1, y: 0 } }
18
+ '.anchor-point-right': { anchorPoint: { x: 0.5, y: 1 } }
19
+ '.anchor-point-bottom-right': { anchorPoint: { x: 1, y: 1 } }
20
+ '.anchor-point-bottom': { anchorPoint: { x: 0.5, y: 1 } }
21
+ '.anchor-point-bottom-left': { anchorPoint: { x: 0, y: 1 } }
22
+ '.anchor-point-left': { anchorPoint: { x: 0, y: 0.5 } }
23
+ '.anchor-point-top-left': { anchorPoint: { x: 0, y: 0 } }
24
+ ```
@@ -0,0 +1,8 @@
1
+ ```scss
2
+ // Property(ies): autocapitalization
3
+ // Component(s): Ti.UI.SearchBar, Ti.UI.TextArea, Ti.UI.TextField
4
+ '.uppercase': { autocapitalization: Ti.UI.TEXT_AUTOCAPITALIZATION_ALL }
5
+ '.normal-case': { autocapitalization: Ti.UI.TEXT_AUTOCAPITALIZATION_NONE }
6
+ '.capitalize': { autocapitalization: Ti.UI.TEXT_AUTOCAPITALIZATION_WORDS }
7
+ '.sentences': { autocapitalization: Ti.UI.TEXT_AUTOCAPITALIZATION_SENTENCES }
8
+ ```
@@ -0,0 +1,25 @@
1
+ ```scss
2
+ // Property(ies): backgroundGradient - Linear
3
+ // Component(s): Ti.UI.MaskedImage
4
+ '.bg-linear': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '50%', y: '100%' }, endPoint: { x: '50%', y: '0%' } } }
5
+ '.bg-linear-to-t': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '0%', y: '0%' }, endPoint: { x: '0%', y: '100%' } } }
6
+ '.bg-linear-to-tr': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '100%', y: '0%' }, endPoint: { x: '0%', y: '100%' } } }
7
+ '.bg-linear-to-r': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '100%', y: '0%' }, endPoint: { x: '0%', y: '0%' } } }
8
+ '.bg-linear-to-br': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '100%', y: '100%' }, endPoint: { x: '0%', y: '0%' } } }
9
+ '.bg-linear-to-b': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '100%', y: '100%' }, endPoint: { x: '100%', y: '0%' } } }
10
+ '.bg-linear-to-bl': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '0%', y: '100%' }, endPoint: { x: '100%', y: '0%' } } }
11
+ '.bg-linear-to-l': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '0%', y: '0%' }, endPoint: { x: '100%', y: '0%' } } }
12
+ '.bg-linear-to-tl': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '0%', y: '0%' }, endPoint: { x: '100%', y: '100%' } } }
13
+
14
+ // Property(ies): backgroundGradient - Gradient
15
+ // Component(s): Ti.UI.MaskedImage
16
+ '.bg-gradient': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '50%', y: '100%' }, endPoint: { x: '50%', y: '0%' } } }
17
+ '.bg-gradient-to-t': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '0%', y: '0%' }, endPoint: { x: '0%', y: '100%' } } }
18
+ '.bg-gradient-to-tr': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '100%', y: '0%' }, endPoint: { x: '0%', y: '100%' } } }
19
+ '.bg-gradient-to-r': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '100%', y: '0%' }, endPoint: { x: '0%', y: '0%' } } }
20
+ '.bg-gradient-to-br': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '100%', y: '100%' }, endPoint: { x: '0%', y: '0%' } } }
21
+ '.bg-gradient-to-b': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '100%', y: '100%' }, endPoint: { x: '100%', y: '0%' } } }
22
+ '.bg-gradient-to-bl': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '0%', y: '100%' }, endPoint: { x: '100%', y: '0%' } } }
23
+ '.bg-gradient-to-l': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '0%', y: '0%' }, endPoint: { x: '100%', y: '0%' } } }
24
+ '.bg-gradient-to-tl': { backgroundGradient: { type: 'linear', backfillStart: true, startPoint: { x: '0%', y: '0%' }, endPoint: { x: '100%', y: '100%' } } }
25
+ ```
@@ -0,0 +1,13 @@
1
+ ```scss
2
+ // Property(ies): backgroundGradient: type, startRadius, endRadius, backfillStart, backfillEnd - iOS Only
3
+ // Component(s): Ti.UI.ListItem, Ti.UI.View
4
+ '.bg-radial': { backgroundGradient: { type: 'radial', backfillStart: true, backfillEnd: true, startRadius: '125%', endRadius: '0%' } }
5
+ '.bg-radial-to-b': { backgroundGradient: { type: 'radial', backfillStart: true, backfillEnd: true, startRadius: '150%', endRadius: '0%', startPoint: { x: '50%', y: '0%' }, endPoint: { x: '50%', y: '0%' } } }
6
+ '.bg-radial-to-bl': { backgroundGradient: { type: 'radial', backfillStart: true, backfillEnd: true, startRadius: '150%', endRadius: '0%', startPoint: { x: '100%', y: '0%' }, endPoint: { x: '100%', y: '0%' } } }
7
+ '.bg-radial-to-l': { backgroundGradient: { type: 'radial', backfillStart: true, backfillEnd: true, startRadius: '150%', endRadius: '0%', startPoint: { x: '100%', y: '50%' }, endPoint: { x: '100%', y: '50%' } } }
8
+ '.bg-radial-to-tl': { backgroundGradient: { type: 'radial', backfillStart: true, backfillEnd: true, startRadius: '150%', endRadius: '0%', startPoint: { x: '100%', y: '100%' }, endPoint: { x: '100%', y: '100%' } } }
9
+ '.bg-radial-to-t': { backgroundGradient: { type: 'radial', backfillStart: true, backfillEnd: true, startRadius: '150%', endRadius: '0%', startPoint: { x: '50%', y: '100%' }, endPoint: { x: '50%', y: '100%' } } }
10
+ '.bg-radial-to-tr': { backgroundGradient: { type: 'radial', backfillStart: true, backfillEnd: true, startRadius: '150%', endRadius: '0%', startPoint: { x: '0%', y: '100%' }, endPoint: { x: '0%', y: '100%' } } }
11
+ '.bg-radial-to-r': { backgroundGradient: { type: 'radial', backfillStart: true, backfillEnd: true, startRadius: '150%', endRadius: '0%', startPoint: { x: '0%', y: '50%' }, endPoint: { x: '0%', y: '50%' } } }
12
+ '.bg-radial-to-br': { backgroundGradient: { type: 'radial', backfillStart: true, backfillEnd: true, startRadius: '150%', endRadius: '0%', startPoint: { x: '0%', y: '0%' }, endPoint: { x: '0%', y: '0%' } } }
13
+ ```
@@ -0,0 +1,497 @@
1
+ ```scss
2
+ // Property(ies): backgroundGradient: colors - From Color
3
+ // Component(s): Ti.UI.ListItem, Ti.UI.View
4
+ '.from-transparent': { backgroundGradient: { colors: [ 'transparent', 'transparent' ] } }
5
+ '.from-black': { backgroundGradient: { colors: [ '#00000000', '#000000' ] } }
6
+ '.from-white': { backgroundGradient: { colors: [ '#00ffffff', '#ffffff' ] } }
7
+ '.from-slate-50': { backgroundGradient: { colors: [ '#00f8fafc', '#f8fafc' ] } }
8
+ '.from-slate-100': { backgroundGradient: { colors: [ '#00f1f5f9', '#f1f5f9' ] } }
9
+ '.from-slate-200': { backgroundGradient: { colors: [ '#00e2e8f0', '#e2e8f0' ] } }
10
+ '.from-slate-300': { backgroundGradient: { colors: [ '#00cbd5e1', '#cbd5e1' ] } }
11
+ '.from-slate-400': { backgroundGradient: { colors: [ '#0094a3b8', '#94a3b8' ] } }
12
+ '.from-slate-500': { backgroundGradient: { colors: [ '#0064748b', '#64748b' ] } }
13
+ '.from-slate-600': { backgroundGradient: { colors: [ '#00475569', '#475569' ] } }
14
+ '.from-slate-700': { backgroundGradient: { colors: [ '#00334155', '#334155' ] } }
15
+ '.from-slate-800': { backgroundGradient: { colors: [ '#001e293b', '#1e293b' ] } }
16
+ '.from-slate-900': { backgroundGradient: { colors: [ '#000f172a', '#0f172a' ] } }
17
+ '.from-slate-950': { backgroundGradient: { colors: [ '#00020617', '#020617' ] } }
18
+ '.from-gray-50': { backgroundGradient: { colors: [ '#00f9fafb', '#f9fafb' ] } }
19
+ '.from-gray-100': { backgroundGradient: { colors: [ '#00f3f4f6', '#f3f4f6' ] } }
20
+ '.from-gray-200': { backgroundGradient: { colors: [ '#00e5e7eb', '#e5e7eb' ] } }
21
+ '.from-gray-300': { backgroundGradient: { colors: [ '#00d1d5db', '#d1d5db' ] } }
22
+ '.from-gray-400': { backgroundGradient: { colors: [ '#009ca3af', '#9ca3af' ] } }
23
+ '.from-gray-500': { backgroundGradient: { colors: [ '#006b7280', '#6b7280' ] } }
24
+ '.from-gray-600': { backgroundGradient: { colors: [ '#004b5563', '#4b5563' ] } }
25
+ '.from-gray-700': { backgroundGradient: { colors: [ '#00374151', '#374151' ] } }
26
+ '.from-gray-800': { backgroundGradient: { colors: [ '#001f2937', '#1f2937' ] } }
27
+ '.from-gray-900': { backgroundGradient: { colors: [ '#00111827', '#111827' ] } }
28
+ '.from-gray-950': { backgroundGradient: { colors: [ '#00030712', '#030712' ] } }
29
+ '.from-zinc-50': { backgroundGradient: { colors: [ '#00fafafa', '#fafafa' ] } }
30
+ '.from-zinc-100': { backgroundGradient: { colors: [ '#00f4f4f5', '#f4f4f5' ] } }
31
+ '.from-zinc-200': { backgroundGradient: { colors: [ '#00e4e4e7', '#e4e4e7' ] } }
32
+ '.from-zinc-300': { backgroundGradient: { colors: [ '#00d4d4d8', '#d4d4d8' ] } }
33
+ '.from-zinc-400': { backgroundGradient: { colors: [ '#00a1a1aa', '#a1a1aa' ] } }
34
+ '.from-zinc-500': { backgroundGradient: { colors: [ '#0071717a', '#71717a' ] } }
35
+ '.from-zinc-600': { backgroundGradient: { colors: [ '#0052525b', '#52525b' ] } }
36
+ '.from-zinc-700': { backgroundGradient: { colors: [ '#003f3f46', '#3f3f46' ] } }
37
+ '.from-zinc-800': { backgroundGradient: { colors: [ '#0027272a', '#27272a' ] } }
38
+ '.from-zinc-900': { backgroundGradient: { colors: [ '#0018181b', '#18181b' ] } }
39
+ '.from-zinc-950': { backgroundGradient: { colors: [ '#0009090b', '#09090b' ] } }
40
+ '.from-neutral-50': { backgroundGradient: { colors: [ '#00fafafa', '#fafafa' ] } }
41
+ '.from-neutral-100': { backgroundGradient: { colors: [ '#00f5f5f5', '#f5f5f5' ] } }
42
+ '.from-neutral-200': { backgroundGradient: { colors: [ '#00e5e5e5', '#e5e5e5' ] } }
43
+ '.from-neutral-300': { backgroundGradient: { colors: [ '#00d4d4d4', '#d4d4d4' ] } }
44
+ '.from-neutral-400': { backgroundGradient: { colors: [ '#00a3a3a3', '#a3a3a3' ] } }
45
+ '.from-neutral-500': { backgroundGradient: { colors: [ '#00737373', '#737373' ] } }
46
+ '.from-neutral-600': { backgroundGradient: { colors: [ '#00525252', '#525252' ] } }
47
+ '.from-neutral-700': { backgroundGradient: { colors: [ '#00404040', '#404040' ] } }
48
+ '.from-neutral-800': { backgroundGradient: { colors: [ '#00262626', '#262626' ] } }
49
+ '.from-neutral-900': { backgroundGradient: { colors: [ '#00171717', '#171717' ] } }
50
+ '.from-neutral-950': { backgroundGradient: { colors: [ '#000a0a0a', '#0a0a0a' ] } }
51
+ '.from-stone-50': { backgroundGradient: { colors: [ '#00fafaf9', '#fafaf9' ] } }
52
+ '.from-stone-100': { backgroundGradient: { colors: [ '#00f5f5f4', '#f5f5f4' ] } }
53
+ '.from-stone-200': { backgroundGradient: { colors: [ '#00e7e5e4', '#e7e5e4' ] } }
54
+ '.from-stone-300': { backgroundGradient: { colors: [ '#00d6d3d1', '#d6d3d1' ] } }
55
+ '.from-stone-400': { backgroundGradient: { colors: [ '#00a8a29e', '#a8a29e' ] } }
56
+ '.from-stone-500': { backgroundGradient: { colors: [ '#0078716c', '#78716c' ] } }
57
+ '.from-stone-600': { backgroundGradient: { colors: [ '#0057534e', '#57534e' ] } }
58
+ '.from-stone-700': { backgroundGradient: { colors: [ '#0044403c', '#44403c' ] } }
59
+ '.from-stone-800': { backgroundGradient: { colors: [ '#00292524', '#292524' ] } }
60
+ '.from-stone-900': { backgroundGradient: { colors: [ '#001c1917', '#1c1917' ] } }
61
+ '.from-stone-950': { backgroundGradient: { colors: [ '#000c0a09', '#0c0a09' ] } }
62
+ '.from-red-50': { backgroundGradient: { colors: [ '#00fef2f2', '#fef2f2' ] } }
63
+ '.from-red-100': { backgroundGradient: { colors: [ '#00fee2e2', '#fee2e2' ] } }
64
+ '.from-red-200': { backgroundGradient: { colors: [ '#00fecaca', '#fecaca' ] } }
65
+ '.from-red-300': { backgroundGradient: { colors: [ '#00fca5a5', '#fca5a5' ] } }
66
+ '.from-red-400': { backgroundGradient: { colors: [ '#00f87171', '#f87171' ] } }
67
+ '.from-red-500': { backgroundGradient: { colors: [ '#00ef4444', '#ef4444' ] } }
68
+ '.from-red-600': { backgroundGradient: { colors: [ '#00dc2626', '#dc2626' ] } }
69
+ '.from-red-700': { backgroundGradient: { colors: [ '#00b91c1c', '#b91c1c' ] } }
70
+ '.from-red-800': { backgroundGradient: { colors: [ '#00991b1b', '#991b1b' ] } }
71
+ '.from-red-900': { backgroundGradient: { colors: [ '#007f1d1d', '#7f1d1d' ] } }
72
+ '.from-red-950': { backgroundGradient: { colors: [ '#00450a0a', '#450a0a' ] } }
73
+ '.from-orange-50': { backgroundGradient: { colors: [ '#00fff7ed', '#fff7ed' ] } }
74
+ '.from-orange-100': { backgroundGradient: { colors: [ '#00ffedd5', '#ffedd5' ] } }
75
+ '.from-orange-200': { backgroundGradient: { colors: [ '#00fed7aa', '#fed7aa' ] } }
76
+ '.from-orange-300': { backgroundGradient: { colors: [ '#00fdba74', '#fdba74' ] } }
77
+ '.from-orange-400': { backgroundGradient: { colors: [ '#00fb923c', '#fb923c' ] } }
78
+ '.from-orange-500': { backgroundGradient: { colors: [ '#00f97316', '#f97316' ] } }
79
+ '.from-orange-600': { backgroundGradient: { colors: [ '#00ea580c', '#ea580c' ] } }
80
+ '.from-orange-700': { backgroundGradient: { colors: [ '#00c2410c', '#c2410c' ] } }
81
+ '.from-orange-800': { backgroundGradient: { colors: [ '#009a3412', '#9a3412' ] } }
82
+ '.from-orange-900': { backgroundGradient: { colors: [ '#007c2d12', '#7c2d12' ] } }
83
+ '.from-orange-950': { backgroundGradient: { colors: [ '#00431407', '#431407' ] } }
84
+ '.from-amber-50': { backgroundGradient: { colors: [ '#00fffbeb', '#fffbeb' ] } }
85
+ '.from-amber-100': { backgroundGradient: { colors: [ '#00fef3c7', '#fef3c7' ] } }
86
+ '.from-amber-200': { backgroundGradient: { colors: [ '#00fde68a', '#fde68a' ] } }
87
+ '.from-amber-300': { backgroundGradient: { colors: [ '#00fcd34d', '#fcd34d' ] } }
88
+ '.from-amber-400': { backgroundGradient: { colors: [ '#00fbbf24', '#fbbf24' ] } }
89
+ '.from-amber-500': { backgroundGradient: { colors: [ '#00f59e0b', '#f59e0b' ] } }
90
+ '.from-amber-600': { backgroundGradient: { colors: [ '#00d97706', '#d97706' ] } }
91
+ '.from-amber-700': { backgroundGradient: { colors: [ '#00b45309', '#b45309' ] } }
92
+ '.from-amber-800': { backgroundGradient: { colors: [ '#0092400e', '#92400e' ] } }
93
+ '.from-amber-900': { backgroundGradient: { colors: [ '#0078350f', '#78350f' ] } }
94
+ '.from-amber-950': { backgroundGradient: { colors: [ '#00451a03', '#451a03' ] } }
95
+ '.from-yellow-50': { backgroundGradient: { colors: [ '#00fefce8', '#fefce8' ] } }
96
+ '.from-yellow-100': { backgroundGradient: { colors: [ '#00fef9c3', '#fef9c3' ] } }
97
+ '.from-yellow-200': { backgroundGradient: { colors: [ '#00fef08a', '#fef08a' ] } }
98
+ '.from-yellow-300': { backgroundGradient: { colors: [ '#00fde047', '#fde047' ] } }
99
+ '.from-yellow-400': { backgroundGradient: { colors: [ '#00facc15', '#facc15' ] } }
100
+ '.from-yellow-500': { backgroundGradient: { colors: [ '#00eab308', '#eab308' ] } }
101
+ '.from-yellow-600': { backgroundGradient: { colors: [ '#00ca8a04', '#ca8a04' ] } }
102
+ '.from-yellow-700': { backgroundGradient: { colors: [ '#00a16207', '#a16207' ] } }
103
+ '.from-yellow-800': { backgroundGradient: { colors: [ '#00854d0e', '#854d0e' ] } }
104
+ '.from-yellow-900': { backgroundGradient: { colors: [ '#00713f12', '#713f12' ] } }
105
+ '.from-yellow-950': { backgroundGradient: { colors: [ '#00422006', '#422006' ] } }
106
+ '.from-lime-50': { backgroundGradient: { colors: [ '#00f7fee7', '#f7fee7' ] } }
107
+ '.from-lime-100': { backgroundGradient: { colors: [ '#00ecfccb', '#ecfccb' ] } }
108
+ '.from-lime-200': { backgroundGradient: { colors: [ '#00d9f99d', '#d9f99d' ] } }
109
+ '.from-lime-300': { backgroundGradient: { colors: [ '#00bef264', '#bef264' ] } }
110
+ '.from-lime-400': { backgroundGradient: { colors: [ '#00a3e635', '#a3e635' ] } }
111
+ '.from-lime-500': { backgroundGradient: { colors: [ '#0084cc16', '#84cc16' ] } }
112
+ '.from-lime-600': { backgroundGradient: { colors: [ '#0065a30d', '#65a30d' ] } }
113
+ '.from-lime-700': { backgroundGradient: { colors: [ '#004d7c0f', '#4d7c0f' ] } }
114
+ '.from-lime-800': { backgroundGradient: { colors: [ '#003f6212', '#3f6212' ] } }
115
+ '.from-lime-900': { backgroundGradient: { colors: [ '#00365314', '#365314' ] } }
116
+ '.from-lime-950': { backgroundGradient: { colors: [ '#001a2e05', '#1a2e05' ] } }
117
+ '.from-green-50': { backgroundGradient: { colors: [ '#00f0fdf4', '#f0fdf4' ] } }
118
+ '.from-green-100': { backgroundGradient: { colors: [ '#00dcfce7', '#dcfce7' ] } }
119
+ '.from-green-200': { backgroundGradient: { colors: [ '#00bbf7d0', '#bbf7d0' ] } }
120
+ '.from-green-300': { backgroundGradient: { colors: [ '#0086efac', '#86efac' ] } }
121
+ '.from-green-400': { backgroundGradient: { colors: [ '#004ade80', '#4ade80' ] } }
122
+ '.from-green-500': { backgroundGradient: { colors: [ '#0022c55e', '#22c55e' ] } }
123
+ '.from-green-600': { backgroundGradient: { colors: [ '#0016a34a', '#16a34a' ] } }
124
+ '.from-green-700': { backgroundGradient: { colors: [ '#0015803d', '#15803d' ] } }
125
+ '.from-green-800': { backgroundGradient: { colors: [ '#00166534', '#166534' ] } }
126
+ '.from-green-900': { backgroundGradient: { colors: [ '#0014532d', '#14532d' ] } }
127
+ '.from-green-950': { backgroundGradient: { colors: [ '#00052e16', '#052e16' ] } }
128
+ '.from-emerald-50': { backgroundGradient: { colors: [ '#00ecfdf5', '#ecfdf5' ] } }
129
+ '.from-emerald-100': { backgroundGradient: { colors: [ '#00d1fae5', '#d1fae5' ] } }
130
+ '.from-emerald-200': { backgroundGradient: { colors: [ '#00a7f3d0', '#a7f3d0' ] } }
131
+ '.from-emerald-300': { backgroundGradient: { colors: [ '#006ee7b7', '#6ee7b7' ] } }
132
+ '.from-emerald-400': { backgroundGradient: { colors: [ '#0034d399', '#34d399' ] } }
133
+ '.from-emerald-500': { backgroundGradient: { colors: [ '#0010b981', '#10b981' ] } }
134
+ '.from-emerald-600': { backgroundGradient: { colors: [ '#00059669', '#059669' ] } }
135
+ '.from-emerald-700': { backgroundGradient: { colors: [ '#00047857', '#047857' ] } }
136
+ '.from-emerald-800': { backgroundGradient: { colors: [ '#00065f46', '#065f46' ] } }
137
+ '.from-emerald-900': { backgroundGradient: { colors: [ '#00064e3b', '#064e3b' ] } }
138
+ '.from-emerald-950': { backgroundGradient: { colors: [ '#00022c22', '#022c22' ] } }
139
+ '.from-teal-50': { backgroundGradient: { colors: [ '#00f0fdfa', '#f0fdfa' ] } }
140
+ '.from-teal-100': { backgroundGradient: { colors: [ '#00ccfbf1', '#ccfbf1' ] } }
141
+ '.from-teal-200': { backgroundGradient: { colors: [ '#0099f6e4', '#99f6e4' ] } }
142
+ '.from-teal-300': { backgroundGradient: { colors: [ '#005eead4', '#5eead4' ] } }
143
+ '.from-teal-400': { backgroundGradient: { colors: [ '#002dd4bf', '#2dd4bf' ] } }
144
+ '.from-teal-500': { backgroundGradient: { colors: [ '#0014b8a6', '#14b8a6' ] } }
145
+ '.from-teal-600': { backgroundGradient: { colors: [ '#000d9488', '#0d9488' ] } }
146
+ '.from-teal-700': { backgroundGradient: { colors: [ '#000f766e', '#0f766e' ] } }
147
+ '.from-teal-800': { backgroundGradient: { colors: [ '#00115e59', '#115e59' ] } }
148
+ '.from-teal-900': { backgroundGradient: { colors: [ '#00134e4a', '#134e4a' ] } }
149
+ '.from-teal-950': { backgroundGradient: { colors: [ '#00042f2e', '#042f2e' ] } }
150
+ '.from-cyan-50': { backgroundGradient: { colors: [ '#00ecfeff', '#ecfeff' ] } }
151
+ '.from-cyan-100': { backgroundGradient: { colors: [ '#00cffafe', '#cffafe' ] } }
152
+ '.from-cyan-200': { backgroundGradient: { colors: [ '#00a5f3fc', '#a5f3fc' ] } }
153
+ '.from-cyan-300': { backgroundGradient: { colors: [ '#0067e8f9', '#67e8f9' ] } }
154
+ '.from-cyan-400': { backgroundGradient: { colors: [ '#0022d3ee', '#22d3ee' ] } }
155
+ '.from-cyan-500': { backgroundGradient: { colors: [ '#0006b6d4', '#06b6d4' ] } }
156
+ '.from-cyan-600': { backgroundGradient: { colors: [ '#000891b2', '#0891b2' ] } }
157
+ '.from-cyan-700': { backgroundGradient: { colors: [ '#000e7490', '#0e7490' ] } }
158
+ '.from-cyan-800': { backgroundGradient: { colors: [ '#00155e75', '#155e75' ] } }
159
+ '.from-cyan-900': { backgroundGradient: { colors: [ '#00164e63', '#164e63' ] } }
160
+ '.from-cyan-950': { backgroundGradient: { colors: [ '#00083344', '#083344' ] } }
161
+ '.from-sky-50': { backgroundGradient: { colors: [ '#00f0f9ff', '#f0f9ff' ] } }
162
+ '.from-sky-100': { backgroundGradient: { colors: [ '#00e0f2fe', '#e0f2fe' ] } }
163
+ '.from-sky-200': { backgroundGradient: { colors: [ '#00bae6fd', '#bae6fd' ] } }
164
+ '.from-sky-300': { backgroundGradient: { colors: [ '#007dd3fc', '#7dd3fc' ] } }
165
+ '.from-sky-400': { backgroundGradient: { colors: [ '#0038bdf8', '#38bdf8' ] } }
166
+ '.from-sky-500': { backgroundGradient: { colors: [ '#000ea5e9', '#0ea5e9' ] } }
167
+ '.from-sky-600': { backgroundGradient: { colors: [ '#000284c7', '#0284c7' ] } }
168
+ '.from-sky-700': { backgroundGradient: { colors: [ '#000369a1', '#0369a1' ] } }
169
+ '.from-sky-800': { backgroundGradient: { colors: [ '#00075985', '#075985' ] } }
170
+ '.from-sky-900': { backgroundGradient: { colors: [ '#000c4a6e', '#0c4a6e' ] } }
171
+ '.from-sky-950': { backgroundGradient: { colors: [ '#00082f49', '#082f49' ] } }
172
+ '.from-blue-50': { backgroundGradient: { colors: [ '#00eff6ff', '#eff6ff' ] } }
173
+ '.from-blue-100': { backgroundGradient: { colors: [ '#00dbeafe', '#dbeafe' ] } }
174
+ '.from-blue-200': { backgroundGradient: { colors: [ '#00bfdbfe', '#bfdbfe' ] } }
175
+ '.from-blue-300': { backgroundGradient: { colors: [ '#0093c5fd', '#93c5fd' ] } }
176
+ '.from-blue-400': { backgroundGradient: { colors: [ '#0060a5fa', '#60a5fa' ] } }
177
+ '.from-blue-500': { backgroundGradient: { colors: [ '#003b82f6', '#3b82f6' ] } }
178
+ '.from-blue-600': { backgroundGradient: { colors: [ '#002563eb', '#2563eb' ] } }
179
+ '.from-blue-700': { backgroundGradient: { colors: [ '#001d4ed8', '#1d4ed8' ] } }
180
+ '.from-blue-800': { backgroundGradient: { colors: [ '#001e40af', '#1e40af' ] } }
181
+ '.from-blue-900': { backgroundGradient: { colors: [ '#001e3a8a', '#1e3a8a' ] } }
182
+ '.from-blue-950': { backgroundGradient: { colors: [ '#00172554', '#172554' ] } }
183
+ '.from-indigo-50': { backgroundGradient: { colors: [ '#00eef2ff', '#eef2ff' ] } }
184
+ '.from-indigo-100': { backgroundGradient: { colors: [ '#00e0e7ff', '#e0e7ff' ] } }
185
+ '.from-indigo-200': { backgroundGradient: { colors: [ '#00c7d2fe', '#c7d2fe' ] } }
186
+ '.from-indigo-300': { backgroundGradient: { colors: [ '#00a5b4fc', '#a5b4fc' ] } }
187
+ '.from-indigo-400': { backgroundGradient: { colors: [ '#00818cf8', '#818cf8' ] } }
188
+ '.from-indigo-500': { backgroundGradient: { colors: [ '#006366f1', '#6366f1' ] } }
189
+ '.from-indigo-600': { backgroundGradient: { colors: [ '#004f46e5', '#4f46e5' ] } }
190
+ '.from-indigo-700': { backgroundGradient: { colors: [ '#004338ca', '#4338ca' ] } }
191
+ '.from-indigo-800': { backgroundGradient: { colors: [ '#003730a3', '#3730a3' ] } }
192
+ '.from-indigo-900': { backgroundGradient: { colors: [ '#00312e81', '#312e81' ] } }
193
+ '.from-indigo-950': { backgroundGradient: { colors: [ '#001e1b4b', '#1e1b4b' ] } }
194
+ '.from-violet-50': { backgroundGradient: { colors: [ '#00f5f3ff', '#f5f3ff' ] } }
195
+ '.from-violet-100': { backgroundGradient: { colors: [ '#00ede9fe', '#ede9fe' ] } }
196
+ '.from-violet-200': { backgroundGradient: { colors: [ '#00ddd6fe', '#ddd6fe' ] } }
197
+ '.from-violet-300': { backgroundGradient: { colors: [ '#00c4b5fd', '#c4b5fd' ] } }
198
+ '.from-violet-400': { backgroundGradient: { colors: [ '#00a78bfa', '#a78bfa' ] } }
199
+ '.from-violet-500': { backgroundGradient: { colors: [ '#008b5cf6', '#8b5cf6' ] } }
200
+ '.from-violet-600': { backgroundGradient: { colors: [ '#007c3aed', '#7c3aed' ] } }
201
+ '.from-violet-700': { backgroundGradient: { colors: [ '#006d28d9', '#6d28d9' ] } }
202
+ '.from-violet-800': { backgroundGradient: { colors: [ '#005b21b6', '#5b21b6' ] } }
203
+ '.from-violet-900': { backgroundGradient: { colors: [ '#004c1d95', '#4c1d95' ] } }
204
+ '.from-violet-950': { backgroundGradient: { colors: [ '#002e1065', '#2e1065' ] } }
205
+ '.from-purple-50': { backgroundGradient: { colors: [ '#00faf5ff', '#faf5ff' ] } }
206
+ '.from-purple-100': { backgroundGradient: { colors: [ '#00f3e8ff', '#f3e8ff' ] } }
207
+ '.from-purple-200': { backgroundGradient: { colors: [ '#00e9d5ff', '#e9d5ff' ] } }
208
+ '.from-purple-300': { backgroundGradient: { colors: [ '#00d8b4fe', '#d8b4fe' ] } }
209
+ '.from-purple-400': { backgroundGradient: { colors: [ '#00c084fc', '#c084fc' ] } }
210
+ '.from-purple-500': { backgroundGradient: { colors: [ '#00a855f7', '#a855f7' ] } }
211
+ '.from-purple-600': { backgroundGradient: { colors: [ '#009333ea', '#9333ea' ] } }
212
+ '.from-purple-700': { backgroundGradient: { colors: [ '#007e22ce', '#7e22ce' ] } }
213
+ '.from-purple-800': { backgroundGradient: { colors: [ '#006b21a8', '#6b21a8' ] } }
214
+ '.from-purple-900': { backgroundGradient: { colors: [ '#00581c87', '#581c87' ] } }
215
+ '.from-purple-950': { backgroundGradient: { colors: [ '#003b0764', '#3b0764' ] } }
216
+ '.from-fuchsia-50': { backgroundGradient: { colors: [ '#00fdf4ff', '#fdf4ff' ] } }
217
+ '.from-fuchsia-100': { backgroundGradient: { colors: [ '#00fae8ff', '#fae8ff' ] } }
218
+ '.from-fuchsia-200': { backgroundGradient: { colors: [ '#00f5d0fe', '#f5d0fe' ] } }
219
+ '.from-fuchsia-300': { backgroundGradient: { colors: [ '#00f0abfc', '#f0abfc' ] } }
220
+ '.from-fuchsia-400': { backgroundGradient: { colors: [ '#00e879f9', '#e879f9' ] } }
221
+ '.from-fuchsia-500': { backgroundGradient: { colors: [ '#00d946ef', '#d946ef' ] } }
222
+ '.from-fuchsia-600': { backgroundGradient: { colors: [ '#00c026d3', '#c026d3' ] } }
223
+ '.from-fuchsia-700': { backgroundGradient: { colors: [ '#00a21caf', '#a21caf' ] } }
224
+ '.from-fuchsia-800': { backgroundGradient: { colors: [ '#0086198f', '#86198f' ] } }
225
+ '.from-fuchsia-900': { backgroundGradient: { colors: [ '#00701a75', '#701a75' ] } }
226
+ '.from-fuchsia-950': { backgroundGradient: { colors: [ '#004a044e', '#4a044e' ] } }
227
+ '.from-pink-50': { backgroundGradient: { colors: [ '#00fdf2f8', '#fdf2f8' ] } }
228
+ '.from-pink-100': { backgroundGradient: { colors: [ '#00fce7f3', '#fce7f3' ] } }
229
+ '.from-pink-200': { backgroundGradient: { colors: [ '#00fbcfe8', '#fbcfe8' ] } }
230
+ '.from-pink-300': { backgroundGradient: { colors: [ '#00f9a8d4', '#f9a8d4' ] } }
231
+ '.from-pink-400': { backgroundGradient: { colors: [ '#00f472b6', '#f472b6' ] } }
232
+ '.from-pink-500': { backgroundGradient: { colors: [ '#00ec4899', '#ec4899' ] } }
233
+ '.from-pink-600': { backgroundGradient: { colors: [ '#00db2777', '#db2777' ] } }
234
+ '.from-pink-700': { backgroundGradient: { colors: [ '#00be185d', '#be185d' ] } }
235
+ '.from-pink-800': { backgroundGradient: { colors: [ '#009d174d', '#9d174d' ] } }
236
+ '.from-pink-900': { backgroundGradient: { colors: [ '#00831843', '#831843' ] } }
237
+ '.from-pink-950': { backgroundGradient: { colors: [ '#00500724', '#500724' ] } }
238
+ '.from-rose-50': { backgroundGradient: { colors: [ '#00fff1f2', '#fff1f2' ] } }
239
+ '.from-rose-100': { backgroundGradient: { colors: [ '#00ffe4e6', '#ffe4e6' ] } }
240
+ '.from-rose-200': { backgroundGradient: { colors: [ '#00fecdd3', '#fecdd3' ] } }
241
+ '.from-rose-300': { backgroundGradient: { colors: [ '#00fda4af', '#fda4af' ] } }
242
+ '.from-rose-400': { backgroundGradient: { colors: [ '#00fb7185', '#fb7185' ] } }
243
+ '.from-rose-500': { backgroundGradient: { colors: [ '#00f43f5e', '#f43f5e' ] } }
244
+ '.from-rose-600': { backgroundGradient: { colors: [ '#00e11d48', '#e11d48' ] } }
245
+ '.from-rose-700': { backgroundGradient: { colors: [ '#00be123c', '#be123c' ] } }
246
+ '.from-rose-800': { backgroundGradient: { colors: [ '#009f1239', '#9f1239' ] } }
247
+ '.from-rose-900': { backgroundGradient: { colors: [ '#00881337', '#881337' ] } }
248
+ '.from-rose-950': { backgroundGradient: { colors: [ '#004c0519', '#4c0519' ] } }
249
+
250
+ // Property(ies): backgroundGradient: colors - To Color
251
+ // Component(s): Ti.UI.ListItem, Ti.UI.View
252
+ '.to-transparent': { backgroundGradient: { colors: [ 'transparent' ] } }
253
+ '.to-black': { backgroundGradient: { colors: [ '#000000' ] } }
254
+ '.to-white': { backgroundGradient: { colors: [ '#ffffff' ] } }
255
+ '.to-slate-50': { backgroundGradient: { colors: [ '#f8fafc' ] } }
256
+ '.to-slate-100': { backgroundGradient: { colors: [ '#f1f5f9' ] } }
257
+ '.to-slate-200': { backgroundGradient: { colors: [ '#e2e8f0' ] } }
258
+ '.to-slate-300': { backgroundGradient: { colors: [ '#cbd5e1' ] } }
259
+ '.to-slate-400': { backgroundGradient: { colors: [ '#94a3b8' ] } }
260
+ '.to-slate-500': { backgroundGradient: { colors: [ '#64748b' ] } }
261
+ '.to-slate-600': { backgroundGradient: { colors: [ '#475569' ] } }
262
+ '.to-slate-700': { backgroundGradient: { colors: [ '#334155' ] } }
263
+ '.to-slate-800': { backgroundGradient: { colors: [ '#1e293b' ] } }
264
+ '.to-slate-900': { backgroundGradient: { colors: [ '#0f172a' ] } }
265
+ '.to-slate-950': { backgroundGradient: { colors: [ '#020617' ] } }
266
+ '.to-gray-50': { backgroundGradient: { colors: [ '#f9fafb' ] } }
267
+ '.to-gray-100': { backgroundGradient: { colors: [ '#f3f4f6' ] } }
268
+ '.to-gray-200': { backgroundGradient: { colors: [ '#e5e7eb' ] } }
269
+ '.to-gray-300': { backgroundGradient: { colors: [ '#d1d5db' ] } }
270
+ '.to-gray-400': { backgroundGradient: { colors: [ '#9ca3af' ] } }
271
+ '.to-gray-500': { backgroundGradient: { colors: [ '#6b7280' ] } }
272
+ '.to-gray-600': { backgroundGradient: { colors: [ '#4b5563' ] } }
273
+ '.to-gray-700': { backgroundGradient: { colors: [ '#374151' ] } }
274
+ '.to-gray-800': { backgroundGradient: { colors: [ '#1f2937' ] } }
275
+ '.to-gray-900': { backgroundGradient: { colors: [ '#111827' ] } }
276
+ '.to-gray-950': { backgroundGradient: { colors: [ '#030712' ] } }
277
+ '.to-zinc-50': { backgroundGradient: { colors: [ '#fafafa' ] } }
278
+ '.to-zinc-100': { backgroundGradient: { colors: [ '#f4f4f5' ] } }
279
+ '.to-zinc-200': { backgroundGradient: { colors: [ '#e4e4e7' ] } }
280
+ '.to-zinc-300': { backgroundGradient: { colors: [ '#d4d4d8' ] } }
281
+ '.to-zinc-400': { backgroundGradient: { colors: [ '#a1a1aa' ] } }
282
+ '.to-zinc-500': { backgroundGradient: { colors: [ '#71717a' ] } }
283
+ '.to-zinc-600': { backgroundGradient: { colors: [ '#52525b' ] } }
284
+ '.to-zinc-700': { backgroundGradient: { colors: [ '#3f3f46' ] } }
285
+ '.to-zinc-800': { backgroundGradient: { colors: [ '#27272a' ] } }
286
+ '.to-zinc-900': { backgroundGradient: { colors: [ '#18181b' ] } }
287
+ '.to-zinc-950': { backgroundGradient: { colors: [ '#09090b' ] } }
288
+ '.to-neutral-50': { backgroundGradient: { colors: [ '#fafafa' ] } }
289
+ '.to-neutral-100': { backgroundGradient: { colors: [ '#f5f5f5' ] } }
290
+ '.to-neutral-200': { backgroundGradient: { colors: [ '#e5e5e5' ] } }
291
+ '.to-neutral-300': { backgroundGradient: { colors: [ '#d4d4d4' ] } }
292
+ '.to-neutral-400': { backgroundGradient: { colors: [ '#a3a3a3' ] } }
293
+ '.to-neutral-500': { backgroundGradient: { colors: [ '#737373' ] } }
294
+ '.to-neutral-600': { backgroundGradient: { colors: [ '#525252' ] } }
295
+ '.to-neutral-700': { backgroundGradient: { colors: [ '#404040' ] } }
296
+ '.to-neutral-800': { backgroundGradient: { colors: [ '#262626' ] } }
297
+ '.to-neutral-900': { backgroundGradient: { colors: [ '#171717' ] } }
298
+ '.to-neutral-950': { backgroundGradient: { colors: [ '#0a0a0a' ] } }
299
+ '.to-stone-50': { backgroundGradient: { colors: [ '#fafaf9' ] } }
300
+ '.to-stone-100': { backgroundGradient: { colors: [ '#f5f5f4' ] } }
301
+ '.to-stone-200': { backgroundGradient: { colors: [ '#e7e5e4' ] } }
302
+ '.to-stone-300': { backgroundGradient: { colors: [ '#d6d3d1' ] } }
303
+ '.to-stone-400': { backgroundGradient: { colors: [ '#a8a29e' ] } }
304
+ '.to-stone-500': { backgroundGradient: { colors: [ '#78716c' ] } }
305
+ '.to-stone-600': { backgroundGradient: { colors: [ '#57534e' ] } }
306
+ '.to-stone-700': { backgroundGradient: { colors: [ '#44403c' ] } }
307
+ '.to-stone-800': { backgroundGradient: { colors: [ '#292524' ] } }
308
+ '.to-stone-900': { backgroundGradient: { colors: [ '#1c1917' ] } }
309
+ '.to-stone-950': { backgroundGradient: { colors: [ '#0c0a09' ] } }
310
+ '.to-red-50': { backgroundGradient: { colors: [ '#fef2f2' ] } }
311
+ '.to-red-100': { backgroundGradient: { colors: [ '#fee2e2' ] } }
312
+ '.to-red-200': { backgroundGradient: { colors: [ '#fecaca' ] } }
313
+ '.to-red-300': { backgroundGradient: { colors: [ '#fca5a5' ] } }
314
+ '.to-red-400': { backgroundGradient: { colors: [ '#f87171' ] } }
315
+ '.to-red-500': { backgroundGradient: { colors: [ '#ef4444' ] } }
316
+ '.to-red-600': { backgroundGradient: { colors: [ '#dc2626' ] } }
317
+ '.to-red-700': { backgroundGradient: { colors: [ '#b91c1c' ] } }
318
+ '.to-red-800': { backgroundGradient: { colors: [ '#991b1b' ] } }
319
+ '.to-red-900': { backgroundGradient: { colors: [ '#7f1d1d' ] } }
320
+ '.to-red-950': { backgroundGradient: { colors: [ '#450a0a' ] } }
321
+ '.to-orange-50': { backgroundGradient: { colors: [ '#fff7ed' ] } }
322
+ '.to-orange-100': { backgroundGradient: { colors: [ '#ffedd5' ] } }
323
+ '.to-orange-200': { backgroundGradient: { colors: [ '#fed7aa' ] } }
324
+ '.to-orange-300': { backgroundGradient: { colors: [ '#fdba74' ] } }
325
+ '.to-orange-400': { backgroundGradient: { colors: [ '#fb923c' ] } }
326
+ '.to-orange-500': { backgroundGradient: { colors: [ '#f97316' ] } }
327
+ '.to-orange-600': { backgroundGradient: { colors: [ '#ea580c' ] } }
328
+ '.to-orange-700': { backgroundGradient: { colors: [ '#c2410c' ] } }
329
+ '.to-orange-800': { backgroundGradient: { colors: [ '#9a3412' ] } }
330
+ '.to-orange-900': { backgroundGradient: { colors: [ '#7c2d12' ] } }
331
+ '.to-orange-950': { backgroundGradient: { colors: [ '#431407' ] } }
332
+ '.to-amber-50': { backgroundGradient: { colors: [ '#fffbeb' ] } }
333
+ '.to-amber-100': { backgroundGradient: { colors: [ '#fef3c7' ] } }
334
+ '.to-amber-200': { backgroundGradient: { colors: [ '#fde68a' ] } }
335
+ '.to-amber-300': { backgroundGradient: { colors: [ '#fcd34d' ] } }
336
+ '.to-amber-400': { backgroundGradient: { colors: [ '#fbbf24' ] } }
337
+ '.to-amber-500': { backgroundGradient: { colors: [ '#f59e0b' ] } }
338
+ '.to-amber-600': { backgroundGradient: { colors: [ '#d97706' ] } }
339
+ '.to-amber-700': { backgroundGradient: { colors: [ '#b45309' ] } }
340
+ '.to-amber-800': { backgroundGradient: { colors: [ '#92400e' ] } }
341
+ '.to-amber-900': { backgroundGradient: { colors: [ '#78350f' ] } }
342
+ '.to-amber-950': { backgroundGradient: { colors: [ '#451a03' ] } }
343
+ '.to-yellow-50': { backgroundGradient: { colors: [ '#fefce8' ] } }
344
+ '.to-yellow-100': { backgroundGradient: { colors: [ '#fef9c3' ] } }
345
+ '.to-yellow-200': { backgroundGradient: { colors: [ '#fef08a' ] } }
346
+ '.to-yellow-300': { backgroundGradient: { colors: [ '#fde047' ] } }
347
+ '.to-yellow-400': { backgroundGradient: { colors: [ '#facc15' ] } }
348
+ '.to-yellow-500': { backgroundGradient: { colors: [ '#eab308' ] } }
349
+ '.to-yellow-600': { backgroundGradient: { colors: [ '#ca8a04' ] } }
350
+ '.to-yellow-700': { backgroundGradient: { colors: [ '#a16207' ] } }
351
+ '.to-yellow-800': { backgroundGradient: { colors: [ '#854d0e' ] } }
352
+ '.to-yellow-900': { backgroundGradient: { colors: [ '#713f12' ] } }
353
+ '.to-yellow-950': { backgroundGradient: { colors: [ '#422006' ] } }
354
+ '.to-lime-50': { backgroundGradient: { colors: [ '#f7fee7' ] } }
355
+ '.to-lime-100': { backgroundGradient: { colors: [ '#ecfccb' ] } }
356
+ '.to-lime-200': { backgroundGradient: { colors: [ '#d9f99d' ] } }
357
+ '.to-lime-300': { backgroundGradient: { colors: [ '#bef264' ] } }
358
+ '.to-lime-400': { backgroundGradient: { colors: [ '#a3e635' ] } }
359
+ '.to-lime-500': { backgroundGradient: { colors: [ '#84cc16' ] } }
360
+ '.to-lime-600': { backgroundGradient: { colors: [ '#65a30d' ] } }
361
+ '.to-lime-700': { backgroundGradient: { colors: [ '#4d7c0f' ] } }
362
+ '.to-lime-800': { backgroundGradient: { colors: [ '#3f6212' ] } }
363
+ '.to-lime-900': { backgroundGradient: { colors: [ '#365314' ] } }
364
+ '.to-lime-950': { backgroundGradient: { colors: [ '#1a2e05' ] } }
365
+ '.to-green-50': { backgroundGradient: { colors: [ '#f0fdf4' ] } }
366
+ '.to-green-100': { backgroundGradient: { colors: [ '#dcfce7' ] } }
367
+ '.to-green-200': { backgroundGradient: { colors: [ '#bbf7d0' ] } }
368
+ '.to-green-300': { backgroundGradient: { colors: [ '#86efac' ] } }
369
+ '.to-green-400': { backgroundGradient: { colors: [ '#4ade80' ] } }
370
+ '.to-green-500': { backgroundGradient: { colors: [ '#22c55e' ] } }
371
+ '.to-green-600': { backgroundGradient: { colors: [ '#16a34a' ] } }
372
+ '.to-green-700': { backgroundGradient: { colors: [ '#15803d' ] } }
373
+ '.to-green-800': { backgroundGradient: { colors: [ '#166534' ] } }
374
+ '.to-green-900': { backgroundGradient: { colors: [ '#14532d' ] } }
375
+ '.to-green-950': { backgroundGradient: { colors: [ '#052e16' ] } }
376
+ '.to-emerald-50': { backgroundGradient: { colors: [ '#ecfdf5' ] } }
377
+ '.to-emerald-100': { backgroundGradient: { colors: [ '#d1fae5' ] } }
378
+ '.to-emerald-200': { backgroundGradient: { colors: [ '#a7f3d0' ] } }
379
+ '.to-emerald-300': { backgroundGradient: { colors: [ '#6ee7b7' ] } }
380
+ '.to-emerald-400': { backgroundGradient: { colors: [ '#34d399' ] } }
381
+ '.to-emerald-500': { backgroundGradient: { colors: [ '#10b981' ] } }
382
+ '.to-emerald-600': { backgroundGradient: { colors: [ '#059669' ] } }
383
+ '.to-emerald-700': { backgroundGradient: { colors: [ '#047857' ] } }
384
+ '.to-emerald-800': { backgroundGradient: { colors: [ '#065f46' ] } }
385
+ '.to-emerald-900': { backgroundGradient: { colors: [ '#064e3b' ] } }
386
+ '.to-emerald-950': { backgroundGradient: { colors: [ '#022c22' ] } }
387
+ '.to-teal-50': { backgroundGradient: { colors: [ '#f0fdfa' ] } }
388
+ '.to-teal-100': { backgroundGradient: { colors: [ '#ccfbf1' ] } }
389
+ '.to-teal-200': { backgroundGradient: { colors: [ '#99f6e4' ] } }
390
+ '.to-teal-300': { backgroundGradient: { colors: [ '#5eead4' ] } }
391
+ '.to-teal-400': { backgroundGradient: { colors: [ '#2dd4bf' ] } }
392
+ '.to-teal-500': { backgroundGradient: { colors: [ '#14b8a6' ] } }
393
+ '.to-teal-600': { backgroundGradient: { colors: [ '#0d9488' ] } }
394
+ '.to-teal-700': { backgroundGradient: { colors: [ '#0f766e' ] } }
395
+ '.to-teal-800': { backgroundGradient: { colors: [ '#115e59' ] } }
396
+ '.to-teal-900': { backgroundGradient: { colors: [ '#134e4a' ] } }
397
+ '.to-teal-950': { backgroundGradient: { colors: [ '#042f2e' ] } }
398
+ '.to-cyan-50': { backgroundGradient: { colors: [ '#ecfeff' ] } }
399
+ '.to-cyan-100': { backgroundGradient: { colors: [ '#cffafe' ] } }
400
+ '.to-cyan-200': { backgroundGradient: { colors: [ '#a5f3fc' ] } }
401
+ '.to-cyan-300': { backgroundGradient: { colors: [ '#67e8f9' ] } }
402
+ '.to-cyan-400': { backgroundGradient: { colors: [ '#22d3ee' ] } }
403
+ '.to-cyan-500': { backgroundGradient: { colors: [ '#06b6d4' ] } }
404
+ '.to-cyan-600': { backgroundGradient: { colors: [ '#0891b2' ] } }
405
+ '.to-cyan-700': { backgroundGradient: { colors: [ '#0e7490' ] } }
406
+ '.to-cyan-800': { backgroundGradient: { colors: [ '#155e75' ] } }
407
+ '.to-cyan-900': { backgroundGradient: { colors: [ '#164e63' ] } }
408
+ '.to-cyan-950': { backgroundGradient: { colors: [ '#083344' ] } }
409
+ '.to-sky-50': { backgroundGradient: { colors: [ '#f0f9ff' ] } }
410
+ '.to-sky-100': { backgroundGradient: { colors: [ '#e0f2fe' ] } }
411
+ '.to-sky-200': { backgroundGradient: { colors: [ '#bae6fd' ] } }
412
+ '.to-sky-300': { backgroundGradient: { colors: [ '#7dd3fc' ] } }
413
+ '.to-sky-400': { backgroundGradient: { colors: [ '#38bdf8' ] } }
414
+ '.to-sky-500': { backgroundGradient: { colors: [ '#0ea5e9' ] } }
415
+ '.to-sky-600': { backgroundGradient: { colors: [ '#0284c7' ] } }
416
+ '.to-sky-700': { backgroundGradient: { colors: [ '#0369a1' ] } }
417
+ '.to-sky-800': { backgroundGradient: { colors: [ '#075985' ] } }
418
+ '.to-sky-900': { backgroundGradient: { colors: [ '#0c4a6e' ] } }
419
+ '.to-sky-950': { backgroundGradient: { colors: [ '#082f49' ] } }
420
+ '.to-blue-50': { backgroundGradient: { colors: [ '#eff6ff' ] } }
421
+ '.to-blue-100': { backgroundGradient: { colors: [ '#dbeafe' ] } }
422
+ '.to-blue-200': { backgroundGradient: { colors: [ '#bfdbfe' ] } }
423
+ '.to-blue-300': { backgroundGradient: { colors: [ '#93c5fd' ] } }
424
+ '.to-blue-400': { backgroundGradient: { colors: [ '#60a5fa' ] } }
425
+ '.to-blue-500': { backgroundGradient: { colors: [ '#3b82f6' ] } }
426
+ '.to-blue-600': { backgroundGradient: { colors: [ '#2563eb' ] } }
427
+ '.to-blue-700': { backgroundGradient: { colors: [ '#1d4ed8' ] } }
428
+ '.to-blue-800': { backgroundGradient: { colors: [ '#1e40af' ] } }
429
+ '.to-blue-900': { backgroundGradient: { colors: [ '#1e3a8a' ] } }
430
+ '.to-blue-950': { backgroundGradient: { colors: [ '#172554' ] } }
431
+ '.to-indigo-50': { backgroundGradient: { colors: [ '#eef2ff' ] } }
432
+ '.to-indigo-100': { backgroundGradient: { colors: [ '#e0e7ff' ] } }
433
+ '.to-indigo-200': { backgroundGradient: { colors: [ '#c7d2fe' ] } }
434
+ '.to-indigo-300': { backgroundGradient: { colors: [ '#a5b4fc' ] } }
435
+ '.to-indigo-400': { backgroundGradient: { colors: [ '#818cf8' ] } }
436
+ '.to-indigo-500': { backgroundGradient: { colors: [ '#6366f1' ] } }
437
+ '.to-indigo-600': { backgroundGradient: { colors: [ '#4f46e5' ] } }
438
+ '.to-indigo-700': { backgroundGradient: { colors: [ '#4338ca' ] } }
439
+ '.to-indigo-800': { backgroundGradient: { colors: [ '#3730a3' ] } }
440
+ '.to-indigo-900': { backgroundGradient: { colors: [ '#312e81' ] } }
441
+ '.to-indigo-950': { backgroundGradient: { colors: [ '#1e1b4b' ] } }
442
+ '.to-violet-50': { backgroundGradient: { colors: [ '#f5f3ff' ] } }
443
+ '.to-violet-100': { backgroundGradient: { colors: [ '#ede9fe' ] } }
444
+ '.to-violet-200': { backgroundGradient: { colors: [ '#ddd6fe' ] } }
445
+ '.to-violet-300': { backgroundGradient: { colors: [ '#c4b5fd' ] } }
446
+ '.to-violet-400': { backgroundGradient: { colors: [ '#a78bfa' ] } }
447
+ '.to-violet-500': { backgroundGradient: { colors: [ '#8b5cf6' ] } }
448
+ '.to-violet-600': { backgroundGradient: { colors: [ '#7c3aed' ] } }
449
+ '.to-violet-700': { backgroundGradient: { colors: [ '#6d28d9' ] } }
450
+ '.to-violet-800': { backgroundGradient: { colors: [ '#5b21b6' ] } }
451
+ '.to-violet-900': { backgroundGradient: { colors: [ '#4c1d95' ] } }
452
+ '.to-violet-950': { backgroundGradient: { colors: [ '#2e1065' ] } }
453
+ '.to-purple-50': { backgroundGradient: { colors: [ '#faf5ff' ] } }
454
+ '.to-purple-100': { backgroundGradient: { colors: [ '#f3e8ff' ] } }
455
+ '.to-purple-200': { backgroundGradient: { colors: [ '#e9d5ff' ] } }
456
+ '.to-purple-300': { backgroundGradient: { colors: [ '#d8b4fe' ] } }
457
+ '.to-purple-400': { backgroundGradient: { colors: [ '#c084fc' ] } }
458
+ '.to-purple-500': { backgroundGradient: { colors: [ '#a855f7' ] } }
459
+ '.to-purple-600': { backgroundGradient: { colors: [ '#9333ea' ] } }
460
+ '.to-purple-700': { backgroundGradient: { colors: [ '#7e22ce' ] } }
461
+ '.to-purple-800': { backgroundGradient: { colors: [ '#6b21a8' ] } }
462
+ '.to-purple-900': { backgroundGradient: { colors: [ '#581c87' ] } }
463
+ '.to-purple-950': { backgroundGradient: { colors: [ '#3b0764' ] } }
464
+ '.to-fuchsia-50': { backgroundGradient: { colors: [ '#fdf4ff' ] } }
465
+ '.to-fuchsia-100': { backgroundGradient: { colors: [ '#fae8ff' ] } }
466
+ '.to-fuchsia-200': { backgroundGradient: { colors: [ '#f5d0fe' ] } }
467
+ '.to-fuchsia-300': { backgroundGradient: { colors: [ '#f0abfc' ] } }
468
+ '.to-fuchsia-400': { backgroundGradient: { colors: [ '#e879f9' ] } }
469
+ '.to-fuchsia-500': { backgroundGradient: { colors: [ '#d946ef' ] } }
470
+ '.to-fuchsia-600': { backgroundGradient: { colors: [ '#c026d3' ] } }
471
+ '.to-fuchsia-700': { backgroundGradient: { colors: [ '#a21caf' ] } }
472
+ '.to-fuchsia-800': { backgroundGradient: { colors: [ '#86198f' ] } }
473
+ '.to-fuchsia-900': { backgroundGradient: { colors: [ '#701a75' ] } }
474
+ '.to-fuchsia-950': { backgroundGradient: { colors: [ '#4a044e' ] } }
475
+ '.to-pink-50': { backgroundGradient: { colors: [ '#fdf2f8' ] } }
476
+ '.to-pink-100': { backgroundGradient: { colors: [ '#fce7f3' ] } }
477
+ '.to-pink-200': { backgroundGradient: { colors: [ '#fbcfe8' ] } }
478
+ '.to-pink-300': { backgroundGradient: { colors: [ '#f9a8d4' ] } }
479
+ '.to-pink-400': { backgroundGradient: { colors: [ '#f472b6' ] } }
480
+ '.to-pink-500': { backgroundGradient: { colors: [ '#ec4899' ] } }
481
+ '.to-pink-600': { backgroundGradient: { colors: [ '#db2777' ] } }
482
+ '.to-pink-700': { backgroundGradient: { colors: [ '#be185d' ] } }
483
+ '.to-pink-800': { backgroundGradient: { colors: [ '#9d174d' ] } }
484
+ '.to-pink-900': { backgroundGradient: { colors: [ '#831843' ] } }
485
+ '.to-pink-950': { backgroundGradient: { colors: [ '#500724' ] } }
486
+ '.to-rose-50': { backgroundGradient: { colors: [ '#fff1f2' ] } }
487
+ '.to-rose-100': { backgroundGradient: { colors: [ '#ffe4e6' ] } }
488
+ '.to-rose-200': { backgroundGradient: { colors: [ '#fecdd3' ] } }
489
+ '.to-rose-300': { backgroundGradient: { colors: [ '#fda4af' ] } }
490
+ '.to-rose-400': { backgroundGradient: { colors: [ '#fb7185' ] } }
491
+ '.to-rose-500': { backgroundGradient: { colors: [ '#f43f5e' ] } }
492
+ '.to-rose-600': { backgroundGradient: { colors: [ '#e11d48' ] } }
493
+ '.to-rose-700': { backgroundGradient: { colors: [ '#be123c' ] } }
494
+ '.to-rose-800': { backgroundGradient: { colors: [ '#9f1239' ] } }
495
+ '.to-rose-900': { backgroundGradient: { colors: [ '#881337' ] } }
496
+ '.to-rose-950': { backgroundGradient: { colors: [ '#4c0519' ] } }
497
+ ```