@sproutsocial/seeds-react-theme 1.0.0

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 (101) hide show
  1. package/__flow__/dark/dataviz-palette.flow.js +3 -0
  2. package/__flow__/dark/decorative-palettes.flow.js +13 -0
  3. package/__flow__/dark/theme.flow.js +5 -0
  4. package/__flow__/extendedThemes/sproutTheme/dark/theme.flow.js +10 -0
  5. package/__flow__/extendedThemes/sproutTheme/index.flow.js +3 -0
  6. package/__flow__/extendedThemes/sproutTheme/light/theme.flow.js +10 -0
  7. package/__flow__/index.js +3 -0
  8. package/__flow__/light/dataviz-palette.flow.js +29 -0
  9. package/__flow__/light/decorative-palettes.flow.js +17 -0
  10. package/__flow__/light/literal-colors.flow.js +31 -0
  11. package/__flow__/light/theme.flow.js +16 -0
  12. package/__flow__/types/theme.colors.flow.js +358 -0
  13. package/__flow__/types/theme.flow.js +372 -0
  14. package/commonjs/dark/dataviz-palette.flow.js +1 -0
  15. package/commonjs/dark/dataviz-palette.js +33 -0
  16. package/commonjs/dark/decorative-palettes.flow.js +1 -0
  17. package/commonjs/dark/decorative-palettes.js +63 -0
  18. package/commonjs/dark/theme.flow.js +1 -0
  19. package/commonjs/dark/theme.js +268 -0
  20. package/commonjs/extendedThemes/sproutTheme/dark/theme.flow.js +7 -0
  21. package/commonjs/extendedThemes/sproutTheme/dark/theme.js +240 -0
  22. package/commonjs/extendedThemes/sproutTheme/index.flow.js +20 -0
  23. package/commonjs/extendedThemes/sproutTheme/index.js +20 -0
  24. package/commonjs/extendedThemes/sproutTheme/light/theme.flow.js +1 -0
  25. package/commonjs/extendedThemes/sproutTheme/light/theme.js +237 -0
  26. package/commonjs/index.js +51 -0
  27. package/commonjs/index.js.flow +3 -0
  28. package/commonjs/light/dataviz-palette.flow.js +1 -0
  29. package/commonjs/light/dataviz-palette.js +33 -0
  30. package/commonjs/light/decorative-palettes.flow.js +1 -0
  31. package/commonjs/light/decorative-palettes.js +63 -0
  32. package/commonjs/light/literal-colors.flow.js +1 -0
  33. package/commonjs/light/literal-colors.js +167 -0
  34. package/commonjs/light/theme.flow.js +1 -0
  35. package/commonjs/light/theme.js +416 -0
  36. package/commonjs/types/theme.colors.flow.js +1 -0
  37. package/commonjs/types/theme.colors.js +5 -0
  38. package/commonjs/types/theme.flow.js +1 -0
  39. package/commonjs/types/theme.js +5 -0
  40. package/dist/themes/dark/_themed.scss +119 -0
  41. package/dist/themes/dark/theme.scss +678 -0
  42. package/dist/themes/extendedThemes/sproutTheme/dark/_themed.scss +119 -0
  43. package/dist/themes/extendedThemes/sproutTheme/dark/theme.scss +1091 -0
  44. package/dist/themes/extendedThemes/sproutTheme/light/_themed.scss +119 -0
  45. package/dist/themes/extendedThemes/sproutTheme/light/theme.scss +1091 -0
  46. package/dist/themes/light/_themed.scss +119 -0
  47. package/dist/themes/light/theme.scss +800 -0
  48. package/dist/themes/types/_themed.scss +119 -0
  49. package/dist/types/dark/dataviz-palette.d.ts +26 -0
  50. package/dist/types/dark/dataviz-palette.d.ts.map +1 -0
  51. package/dist/types/dark/decorative-palettes.d.ts +56 -0
  52. package/dist/types/dark/decorative-palettes.d.ts.map +1 -0
  53. package/dist/types/dark/theme.d.ts +671 -0
  54. package/dist/types/dark/theme.d.ts.map +1 -0
  55. package/dist/types/extendedThemes/sproutTheme/dark/theme.d.ts +213 -0
  56. package/dist/types/extendedThemes/sproutTheme/dark/theme.d.ts.map +1 -0
  57. package/dist/types/extendedThemes/sproutTheme/index.d.ts +3 -0
  58. package/dist/types/extendedThemes/sproutTheme/index.d.ts.map +1 -0
  59. package/dist/types/extendedThemes/sproutTheme/light/theme.d.ts +213 -0
  60. package/dist/types/extendedThemes/sproutTheme/light/theme.d.ts.map +1 -0
  61. package/dist/types/index.d.ts +5 -0
  62. package/dist/types/index.d.ts.map +1 -0
  63. package/dist/types/light/dataviz-palette.d.ts +26 -0
  64. package/dist/types/light/dataviz-palette.d.ts.map +1 -0
  65. package/dist/types/light/decorative-palettes.d.ts +56 -0
  66. package/dist/types/light/decorative-palettes.d.ts.map +1 -0
  67. package/dist/types/light/literal-colors.d.ts +160 -0
  68. package/dist/types/light/literal-colors.d.ts.map +1 -0
  69. package/dist/types/light/theme.d.ts +794 -0
  70. package/dist/types/light/theme.d.ts.map +1 -0
  71. package/dist/types/types/theme.colors.d.ts +292 -0
  72. package/dist/types/types/theme.colors.d.ts.map +1 -0
  73. package/dist/types/types/theme.d.ts +43 -0
  74. package/dist/types/types/theme.d.ts.map +1 -0
  75. package/lib/dark/dataviz-palette.flow.js +0 -0
  76. package/lib/dark/dataviz-palette.js +26 -0
  77. package/lib/dark/decorative-palettes.flow.js +0 -0
  78. package/lib/dark/decorative-palettes.js +56 -0
  79. package/lib/dark/theme.flow.js +0 -0
  80. package/lib/dark/theme.js +263 -0
  81. package/lib/extendedThemes/sproutTheme/dark/theme.flow.js +1 -0
  82. package/lib/extendedThemes/sproutTheme/dark/theme.js +235 -0
  83. package/lib/extendedThemes/sproutTheme/index.flow.js +2 -0
  84. package/lib/extendedThemes/sproutTheme/index.js +2 -0
  85. package/lib/extendedThemes/sproutTheme/light/theme.flow.js +0 -0
  86. package/lib/extendedThemes/sproutTheme/light/theme.js +232 -0
  87. package/lib/index.js +4 -0
  88. package/lib/index.js.flow +3 -0
  89. package/lib/light/dataviz-palette.flow.js +0 -0
  90. package/lib/light/dataviz-palette.js +26 -0
  91. package/lib/light/decorative-palettes.flow.js +0 -0
  92. package/lib/light/decorative-palettes.js +56 -0
  93. package/lib/light/literal-colors.flow.js +0 -0
  94. package/lib/light/literal-colors.js +160 -0
  95. package/lib/light/theme.flow.js +0 -0
  96. package/lib/light/theme.js +410 -0
  97. package/lib/types/theme.colors.flow.js +0 -0
  98. package/lib/types/theme.colors.js +1 -0
  99. package/lib/types/theme.flow.js +0 -0
  100. package/lib/types/theme.js +1 -0
  101. package/package.json +40 -0
