@codapet/design-system 0.2.2 → 0.2.5
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.d.mts +4 -1
- package/dist/index.mjs +53 -28
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +10 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -50,6 +50,8 @@
|
|
|
50
50
|
--color-brand-dark: var(--brand-dark);
|
|
51
51
|
|
|
52
52
|
--color-gray-subtle: var(--gray-subtle);
|
|
53
|
+
--color-surface-light: var(--surface-light);
|
|
54
|
+
--color-surface-default: var(--surface-default);
|
|
53
55
|
|
|
54
56
|
/* Custom Sand Colors */
|
|
55
57
|
--color-sand-light: var(--sand-light);
|
|
@@ -63,11 +65,15 @@
|
|
|
63
65
|
|
|
64
66
|
/* Red accent */
|
|
65
67
|
--color-red-subtle: var(--red-subtle);
|
|
68
|
+
--color-red-surface-dark: var(--red-surface-dark);
|
|
66
69
|
|
|
67
70
|
/* Sage accent */
|
|
68
71
|
--color-sage-light: var(--sage-light);
|
|
69
72
|
--color-sage-normal: var(--sage-normal);
|
|
70
73
|
--color-sage-dark: var(--sage-dark);
|
|
74
|
+
|
|
75
|
+
/* Icon disabled */
|
|
76
|
+
--color-icon-disabled: var(--icon-disabled);
|
|
71
77
|
}
|
|
72
78
|
|
|
73
79
|
:root {
|
|
@@ -130,6 +136,7 @@
|
|
|
130
136
|
|
|
131
137
|
/* Custom red accent */
|
|
132
138
|
--red-subtle: oklch(0.9903 0.003 17.21);
|
|
139
|
+
--red-surface-dark: oklch(0.3967 0.1408 25.71);
|
|
133
140
|
|
|
134
141
|
/* Sage accent */
|
|
135
142
|
--sage-light: oklch(0.932 0.01726072052629843 164.64944629777187);
|
|
@@ -137,6 +144,9 @@
|
|
|
137
144
|
--sage-dark: oklch(0.4323 0.0246 165.25);
|
|
138
145
|
|
|
139
146
|
--gray-subtle: oklch(0.6722 0.0119 286.08);
|
|
147
|
+
--icon-disabled: oklch(0.8686 0.0216 252.51);
|
|
148
|
+
--surface-light: oklch(0.9397 0.0149 251.16);
|
|
149
|
+
--surface-default: oklch(0.8711 0.0055 286.29);
|
|
140
150
|
}
|
|
141
151
|
|
|
142
152
|
.dark {
|