@daikin-oss/dds-tokens 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/build/css/aaf/Dark/variables.css +12 -0
  3. package/build/css/aaf/Light/variables.css +12 -0
  4. package/build/css/daikin/Dark/buttons.css +16 -16
  5. package/build/css/daikin/Dark/variables.css +101 -43
  6. package/build/css/daikin/Light/variables.css +18 -1
  7. package/build/js/aaf/Dark/variables.cjs +12 -0
  8. package/build/js/aaf/Dark/variables.d.cts +12 -0
  9. package/build/js/aaf/Dark/variables.d.ts +12 -0
  10. package/build/js/aaf/Dark/variables.js +12 -0
  11. package/build/js/aaf/Light/variables.cjs +12 -0
  12. package/build/js/aaf/Light/variables.d.cts +12 -0
  13. package/build/js/aaf/Light/variables.d.ts +12 -0
  14. package/build/js/aaf/Light/variables.js +12 -0
  15. package/build/js/daikin/Dark/variables.cjs +101 -43
  16. package/build/js/daikin/Dark/variables.d.cts +58 -0
  17. package/build/js/daikin/Dark/variables.d.ts +58 -0
  18. package/build/js/daikin/Dark/variables.js +101 -43
  19. package/build/js/daikin/Light/variables.cjs +18 -1
  20. package/build/js/daikin/Light/variables.d.cts +17 -0
  21. package/build/js/daikin/Light/variables.d.ts +17 -0
  22. package/build/js/daikin/Light/variables.js +18 -1
  23. package/build/json/aaf/Dark/tokens.json +48 -0
  24. package/build/json/aaf/Light/tokens.json +48 -0
  25. package/build/json/daikin/Dark/tokens.json +275 -43
  26. package/build/json/daikin/Light/tokens.json +69 -1
  27. package/build/scss/aaf/Dark/_mixins.scss +12 -0
  28. package/build/scss/aaf/Light/_mixins.scss +12 -0
  29. package/build/scss/daikin/Dark/_mixins.scss +101 -43
  30. package/build/scss/daikin/Light/_mixins.scss +18 -1
  31. package/package.json +1 -1
  32. package/themes/dkn/dark/component.json +92 -16
  33. package/themes/dkn/dark/system.json +168 -8
  34. package/themes/dkn/light/component.json +27 -1
  35. package/themes/reference.json +50 -0
@@ -99,6 +99,18 @@ export const colorBlueGray120: string;
99
99
  export const colorDarkGray105: string;
100
100
  export const colorDarkGray115: string;
101
101
  export const colorDarkGray125: string;
102
+ export const colorPurple10: string;
103
+ export const colorPurple20: string;
104
+ export const colorPurple30: string;
105
+ export const colorPurple40: string;
106
+ export const colorPurple50: string;
107
+ export const colorPurple60: string;
108
+ export const colorPurple70: string;
109
+ export const colorPurple80: string;
110
+ export const colorPurple90: string;
111
+ export const colorPurple100: string;
112
+ export const colorPurple110: string;
113
+ export const colorPurple120: string;
102
114
  /** System status is positive */
103
115
  export const colorFeedbackPositive: string;
104
116
  /** System status is warning */
@@ -120,6 +132,48 @@ export const colorTextDefaultSub: string;
120
132
  export const colorBackgroundTheme: string;
121
133
  export const colorBackgroundComponent: string;
122
134
  export const colorBackgroundObject: string;
