@algorithm-shift/design-system 1.2.87 → 1.2.88
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.css +14 -12
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +27 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +33 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -24,6 +24,8 @@
|
|
|
24
24
|
--color-red-500: oklch(63.7% 0.237 25.331);
|
|
25
25
|
--color-red-800: oklch(44.4% 0.177 26.899);
|
|
26
26
|
--color-yellow-400: oklch(85.2% 0.199 91.936);
|
|
27
|
+
--color-green-50: oklch(98.2% 0.018 155.826);
|
|
28
|
+
--color-green-700: oklch(52.7% 0.154 150.069);
|
|
27
29
|
--color-teal-200: oklch(91% 0.096 180.426);
|
|
28
30
|
--color-teal-600: oklch(60% 0.118 184.704);
|
|
29
31
|
--color-teal-700: oklch(51.1% 0.096 186.391);
|
|
@@ -1016,9 +1018,6 @@
|
|
|
1016
1018
|
.border-\[\#12715b\] {
|
|
1017
1019
|
border-color: #12715b;
|
|
1018
1020
|
}
|
|
1019
|
-
.border-\[\#034486\] {
|
|
1020
|
-
border-color: #034486;
|
|
1021
|
-
}
|
|
1022
1021
|
.border-\[\#BDBDBD\] {
|
|
1023
1022
|
border-color: #BDBDBD;
|
|
1024
1023
|
}
|
|
@@ -1037,6 +1036,9 @@
|
|
|
1037
1036
|
.border-gray-400 {
|
|
1038
1037
|
border-color: var(--color-gray-400);
|
|
1039
1038
|
}
|
|
1039
|
+
.border-green-700 {
|
|
1040
|
+
border-color: var(--color-green-700);
|
|
1041
|
+
}
|
|
1040
1042
|
.border-input {
|
|
1041
1043
|
border-color: var(--input);
|
|
1042
1044
|
}
|
|
@@ -1061,18 +1063,12 @@
|
|
|
1061
1063
|
.bg-\[\#12715b\] {
|
|
1062
1064
|
background-color: #12715b;
|
|
1063
1065
|
}
|
|
1064
|
-
.bg-\[\#034486\] {
|
|
1065
|
-
background-color: #034486;
|
|
1066
|
-
}
|
|
1067
1066
|
.bg-\[\#E9E9E9\] {
|
|
1068
1067
|
background-color: #E9E9E9;
|
|
1069
1068
|
}
|
|
1070
1069
|
.bg-\[\#FF4A4A\] {
|
|
1071
1070
|
background-color: #FF4A4A;
|
|
1072
1071
|
}
|
|
1073
|
-
.bg-\[\#e0f2fe\] {
|
|
1074
|
-
background-color: #e0f2fe;
|
|
1075
|
-
}
|
|
1076
1072
|
.bg-\[\#fff\] {
|
|
1077
1073
|
background-color: #fff;
|
|
1078
1074
|
}
|
|
@@ -1118,6 +1114,12 @@
|
|
|
1118
1114
|
.bg-gray-500 {
|
|
1119
1115
|
background-color: var(--color-gray-500);
|
|
1120
1116
|
}
|
|
1117
|
+
.bg-green-50 {
|
|
1118
|
+
background-color: var(--color-green-50);
|
|
1119
|
+
}
|
|
1120
|
+
.bg-green-700 {
|
|
1121
|
+
background-color: var(--color-green-700);
|
|
1122
|
+
}
|
|
1121
1123
|
.bg-muted {
|
|
1122
1124
|
background-color: var(--muted);
|
|
1123
1125
|
}
|
|
@@ -1364,9 +1366,6 @@
|
|
|
1364
1366
|
.text-\[\#12715B\] {
|
|
1365
1367
|
color: #12715B;
|
|
1366
1368
|
}
|
|
1367
|
-
.text-\[\#034486\] {
|
|
1368
|
-
color: #034486;
|
|
1369
|
-
}
|
|
1370
1369
|
.text-\[\#383838\] {
|
|
1371
1370
|
color: #383838;
|
|
1372
1371
|
}
|
|
@@ -1415,6 +1414,9 @@
|
|
|
1415
1414
|
.text-gray-900 {
|
|
1416
1415
|
color: var(--color-gray-900);
|
|
1417
1416
|
}
|
|
1417
|
+
.text-green-700 {
|
|
1418
|
+
color: var(--color-green-700);
|
|
1419
|
+
}
|
|
1418
1420
|
.text-muted-foreground {
|
|
1419
1421
|
color: var(--muted-foreground);
|
|
1420
1422
|
}
|