@thecb/components 7.10.5-beta.2 → 7.10.5-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.js +2025 -541
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +212 -19
- package/dist/index.esm.js +1999 -540
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/constants/colors.js +4 -4
package/package.json
CHANGED
package/src/constants/colors.js
CHANGED
|
@@ -120,8 +120,8 @@ const ALERT_COLORS = {
|
|
|
120
120
|
// These pill colors match the current CityBase design and are grouped for convenience.
|
|
121
121
|
const PILL_COLORS = {
|
|
122
122
|
danger: {
|
|
123
|
-
background:
|
|
124
|
-
text:
|
|
123
|
+
background: BLUSH_RED,
|
|
124
|
+
text: RAZZMATAZZ_RED
|
|
125
125
|
},
|
|
126
126
|
neutral: {
|
|
127
127
|
background: GRECIAN_GREY,
|
|
@@ -132,8 +132,8 @@ const PILL_COLORS = {
|
|
|
132
132
|
text: SEA_GREEN
|
|
133
133
|
},
|
|
134
134
|
warning: {
|
|
135
|
-
background:
|
|
136
|
-
text:
|
|
135
|
+
background: HALF_COLONIAL_WHITE,
|
|
136
|
+
text: ZEST_ORANGE
|
|
137
137
|
}
|
|
138
138
|
};
|
|
139
139
|
|