135
+ export const colorCommonBrandDefault: string;
136
+ export const colorCommonBrandHover: string;
137
+ export const colorCommonBrandPress: string;
138
+ export const colorCommonSurfaceBrandHover: string;
139
+ export const colorCommonSurfaceBrandPress: string;
140
+ export const colorCommonSurfaceNeutralHover: string;
141
+ export const colorCommonSurfaceNeutralPress: string;
142
+ export const colorCommonSurfaceDangerHover: string;
143
+ export const colorCommonSurfaceDangerPress: string;
144
+ export const colorCommonSurfaceDefault: string;
145
+ export const colorCommonSurfaceHover: string;
146
+ export const colorCommonSurfacePress: string;
147
+ export const colorCommonSurfaceSelectedDefault: string;
148
+ export const colorCommonSurfaceSelectedHover: string;
149
+ export const colorCommonSurfaceSelectedPress: string;
150
+ export const colorCommonNeutralDefault: string;
151
+ export const colorCommonNeutralHover: string;
152
+ export const colorCommonNeutralPress: string;
153
+ export const colorCommonDangerDefault: string;
154
+ export const colorCommonDangerHover: string;
155
+ export const colorCommonDangerPress: string;
156
+ export const colorCommonSuccess: string;
157
+ export const colorCommonWarning: string;
158
+ export const colorCommonAlarm: string;
159
+ export const colorCommonInformation: string;
160
+ export const colorCommonDisabled: string;
161
+ export const colorCommonTextPrimary: string;
162
+ export const colorCommonTextSecondary: string;
163
+ export const colorCommonTextInverse: string;
164
+ export const colorCommonBorderFocus: string;
165
+ export const colorCommonBorderEmpty: string;
166
+ export const colorCommonBackgroundDefault: string;
167
+ export const colorCommonBackgroundOverlay: string;
168
+ export const colorDivider: string;
169
+ export const colorLinkTextDefault: string;
170
+ export const colorLinkTextHover: string;
171
+ export const colorLinkTextPress: string;
172
+ export const colorLinkTextVisitedDefault: string;
173
+ export const colorLinkTextVisitedHover: string;
174
+ export const colorLinkTextVisitedPress: string;
175
+ export const colorLinkSurfaceVisitedHover: string;
176
+ export const colorLinkSurfaceVisitedPress: string;
123
177
  export const borderRadius100: string;
124
178
  export const borderRadius150: string;
125
179
  export const borderRadius200: string;
@@ -207,6 +261,10 @@ export const containerColorBackground: string;
207
261
  export const containerColorTextHeader: string;
208
262
  export const containerColorTextBody: string;
209
263
  export const cardShadow: string;
264
+ export const cardColorBackground: string;
265
+ export const cardBorderHover: string;
266
+ export const cardBorderAlert: string;
267
+ export const cardBorderUnderline: string;
210
268
  /** Color used for the default state of a secondary button */
211
269
  export const buttonColorBackgroundPrimaryActive: string;
212
270
  export const buttonColorBackgroundPrimaryHover: string;
@@ -99,6 +99,18 @@ export const colorBlueGray120: string;
99
99
  export const colorDarkGray105: string;
100
100
  export const colorDarkGray115: string;
101
101
  export const colorDarkGray125: string;
102
+ export const colorPurple10: string;
103
+ export const colorPurple20: string;
104
+ export const colorPurple30: string;
105
+ export const colorPurple40: string;
106
+ export const colorPurple50: string;
107
+ export const colorPurple60: string;
108
+ export const colorPurple70: string;
109
+ export const colorPurple80: string;
110
+ export const colorPurple90: string;
111
+ export const colorPurple100: string;
112
+ export const colorPurple110: string;
113
+ export const colorPurple120: string;
102
114
  /** System status is positive */
103
115
  export const colorFeedbackPositive: string;
104
116
  /** System status is warning */
@@ -120,6 +132,48 @@ export const colorTextDefaultSub: string;
120
132
  export const colorBackgroundTheme: string;
121
133
  export const colorBackgroundComponent: string;
122
134
  export const colorBackgroundObject: string;