@@ -0,0 +1,213 @@
1
+ import { TypeSproutTheme } from "../../../types/theme";
2
+ export declare const navigation: {
3
+ main: {
4
+ background: {
5
+ base: string;
6
+ overflowGradient: string;
7
+ };
8
+ border: {
9
+ base: string;
10
+ };
11
+ };
12
+ secondary: {
13
+ background: {
14
+ base: string;
15
+ };
16
+ widget: {
17
+ background: {
18
+ base: string;
19
+ };
20
+ };
21
+ accordion: {
22
+ background: {
23
+ base: string;
24
+ };
25
+ };
26
+ };
27
+ settings: {
28
+ listItem: {
29
+ background: {
30
+ base: string;
31
+ hover: string;
32
+ selected: string;
33
+ };
34
+ };
35
+ };
36
+ text: {
37
+ base: string;
38
+ hover: string;
39
+ };
40
+ icon: {
41
+ base: string;
42
+ hover: string;
43
+ };
44
+ listItem: {
45
+ background: {
46
+ base: string;
47
+ hover: string;
48
+ selected: string;
49
+ };
50
+ };
51
+ };
52
+ export declare const datePicker: {
53
+ comparison: {
54
+ background: {
55
+ base: string;
56
+ };
57
+ text: {
58
+ base: string;
59
+ };
60
+ };
61
+ };
62
+ export declare const analytics: {
63
+ trend: {
64
+ positive: string;
65
+ neutral: string;
66
+ negative: string;
67
+ };
68
+ overlay: {
69
+ background: {
70
+ base: string;
71
+ };
72
+ };
73
+ };
74
+ export declare const listening: {
75
+ chart: {
76
+ indicator: {
77
+ default: {
78
+ primary: string;
79
+ secondary: string;
80
+ };
81
+ hover: {
82
+ primary: string;
83
+ secondary: string;
84
+ };
85
+ };
86
+ spike: {
87
+ background: {
88
+ base: string;
89
+ };
90
+ icon: {
91
+ base: string;
92
+ };
93
+ };
94
+ };
95
+ topicTypes: {
96
+ customTopic: string;
97
+ brandHealth: string;
98
+ industryInsights: string;
99
+ competitiveAnalysis: string;
100
+ campaignAnalysis: string;
101
+ eventMonitoring: string;
102
+ featuredTopic: string;
103
+ };
104
+ worldMap: {
105
+ empty: string;
106
+ q0: string;
107
+ q1: string;
108
+ q2: string;
109
+ q3: string;
110
+ q4: string;
111
+ q5: string;
112
+ q6: string;
113
+ q7: string;
114
+ };
115
+ };
116
+ export declare const growth: {
117
+ carousel: {
118
+ indicator: {
119
+ active: string;
120
+ inactive: string;
121
+ };
122
+ };
123
+ education: {
124
+ decorative: {
125
+ aqua: string;
126
+ teal: string;
127
+ };
128
+ };
129
+ opportunity: {
130
+ background: {
131
+ base: string;
132
+ secondary: string;
133
+ hover: string;
134
+ };
135
+ button: {
136
+ primary: {
137
+ base: string;
138
+ hover: string;
139
+ };
140
+ };
141
+ badge: {
142
+ background: {
143
+ base: string;
144
+ active: string;
145
+ };
146
+ icon: {
147
+ base: string;
148
+ active: string;
149
+ };
150
+ text: {
151
+ base: string;
152
+ };
153
+ };
154
+ decorative: {
155
+ green: string;
156
+ lightAqua: string;
157
+ darkAqua: string;
158
+ purple: string;
159
+ };
160
+ };
161
+ featuredDemo: {
162
+ background: {
163
+ primary: {
164
+ base: string;
165
+ hover: string;
166
+ };
167
+ secondary: {
168
+ base: string;
169
+ hover: string;
170
+ };
171
+ };
172
+ };
173
+ darkModal: {
174
+ background: {
175
+ base: string;
176
+ };
177
+ text: {
178
+ base: string;
179
+ };
180
+ cards: {
181
+ background: {
182
+ base: string;
183
+ hover: string;
184
+ };
185
+ text: {
186
+ base: string;
187
+ hover: string;
188
+ };
189
+ border: {
190
+ base: string;
191
+ hover: string;
192
+ };
193
+ };
194
+ };
195
+ user: {
196
+ status: {
197
+ online: string;
198
+ };
199
+ };
200
+ };
201
+ export declare const cardControl: {
202
+ background: {
203
+ base: string;
204
+ selected: string;
205
+ hover: string;
206
+ };
207
+ text: {
208
+ selected: string;
209
+ };
210
+ };
211
+ declare const darkTheme: TypeSproutTheme;
212
+ export default darkTheme;
213
+ //# sourceMappingURL=theme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/dark/theme.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoDtB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;CAStB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;CAWrB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyCrB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqFlB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;CASvB,CAAC;AAEF,QAAA,MAAM,SAAS,EAAE,eAWhB,CAAC;AAEF,eAAe,SAAS,CAAC"}
@@ -0,0 +1,3 @@
1
+ export { default as sproutLightTheme } from "./light/theme";
2
+ export { default as sproutDarkTheme } from "./dark/theme";
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/extendedThemes/sproutTheme/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAC5D,OAAO,EAAE,OAAO,IAAI,eAAe,EAAE,MAAM,cAAc,CAAC"}
@@ -0,0 +1,213 @@
1
+ import { TypeSproutTheme } from "../../../types/theme";
2
+ export declare const navigation: {
3
+ main: {
4
+ background: {
5
+ base: string;
6
+ overflowGradient: string;
7
+ };
8
+ border: {
9
+ base: string;
10
+ };
11
+ };
12
+ secondary: {
13
+ background: {
14
+ base: string;
15
+ };
16
+ widget: {
17
+ background: {
18
+ base: string;
19
+ };
20
+ };
21
+ accordion: {
22
+ background: {
23
+ base: string;
24
+ };
25
+ };
26
+ };
27
+ settings: {
28
+ listItem: {
29
+ background: {
30
+ base: string;
31
+ hover: string;
32
+ selected: string;
33
+ };
34
+ };
35
+ };
36
+ text: {
37
+ base: string;
38
+ hover: string;
39
+ };
40
+ icon: {
41
+ base: string;
42
+ hover: string;
43
+ };
44
+ listItem: {
45
+ background: {
46
+ base: string;
47
+ hover: string;
48
+ selected: string;
49
+ };
50
+ };
51
+ };
52
+ export declare const datePicker: {
53
+ comparison: {
54
+ background: {
55
+ base: string;
56
+ };
57
+ text: {
58
+ base: string;
59
+ };
60
+ };
61
+ };
62
+ export declare const analytics: {
63
+ trend: {
64
+ positive: string;
65
+ neutral: string;
66
+ negative: string;
67
+ };
68
+ overlay: {
69
+ background: {
70
+ base: string;
71
+ };
72
+ };
73
+ };
74
+ export declare const listening: {
75
+ chart: {
76
+ indicator: {
77
+ default: {
78
+ primary: string;
79
+ secondary: string;
80
+ };
81
+ hover: {
82
+ primary: string;
83
+ secondary: string;
84
+ };
85
+ };
86
+ spike: {
87
+ background: {
88
+ base: string;
89
+ };
90
+ icon: {
91
+ base: string;
92
+ };
93
+ };
94
+ };
95
+ topicTypes: {
96
+ customTopic: string;
97
+ brandHealth: string;
98
+ industryInsights: string;
99
+ competitiveAnalysis: string;
100
+ campaignAnalysis: string;
101
+ eventMonitoring: string;
102
+ featuredTopic: string;
103
+ };
104
+ worldMap: {
105
+ empty: string;
106
+ q0: string;
107
+ q1: string;
108
+ q2: string;
109
+ q3: string;
110
+ q4: string;
111
+ q5: string;
112
+ q6: string;
113
+ q7: string;
114
+ };
115
+ };
116
+ export declare const growth: {
117
+ carousel: {
118
+ indicator: {
119
+ active: string;
120
+ inactive: string;
121
+ };
122
+ };
123
+ education: {
124
+ decorative: {
125
+ aqua: string;
126
+ teal: string;
127
+ };
128
+ };
129
+ opportunity: {
130
+ background: {
131
+ base: string;
132
+ secondary: string;
133
+ hover: string;
134
+ };
135
+ button: {
136
+ primary: {
137
+ base: string;
138
+ hover: string;
139
+ };
140
+ };
141
+ badge: {
142
+ background: {
143
+ base: string;
144
+ active: string;
145
+ };
146
+ icon: {
147
+ base: string;
148
+ active: string;
149
+ };
150
+ text: {
151
+ base: string;
152
+ };
153
+ };
154
+ decorative: {
155
+ green: string;
156
+ lightAqua: string;
157
+ darkAqua: string;
158
+ purple: string;
159
+ };
160
+ };
161
+ featuredDemo: {
162
+ background: {
163
+ primary: {
164
+ base: string;
165
+ hover: string;
166
+ };
167
+ secondary: {
168
+ base: string;
169
+ hover: string;
170
+ };
171
+ };
172
+ };
173
+ darkModal: {
174
+ background: {
175
+ base: string;
176
+ };
177
+ text: {
178
+ base: string;
179
+ };
180
+ cards: {
181
+ background: {
182
+ base: string;
183
+ hover: string;
184
+ };
185
+ text: {
186
+ base: string;
187
+ hover: string;
188
+ };
189
+ border: {
190
+ base: string;
191
+ hover: string;
192
+ };
193
+ };
194
+ };
195
+ user: {
196
+ status: {
197
+ online: string;
198
+ };
199
+ };
200
+ };
201
+ export declare const cardControl: {
202
+ background: {
203
+ base: string;
204
+ selected: string;
205
+ hover: string;
206
+ };
207
+ text: {
208
+ selected: string;
209
+ };
210
+ };
211
+ declare const lightTheme: TypeSproutTheme;
212
+ export default lightTheme;
213
+ //# sourceMappingURL=theme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../../../../src/extendedThemes/sproutTheme/light/theme.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,eAAe,EAAE,MAAM,sBAAsB,CAAC;AAEvD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiDtB,CAAC;AAEF,eAAO,MAAM,UAAU;;;;;;;;;CAStB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;CAWrB,CAAC;AAEF,eAAO,MAAM,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyCrB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqFlB,CAAC;AAEF,eAAO,MAAM,WAAW;;;;;;;;;CASvB,CAAC;AAEF,QAAA,MAAM,UAAU,EAAE,eAWjB,CAAC;AAEF,eAAe,UAAU,CAAC"}
@@ -0,0 +1,5 @@
1
+ export { default as theme } from "./light/theme";
2
+ export { default as darkTheme } from "./dark/theme";
3
+ export { sproutLightTheme, sproutDarkTheme, } from "./extendedThemes/sproutTheme";
4
+ export * from "./types/theme";
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,KAAK,EAAE,MAAM,eAAe,CAAC;AACjD,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EACL,gBAAgB,EAChB,eAAe,GAChB,MAAM,8BAA8B,CAAC;AACtC,cAAc,eAAe,CAAC"}
@@ -0,0 +1,26 @@
1
+ export declare const datavizPalette: {
2
+ DATAVIZ_COLORS_LIST: string[];
3
+ DATAVIZ_COLORS_MAP: {
4
+ "1": string;
5
+ "2": string;
6
+ "3": string;
7
+ "4": string;
8
+ "5": string;
9
+ "6": string;
10
+ "7": string;
11
+ "8": string;
12
+ "9": string;
13
+ "10": string;
14
+ "11": string;
15
+ "12": string;
16
+ "13": string;
17
+ "14": string;
18
+ "15": string;
19
+ "16": string;
20
+ "17": string;
21
+ "18": string;
22
+ "19": string;
23
+ "20": string;
24
+ };
25
+ };
26
+ //# sourceMappingURL=dataviz-palette.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dataviz-palette.d.ts","sourceRoot":"","sources":["../../../src/light/dataviz-palette.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;CA6C1B,CAAC"}
@@ -0,0 +1,56 @@
1
+ export declare const green: {
2
+ background: string;
3
+ highlight: string;
4
+ foreground: string;
5
+ };
6
+ export declare const blue: {
7
+ background: string;
8
+ highlight: string;
9
+ foreground: string;
10
+ };
11
+ export declare const purple: {
12
+ background: string;
13
+ highlight: string;
14
+ foreground: string;
15
+ };
16
+ export declare const yellow: {
17
+ background: string;
18
+ highlight: string;
19
+ foreground: string;
20
+ };
21
+ export declare const orange: {
22
+ background: string;
23
+ highlight: string;
24
+ foreground: string;
25
+ };
26
+ export declare const red: {
27
+ background: string;
28
+ highlight: string;
29
+ foreground: string;
30
+ };
31
+ export declare const neutral: {
32
+ background: string;
33
+ highlight: string;
34
+ foreground: string;
35
+ };
36
+ export declare const magenta: {
37
+ background: string;
38
+ highlight: string;
39
+ foreground: string;
40
+ };
41
+ export declare const pink: {
42
+ background: string;
43
+ highlight: string;
44
+ foreground: string;
45
+ };
46
+ export declare const aqua: {
47
+ background: string;
48
+ highlight: string;
49
+ foreground: string;
50
+ };
51
+ export declare const teal: {
52
+ background: string;
53
+ highlight: string;
54
+ foreground: string;
55
+ };
56
+ //# sourceMappingURL=decorative-palettes.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"decorative-palettes.d.ts","sourceRoot":"","sources":["../../../src/light/decorative-palettes.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,KAAK;;;;CAIjB,CAAC;AAEF,eAAO,MAAM,IAAI;;;;CAIhB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,MAAM;;;;CAIlB,CAAC;AAEF,eAAO,MAAM,GAAG;;;;CAIf,CAAC;AAEF,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAEF,eAAO,MAAM,OAAO;;;;CAInB,CAAC;AAEF,eAAO,MAAM,IAAI;;;;CAIhB,CAAC;AAEF,eAAO,MAAM,IAAI;;;;CAIhB,CAAC;AAEF,eAAO,MAAM,IAAI;;;;CAIhB,CAAC"}
@@ -0,0 +1,160 @@
1
+ declare const literalColors: {
2
+ neutral: {
3
+ "0": string;
4
+ "100": string;
5
+ "200": string;
6
+ "300": string;
7
+ "400": string;
8
+ "500": string;
9
+ "600": string;
10
+ "700": string;
11
+ "800": string;
12
+ "900": string;
13
+ "1000": string;
14
+ "1100": string;
15
+ };
16
+ green: {
17
+ "0": string;
18
+ "100": string;
19
+ "200": string;
20
+ "300": string;
21
+ "400": string;
22
+ "500": string;
23
+ "600": string;
24
+ "700": string;
25
+ "800": string;
26
+ "900": string;
27
+ "1000": string;
28
+ "1100": string;
29
+ };
30
+ red: {
31
+ "0": string;
32
+ "100": string;
33
+ "200": string;
34
+ "300": string;
35
+ "400": string;
36
+ "500": string;
37
+ "600": string;
38
+ "700": string;
39
+ "800": string;
40
+ "900": string;
41
+ "1000": string;
42
+ "1100": string;
43
+ };
44
+ blue: {
45
+ "0": string;
46
+ "100": string;
47
+ "200": string;
48
+ "300": string;
49
+ "400": string;
50
+ "500": string;
51
+ "600": string;
52
+ "700": string;
53
+ "800": string;
54
+ "900": string;
55
+ "1000": string;
56
+ "1100": string;
57
+ };
58
+ teal: {
59
+ "0": string;
60
+ "50": string;
61
+ "100": string;
62
+ "200": string;
63
+ "300": string;
64
+ "400": string;
65
+ "500": string;
66
+ "600": string;
67
+ "700": string;
68
+ "800": string;
69
+ "900": string;
70
+ "1000": string;
71
+ "1100": string;
72
+ };
73
+ aqua: {
74
+ "0": string;
75
+ "100": string;
76
+ "200": string;
77
+ "300": string;
78
+ "400": string;
79
+ "500": string;
80
+ "600": string;
81
+ "700": string;
82
+ "800": string;
83
+ "900": string;
84
+ "1000": string;
85
+ "1100": string;
86
+ };
87
+ purple: {
88
+ "0": string;
89
+ "100": string;
90
+ "200": string;
91
+ "300": string;
92
+ "400": string;
93
+ "500": string;
94
+ "600": string;
95
+ "700": string;
96
+ "800": string;
97
+ "900": string;
98
+ "1000": string;
99
+ "1100": string;
100
+ };
101
+ magenta: {
102
+ "0": string;
103
+ "100": string;
104
+ "200": string;
105
+ "300": string;
106
+ "350": string;
107
+ "400": string;
108
+ "500": string;
109
+ "600": string;
110
+ "700": string;
111
+ "800": string;
112
+ "900": string;
113
+ "1000": string;
114
+ "1100": string;
115
+ };
116
+ yellow: {
117
+ "0": string;
118
+ "100": string;
119
+ "200": string;
120
+ "300": string;
121
+ "400": string;
122
+ "500": string;
123
+ "600": string;
124
+ "700": string;
125
+ "800": string;
126
+ "900": string;
127
+ "1000": string;
128
+ "1100": string;
129
+ };
130
+ pink: {
131
+ "0": string;
132
+ "100": string;
133
+ "200": string;
134
+ "300": string;
135
+ "400": string;
136
+ "500": string;
137
+ "600": string;
138
+ "700": string;
139
+ "800": string;
140
+ "900": string;
141
+ "1000": string;
142
+ "1100": string;
143
+ };
144
+ orange: {
145
+ "0": string;
146
+ "100": string;
147
+ "200": string;
148
+ "300": string;
149
+ "400": string;
150
+ "500": string;
151
+ "600": string;
152
+ "700": string;
153
+ "800": string;
154
+ "900": string;
155
+ "1000": string;
156
+ "1100": string;
157
+ };
158
+ };
159
+ export default literalColors;
160
+ //# sourceMappingURL=literal-colors.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"literal-colors.d.ts","sourceRoot":"","sources":["../../../src/light/literal-colors.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA6JlB,CAAC;AAEF,eAAe,aAAa,CAAC"}