@codapet/design-system 0.1.5 → 0.1.6

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/styles.css CHANGED
@@ -47,6 +47,31 @@
47
47
  --color-brand-normal: var(--brand-normal);
48
48
  --color-brand-vibrant: var(--brand-vibrant);
49
49
  --color-brand-dark: var(--brand-dark);
50
+
51
+ /* Custom Sand Colors */
52
+ --color-sand-light: var(--sand-light);
53
+ --color-sand-normal: var(--sand-normal);
54
+ --color-sand-dark: var(--sand-dark);
55
+
56
+ /* Rose accent */
57
+ --color-rose-light: var(--rose-light);
58
+ --color-rose-normal: var(--rose-normal);
59
+ --color-rose-dark: var(--rose-dark);
60
+
61
+ /* Red accent */
62
+ --color-red-subtle: var(--red-subtle);
63
+
64
+ /* Sage accent */
65
+ --color-sage-light: var(--sage-light);
66
+ --color-sage-normal: var(--sage-normal);
67
+ --color-sage-dark: var(--sage-dark);
68
+
69
+ /* Custom warning color scale */
70
+ --color-warning-subtle: var(--warning-subtle);
71
+ --color-warning-light: var(--warning-light);
72
+ --color-warning-normal: var(--warning-normal);
73
+ --color-warning-vibrant: var(--warning-vibrant);
74
+ --color-warning-dark: var(--warning-dark);
50
75
  }
51
76
 
52
77
  :root {
@@ -91,9 +116,34 @@
91
116
  --brand-vibrant: oklch(0.5424 0.1123 253.26);
92
117
  --brand-dark: oklch(0.4463 0.0577 255.4);
93
118
 
119
+ /* Custom Sand Colors */
120
+ --sand-light: oklch(0.9815 0.0046 106.48);
121
+ --sand-normal: oklch(0.9557 0.0053 67.76);
122
+ --sand-dark: oklch(0.8691 0.0045 56.36);
123
+
94
124
  /* Primary Color uses brand-normal */
95
125
  --primary: var(--brand-normal);
96
126
  --primary-foreground: oklch(0.984 0.003 247.858);
127
+
128
+ /* Rose accent */
129
+ --rose-light: oklch(0.9722 0.0086 0.11);
130
+ --rose-normal: oklch(0.8046 0.0487 0.45);
131
+ --rose-dark: oklch(0.5133 0.0289 0.34);
132
+
133
+ /* Custom red accent */
134
+ --red-subtle: oklch(0.9903 0.003 17.21);
135
+
136
+ /* Sage accent */
137
+ --sage-light: oklch(0.932 0.01726072052629843 164.64944629777187);
138
+ --sage-normal: oklch(0.7506 0.034 163.9);
139
+ --sage-dark: oklch(0.4323 0.0246 165.25);
140
+
141
+ /* Custom warning color scale */
142
+ --warning-subtle: oklch(0.9972 0.0134 106.64);
143
+ --warning-light: oklch(0.888 0.086 112.02);
144
+ --warning-normal: oklch(0.845 0.1914 115.53);
145
+ --warning-vibrant: oklch(0.7956 0.1807 115.58);
146
+ --warning-dark: oklch(0.473 0.0898 90.46);
97
147
  }
98
148
 
99
149
  .dark {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codapet/design-system",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "main": "./dist/index.mjs",
6
6
  "module": "./dist/index.mjs",