135
+ export const colorCommonBrandDefault: string;
136
+ export const colorCommonBrandHover: string;
137
+ export const colorCommonBrandPress: string;
138
+ export const colorCommonSurfaceBrandHover: string;
139
+ export const colorCommonSurfaceBrandPress: string;
140
+ export const colorCommonSurfaceNeutralHover: string;
141
+ export const colorCommonSurfaceNeutralPress: string;
142
+ export const colorCommonSurfaceDangerHover: string;
143
+ export const colorCommonSurfaceDangerPress: string;
144
+ export const colorCommonSurfaceDefault: string;
145
+ export const colorCommonSurfaceHover: string;
146
+ export const colorCommonSurfacePress: string;
147
+ export const colorCommonSurfaceSelectedDefault: string;
148
+ export const colorCommonSurfaceSelectedHover: string;
149
+ export const colorCommonSurfaceSelectedPress: string;
150
+ export const colorCommonNeutralDefault: string;
151
+ export const colorCommonNeutralHover: string;
152
+ export const colorCommonNeutralPress: string;
153
+ export const colorCommonDangerDefault: string;
154
+ export const colorCommonDangerHover: string;
155
+ export const colorCommonDangerPress: string;
156
+ export const colorCommonSuccess: string;
157
+ export const colorCommonWarning: string;
158
+ export const colorCommonAlarm: string;
159
+ export const colorCommonInformation: string;
160
+ export const colorCommonDisabled: string;
161
+ export const colorCommonTextPrimary: string;
162
+ export const colorCommonTextSecondary: string;
163
+ export const colorCommonTextInverse: string;
164
+ export const colorCommonBorderFocus: string;
165
+ export const colorCommonBorderEmpty: string;
166
+ export const colorCommonBackgroundDefault: string;
167
+ export const colorCommonBackgroundOverlay: string;
168
+ export const colorDivider: string;
169
+ export const colorLinkTextDefault: string;
170
+ export const colorLinkTextHover: string;
171
+ export const colorLinkTextPress: string;
172
+ export const colorLinkTextVisitedDefault: string;
173
+ export const colorLinkTextVisitedHover: string;
174
+ export const colorLinkTextVisitedPress: string;
175
+ export const colorLinkSurfaceVisitedHover: string;
176
+ export const colorLinkSurfaceVisitedPress: string;
123
177
  export const borderRadius100: string;
124
178
  export const borderRadius150: string;
125
179
  export const borderRadius200: string;
@@ -207,6 +261,10 @@ export const containerColorBackground: string;
207
261
  export const containerColorTextHeader: string;
208
262
  export const containerColorTextBody: string;
209
263
  export const cardShadow: string;
264
+ export const cardColorBackground: string;
265
+ export const cardBorderHover: string;
266
+ export const cardBorderAlert: string;
267
+ export const cardBorderUnderline: string;
210
268
  /** Color used for the default state of a secondary button */
211
269
  export const buttonColorBackgroundPrimaryActive: string;
212
270
  export const buttonColorBackgroundPrimaryHover: string;
@@ -99,20 +99,74 @@ export const colorBlueGray120 = "#1b1e21";
99
99
  export const colorDarkGray105 = "#383838";
100
100
  export const colorDarkGray115 = "#282828";
101
101
  export const colorDarkGray125 = "#1a1a1a";
102
+ export const colorPurple10 = "#f0ddf3";
103
+ export const colorPurple20 = "#e1bbe8";
104
+ export const colorPurple30 = "#d399dc";
105
+ export const colorPurple40 = "#c477d0";
106
+ export const colorPurple50 = "#b556c5";
107
+ export const colorPurple60 = "#a03db0";
108
+ export const colorPurple70 = "#81318e";
109
+ export const colorPurple80 = "#6f2a7a";
110
+ export const colorPurple90 = "#5c2365";
111
+ export const colorPurple100 = "#4a1c51";
112
+ export const colorPurple110 = "#37153d";
113
+ export const colorPurple120 = "#250e29";
102
114
  export const colorFeedbackPositive = "#00c3ac"; // System status is positive
103
115
  export const colorFeedbackWarning = "#ffbf0e"; // System status is warning
104
116
  export const colorFeedbackNegative = "#f21a27"; // System status is warning
