@polastack/design-system 0.1.26 → 0.1.27
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/README.md +2 -2
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/tokens/index.d.ts +22 -22
- package/dist/tokens/index.js +22 -22
- package/dist/tokens/index.js.map +1 -1
- package/package.json +1 -1
- package/src/styles/tokens.css +28 -27
package/README.md
CHANGED
|
@@ -134,11 +134,11 @@ pnpm size
|
|
|
134
134
|
|
|
135
135
|
## ブランドカラー
|
|
136
136
|
|
|
137
|
-
メインカラー: **#
|
|
137
|
+
メインカラー: **#13C3A0**(ティール)
|
|
138
138
|
|
|
139
139
|
| カテゴリ | カラー |
|
|
140
140
|
|---------|--------|
|
|
141
|
-
| Primary | Teal (#
|
|
141
|
+
| Primary | Teal (#13C3A0) |
|
|
142
142
|
| Success | Green |
|
|
143
143
|
| Warning | Amber |
|
|
144
144
|
| Error | Red |
|
package/dist/index.d.ts
CHANGED
|
@@ -819,14 +819,14 @@ declare const ChartContainer: React.ForwardRefExoticComponent<ChartContainerProp
|
|
|
819
819
|
*/
|
|
820
820
|
declare const chartColors: {
|
|
821
821
|
/** Solid colors for bars, lines, dots, and legends */
|
|
822
|
-
readonly categorical: readonly ["#
|
|
822
|
+
readonly categorical: readonly ["#13C3A0", "#4E79A7", "#E8A838", "#D4687A", "#7C6BB1", "#6BA368", "#5BA4CF", "#B07A53"];
|
|
823
823
|
/** Subtle tints — 1:1 paired with categorical for area fills and backgrounds */
|
|
824
|
-
readonly subtle: readonly ["#
|
|
824
|
+
readonly subtle: readonly ["#E8FAF6", "#E8EEF4", "#FDF3E0", "#FCEAED", "#EEEBF5", "#EAF3EA", "#E6F1F8", "#F4EDE6"];
|
|
825
825
|
/** Dark-mode subtle tints — 1:1 paired with categorical */
|
|
826
826
|
readonly subtleDark: readonly ["#0C2B26", "#1A2535", "#2C2312", "#2C1A1E", "#1E1A2C", "#1A2C1A", "#1A2535", "#2C2418"];
|
|
827
827
|
/** Semantic colors for status-meaning charts (P&L, health scores, etc.) */
|
|
828
828
|
readonly semantic: {
|
|
829
|
-
readonly positive: "#
|
|
829
|
+
readonly positive: "#13C3A0";
|
|
830
830
|
readonly negative: "#D4687A";
|
|
831
831
|
readonly neutral: "#94939B";
|
|
832
832
|
readonly warning: "#E8A838";
|
package/dist/index.js
CHANGED
|
@@ -4186,7 +4186,7 @@ ChartContainer.displayName = "ChartContainer";
|
|
|
4186
4186
|
var chartColors = {
|
|
4187
4187
|
/** Solid colors for bars, lines, dots, and legends */
|
|
4188
4188
|
categorical: [
|
|
4189
|
-
"#
|
|
4189
|
+
"#13C3A0",
|
|
4190
4190
|
// teal — brand anchor
|
|
4191
4191
|
"#4E79A7",
|
|
4192
4192
|
// slate — classic dataviz blue
|
|
@@ -4205,7 +4205,7 @@ var chartColors = {
|
|
|
4205
4205
|
],
|
|
4206
4206
|
/** Subtle tints — 1:1 paired with categorical for area fills and backgrounds */
|
|
4207
4207
|
subtle: [
|
|
4208
|
-
"#
|
|
4208
|
+
"#E8FAF6",
|
|
4209
4209
|
// teal
|
|
4210
4210
|
"#E8EEF4",
|
|
4211
4211
|
// slate
|
|
@@ -4243,7 +4243,7 @@ var chartColors = {
|
|
|
4243
4243
|
],
|
|
4244
4244
|
/** Semantic colors for status-meaning charts (P&L, health scores, etc.) */
|
|
4245
4245
|
semantic: {
|
|
4246
|
-
positive: "#
|
|
4246
|
+
positive: "#13C3A0",
|
|
4247
4247
|
negative: "#D4687A",
|
|
4248
4248
|
neutral: "#94939B",
|
|
4249
4249
|
warning: "#E8A838"
|