105
117
  export const colorFeedbackAlarm = "#fa7a12"; // System status is warning
106
118
  export const colorFeedbackInformation = "#30ade9"; // System status is warning
107
- export const colorBrandPrimary = "#76cff4"; // Primary brand blue
108
- export const colorBrandSecondary = "#30ade9"; // Primary secondary brand blue
109
- export const colorTextBrandPrimary = "#76cff4";
110
- export const colorTextTheme = "#414141";
111
- export const colorTextDefault = "#f2f2f2";
112
- export const colorTextDefaultSub = "#ebebeb";
113
- export const colorBackgroundTheme = "#000000";
114
- export const colorBackgroundComponent = "#414141";
115
- export const colorBackgroundObject = "#f2f2f2";
119
+ export const colorBrandPrimary = "#30ade9"; // Primary brand blue
120
+ export const colorBrandSecondary = "#76cff4"; // Primary secondary brand blue
121
+ export const colorTextBrandPrimary = "#30ade9";
122
+ export const colorTextTheme = "#ffffff";
123
+ export const colorTextDefault = "#414141";
124
+ export const colorTextDefaultSub = "#616161";
125
+ export const colorBackgroundTheme = "#ffffff";
126
+ export const colorBackgroundComponent = "#ffffff";
127
+ export const colorBackgroundObject = "#414141";
128
+ export const colorCommonBrandDefault = "#30ade9";
129
+ export const colorCommonBrandHover = "#54c3f1";
130
+ export const colorCommonBrandPress = "#76cff4";
131
+ export const colorCommonSurfaceBrandHover = "#002b40";
132
+ export const colorCommonSurfaceBrandPress = "#004160";
133
+ export const colorCommonSurfaceNeutralHover = "#313131";
134
+ export const colorCommonSurfaceNeutralPress = "#414141";
135
+ export const colorCommonSurfaceDangerHover = "#3e0307";
136
+ export const colorCommonSurfaceDangerPress = "#5d050a";
137
+ export const colorCommonSurfaceDefault = "#212121";
138
+ export const colorCommonSurfaceHover = "#313131";
139
+ export const colorCommonSurfacePress = "#414141";
140
+ export const colorCommonSurfaceSelectedDefault = "#002b40";
141
+ export const colorCommonSurfaceSelectedHover = "#004160";
142
+ export const colorCommonSurfaceSelectedPress = "#005077";
143
+ export const colorCommonNeutralDefault = "#bfbfbf";
144
+ export const colorCommonNeutralHover = "#cecece";
145
+ export const colorCommonNeutralPress = "#dcdcdc";
146
+ export const colorCommonDangerDefault = "#f21a27";
147
+ export const colorCommonDangerHover = "#f4404b";
148
+ export const colorCommonDangerPress = "#f7666f";
149
+ export const colorCommonSuccess = "#00c3ac";
150
+ export const colorCommonWarning = "#efb000";
151
+ export const colorCommonAlarm = "#fa7a12";
152
+ export const colorCommonInformation = "#30ade9";
153
+ export const colorCommonDisabled = "#616161";
154
+ export const colorCommonTextPrimary = "#dcdcdc";
155
+ export const colorCommonTextSecondary = "#bfbfbf";
156
+ export const colorCommonTextInverse = "#212121";
157
+ export const colorCommonBorderFocus = "#54c3f1";
158
+ export const colorCommonBorderEmpty = "#515151";
159
+ export const colorCommonBackgroundDefault = "#212121";
160
+ export const colorCommonBackgroundOverlay = "#000000";
161
+ export const colorDivider = "#515151";
162
+ export const colorLinkTextDefault = "#76cff4";
163
+ export const colorLinkTextHover = "#98dbf7";
164
+ export const colorLinkTextPress = "#bbe7f9";
165
+ export const colorLinkTextVisitedDefault = "#c477d0";
166
+ export const colorLinkTextVisitedHover = "#d399dc";
167
+ export const colorLinkTextVisitedPress = "#e1bbe8";
168
+ export const colorLinkSurfaceVisitedHover = "#250e29";
169
+ export const colorLinkSurfaceVisitedPress = "#37153d";
116
170
  export const borderRadius100 = "4px";
117
171
  export const borderRadius150 = "6px";
118
172
  export const borderRadius200 = "8px";
@@ -177,39 +231,43 @@ export const notificationColorBackgroundError = "#f21a27";
177
231
  export const notificationColorBackgroundWarning = "#ffbf0e";
178
232
  export const notificationColorBackgroundAlarm = "#fa7a12";
179
233
  export const notificationColorBackgroundInformation = "#30ade9";
180
- export const notificationColorBackgroundTheme = "#414141";
181
- export const notificationColorText = "#f2f2f2";
234
+ export const notificationColorBackgroundTheme = "#ffffff";
235
+ export const notificationColorText = "#414141";
182
236
  export const notificationShadow = "0 -2px 19px 0 rgba(0, 0, 0, 0.1)";
183
237
  export const iconColorBackgroundNeutral = "#a0a0a0";
184
- export const iconColorBackgroundDefault = "#f2f2f2";
185
- export const iconColorBackgroundTheme = "#000000";
186
- export const containerColorBackground = "#414141";
187
- export const containerColorTextHeader = "#f2f2f2";
188
- export const containerColorTextBody = "#ebebeb";
189
- export const cardShadow = "0 -2px 19px 0 rgba(255, 255, 255, 0.1)";
190
- export const buttonColorBackgroundPrimaryActive = "#76cff4"; // Color used for the default state of a secondary button
191
- export const buttonColorBackgroundPrimaryHover = "#30ade9";
192
- export const buttonColorBackgroundPrimaryPress = "#98dbf7";
193
- export const buttonColorBackgroundPrimaryFocus = "#bbe7f9";
194
- export const buttonColorBackgroundPrimaryDisabled = "#616161";
195
- export const buttonColorBorderSecondaryActive = "#76cff4";
196
- export const buttonColorBorderSecondaryHover = "#30ade9";
197
- export const buttonColorBorderSecondaryPress = "#98dbf7";
198
- export const buttonColorBorderSecondaryFocus = "#bbe7f9";
199
- export const buttonColorBorderSecondaryDisabled = "#616161";
200
- export const buttonColorTextSecondaryActive = "#76cff4";
201
- export const buttonColorTextSecondaryHover = "#30ade9";
202
- export const buttonColorTextSecondaryPress = "#98dbf7";
203
- export const buttonColorTextSecondaryFocus = "#bbe7f9";
204
- export const buttonColorTextSecondaryDisabled = "#616161";
205
- export const buttonColorTextPrimary = "#414141";
206
- export const tabColorLineActive = "#76cff4";
207
- export const tabColorLineHover = "#30ade9";
208
- export const tabColorLinePress = "#98dbf7";
209
- export const tabColorLineFocus = "#bbe7f9";
210
- export const tabColorLineDisabled = "#616161";
211
- export const tabColorTextActive = "#76cff4";
212
- export const tabColorTextHover = "#30ade9";
213
- export const tabColorTextPress = "#98dbf7";
214
- export const tabColorTextFocus = "#bbe7f9";
215
- export const tabColorTextDisabled = "#616161";
238
+ export const iconColorBackgroundDefault = "#414141";
239
+ export const iconColorBackgroundTheme = "#ffffff";
240
+ export const containerColorBackground = "#ffffff";
241
+ export const containerColorTextHeader = "#414141";
242
+ export const containerColorTextBody = "#616161";
243
+ export const cardShadow = "0 -2px 19px 0 rgba(0, 0, 0, 0.1)";
244
+ export const cardColorBackground = "#ffffff";
245
+ export const cardBorderHover = "2px solid #BFBFBF";
246
+ export const cardBorderAlert = "2px solid #f21a27";
247
+ export const cardBorderUnderline = "1px solid #d8dde0";
248
+ export const buttonColorBackgroundPrimaryActive = "#30ade9"; // Color used for the default state of a secondary button
249
+ export const buttonColorBackgroundPrimaryHover = "#76cff4";
250
+ export const buttonColorBackgroundPrimaryPress = "#0097e0";
251
+ export const buttonColorBackgroundPrimaryFocus = "#0081c0";
252
+ export const buttonColorBackgroundPrimaryDisabled = "#dcdcdc";
253
+ export const buttonColorBorderSecondaryActive = "#30ade9";
254
+ export const buttonColorBorderSecondaryHover = "#76cff4";
255
+ export const buttonColorBorderSecondaryPress = "#0097e0";
256
+ export const buttonColorBorderSecondaryFocus = "#0081c0";
257
+ export const buttonColorBorderSecondaryDisabled = "#dcdcdc";
258
+ export const buttonColorTextSecondaryActive = "#30ade9";
259
+ export const buttonColorTextSecondaryHover = "#76cff4";
260
+ export const buttonColorTextSecondaryPress = "#0097e0";
261
+ export const buttonColorTextSecondaryFocus = "#0081c0";
262
+ export const buttonColorTextSecondaryDisabled = "#dcdcdc";
263
+ export const buttonColorTextPrimary = "#ffffff";
264
+ export const tabColorLineActive = "#30ade9";
265
+ export const tabColorLineHover = "#76cff4";
266
+ export const tabColorLinePress = "#0097e0";
267
+ export const tabColorLineFocus = "#0081c0";
268
+ export const tabColorLineDisabled = "#dcdcdc";
269
+ export const tabColorTextActive = "#30ade9";
270
+ export const tabColorTextHover = "#76cff4";
271
+ export const tabColorTextPress = "#0097e0";
272
+ export const tabColorTextFocus = "#0081c0";
273
+ export const tabColorTextDisabled = "#dcdcdc";
@@ -100,6 +100,18 @@ module.exports = {
100
100
  colorDarkGray105: "#383838",
101
101
  colorDarkGray115: "#282828",
102
102
  colorDarkGray125: "#1a1a1a",
103
+ colorPurple10: "#f0ddf3",
104
+ colorPurple20: "#e1bbe8",
105
+ colorPurple30: "#d399dc",
106
+ colorPurple40: "#c477d0",
107
+ colorPurple50: "#b556c5",
108
+ colorPurple60: "#a03db0",
109
+ colorPurple70: "#81318e",
110
+ colorPurple80: "#6f2a7a",
111
+ colorPurple90: "#5c2365",
112
+ colorPurple100: "#4a1c51",
113
+ colorPurple110: "#37153d",
114
+ colorPurple120: "#250e29",
103
115
  colorFeedbackPositive: "#00c3ac",
104
116
  colorFeedbackWarning: "#ffbf0e",
105
117
  colorFeedbackNegative: "#f21a27",
@@ -150,7 +162,12 @@ module.exports = {
150
162
  colorDivider: "#cecece",
151
163
  colorLinkTextDefault: "#00689a",
152
164
  colorLinkTextHover: "#005077",
153
- colorLinkTextPress: "#005077",
165
+ colorLinkTextPress: "#004160",
166
+ colorLinkTextVisitedDefault: "#5c2365",
167
+ colorLinkTextVisitedHover: "#4a1c51",
168
+ colorLinkTextVisitedPress: "#37153d",
169
+ colorLinkSurfaceVisitedHover: "#f0ddf3",
170
+ colorLinkSurfaceVisitedPress: "#e1bbe8",
154
171
  borderRadius100: "4px",
155
172
  borderRadius150: "6px",
156
173
  borderRadius200: "8px",
@@ -99,6 +99,18 @@ export const colorBlueGray120: string;
99
99
  export const colorDarkGray105: string;
100
100
  export const colorDarkGray115: string;
101
101
  export const colorDarkGray125: string;
102
+ export const colorPurple10: string;
103
+ export const colorPurple20: string;
104
+ export const colorPurple30: string;
105
+ export const colorPurple40: string;
106
+ export const colorPurple50: string;
107
+ export const colorPurple60: string;
108
+ export const colorPurple70: string;
109
+ export const colorPurple80: string;
110
+ export const colorPurple90: string;
111
+ export const colorPurple100: string;
112
+ export const colorPurple110: string;
113
+ export const colorPurple120: string;
102
114
  /** System status is positive */
103
115
  export const colorFeedbackPositive: string;
104
116
  /** System status is warning */
@@ -157,6 +169,11 @@ export const colorDivider: string;
157
169
  export const colorLinkTextDefault: string;
158
170
  export const colorLinkTextHover: string;
159
171
  export const colorLinkTextPress: string;
172
+ export const colorLinkTextVisitedDefault: string;
173
+ export const colorLinkTextVisitedHover: string;
174
+ export const colorLinkTextVisitedPress: string;
175
+ export const colorLinkSurfaceVisitedHover: string;
176
+ export const colorLinkSurfaceVisitedPress: string;
160
177
  export const borderRadius100: string;
161
178
  export const borderRadius150: string;
162
179
  export const borderRadius200: string;
@@ -99,6 +99,18 @@ export const colorBlueGray120: string;
99
99
  export const colorDarkGray105: string;
100
100
  export const colorDarkGray115: string;
101
101
  export const colorDarkGray125: string;
102
+ export const colorPurple10: string;
103
+ export const colorPurple20: string;
104
+ export const colorPurple30: string;
105
+ export const colorPurple40: string;
106
+ export const colorPurple50: string;
107
+ export const colorPurple60: string;
108
+ export const colorPurple70: string;
109
+ export const colorPurple80: string;
110
+ export const colorPurple90: string;
111
+ export const colorPurple100: string;
112
+ export const colorPurple110: string;
113
+ export const colorPurple120: string;
102
114
  /** System status is positive */
103
115
  export const colorFeedbackPositive: string;
104
116
  /** System status is warning */
@@ -157,6 +169,11 @@ export const colorDivider: string;
157
169
  export const colorLinkTextDefault: string;
158
170
  export const colorLinkTextHover: string;
159
171
  export const colorLinkTextPress: string;
172
+ export const colorLinkTextVisitedDefault: string;
173
+ export const colorLinkTextVisitedHover: string;
174
+ export const colorLinkTextVisitedPress: string;
175
+ export const colorLinkSurfaceVisitedHover: string;
176
+ export const colorLinkSurfaceVisitedPress: string;
160
177
  export const borderRadius100: string;
161
178
  export const borderRadius150: string;
162
179
  export const borderRadius200: string;
@@ -99,6 +99,18 @@ export const colorBlueGray120 = "#1b1e21";
99
99
  export const colorDarkGray105 = "#383838";
100
100
  export const colorDarkGray115 = "#282828";
101
101
  export const colorDarkGray125 = "#1a1a1a";
102
+ export const colorPurple10 = "#f0ddf3";
103
+ export const colorPurple20 = "#e1bbe8";
104
+ export const colorPurple30 = "#d399dc";
105
+ export const colorPurple40 = "#c477d0";
106
+ export const colorPurple50 = "#b556c5";
107
+ export const colorPurple60 = "#a03db0";
108
+ export const colorPurple70 = "#81318e";
109
+ export const colorPurple80 = "#6f2a7a";
110
+ export const colorPurple90 = "#5c2365";
111
+ export const colorPurple100 = "#4a1c51";
112
+ export const colorPurple110 = "#37153d";
113
+ export const colorPurple120 = "#250e29";
102
114
  export const colorFeedbackPositive = "#00c3ac"; // System status is positive
103
115
  export const colorFeedbackWarning = "#ffbf0e"; // System status is warning
104
116
  export const colorFeedbackNegative = "#f21a27"; // System status is warning
@@ -149,7 +161,12 @@ export const colorCommonBackgroundOverlay = "#000000";
149
161
  export const colorDivider = "#cecece";
150
162
  export const colorLinkTextDefault = "#00689a";
151
163
  export const colorLinkTextHover = "#005077";
152
- export const colorLinkTextPress = "#005077";
164
+ export const colorLinkTextPress = "#004160";
165
+ export const colorLinkTextVisitedDefault = "#5c2365";
166
+ export const colorLinkTextVisitedHover = "#4a1c51";
167
+ export const colorLinkTextVisitedPress = "#37153d";
168
+ export const colorLinkSurfaceVisitedHover = "#f0ddf3";
169
+ export const colorLinkSurfaceVisitedPress = "#e1bbe8";
153
170
  export const borderRadius100 = "4px";
154
171
  export const borderRadius150 = "6px";
155
172
  export const borderRadius200 = "8px";
@@ -387,6 +387,54 @@
387
387
  "#1a1a1a",
388
388
  "color"
389
389
  ],
390
+ "color-purple-10": [
391
+ "#f0ddf3",
392
+ "color"
393
+ ],
394
+ "color-purple-20": [
395
+ "#e1bbe8",
396
+ "color"
397
+ ],
398
+ "color-purple-30": [
399
+ "#d399dc",
400
+ "color"
401
+ ],
402
+ "color-purple-40": [
403
+ "#c477d0",
404
+ "color"
405
+ ],
406
+ "color-purple-50": [
407
+ "#b556c5",
408
+ "color"
409
+ ],
410
+ "color-purple-60": [
411
+ "#a03db0",
412
+ "color"
413
+ ],
414
+ "color-purple-70": [
415
+ "#81318e",
416
+ "color"
417
+ ],
418
+ "color-purple-80": [
419
+ "#6f2a7a",
420
+ "color"
421
+ ],
422
+ "color-purple-90": [
423
+ "#5c2365",
424
+ "color"
425
+ ],
426
+ "color-purple-100": [
427
+ "#4a1c51",
428
+ "color"
429
+ ],
430
+ "color-purple-110": [
431
+ "#37153d",
432
+ "color"
433
+ ],
434
+ "color-purple-120": [
435
+ "#250e29",
436
+ "color"
437
+ ],
390
438
  "color-feedback-positive": [
391
439
  "#00c3ac",
392
440
  "color"
@@ -387,6 +387,54 @@
387
387
  "#1a1a1a",
388
388
  "color"
389
389
  ],
390
+ "color-purple-10": [
391
+ "#f0ddf3",
392
+ "color"
393
+ ],
394
+ "color-purple-20": [
395
+ "#e1bbe8",
396
+ "color"
397
+ ],
398
+ "color-purple-30": [
399
+ "#d399dc",
400
+ "color"
401
+ ],
402
+ "color-purple-40": [
403
+ "#c477d0",
404
+ "color"
405
+ ],
406
+ "color-purple-50": [
407
+ "#b556c5",
408
+ "color"
409
+ ],
410
+ "color-purple-60": [
411
+ "#a03db0",
412
+ "color"
413
+ ],
414
+ "color-purple-70": [
415
+ "#81318e",
416
+ "color"
417
+ ],
418
+ "color-purple-80": [
419
+ "#6f2a7a",
420
+ "color"
421
+ ],
422
+ "color-purple-90": [
423
+ "#5c2365",
424
+ "color"
425
+ ],
426
+ "color-purple-100": [
427
+ "#4a1c51",
428
+ "color"
429
+ ],
430
+ "color-purple-110": [
431
+ "#37153d",
432
+ "color"
433
+ ],
434
+ "color-purple-120": [
435
+ "#250e29",
436
+ "color"
437
+ ],
390
438
  "color-feedback-positive": [
391
439
  "#00c3ac",
392
440
  "color"