arxatec-ui 0.1.11 → 0.1.12

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.
Files changed (2) hide show
  1. package/dist/styles.css +28 -28
  2. package/package.json +1 -1
package/dist/styles.css CHANGED
@@ -128,47 +128,47 @@
128
128
 
129
129
  /* Task tag colors */
130
130
 
131
- --task-tag-foreground-gray: oklch(92% 0.01 260);
132
- --task-tag-background-gray: oklch(32% 0.018 260);
131
+ --color-task-tag-foreground-gray: var(--task-tag-foreground-gray);
132
+ --color-task-tag-background-gray: var(--task-tag-background-gray);
133
133
 
134
- --task-tag-foreground-red: oklch(88% 0.06 25);
135
- --task-tag-background-red: oklch(30% 0.09 26);
134
+ --color-task-tag-foreground-red: var(--task-tag-foreground-red);
135
+ --color-task-tag-background-red: var(--task-tag-background-red);
136
136
 
137
- --task-tag-foreground-yellow: oklch(90% 0.07 95);
138
- --task-tag-background-yellow: oklch(36% 0.08 58);
137
+ --color-task-tag-foreground-yellow: var(--task-tag-foreground-yellow);
138
+ --color-task-tag-background-yellow: var(--task-tag-background-yellow);
139
139
 
140
- --task-tag-foreground-orange: oklch(90% 0.07 50);
141
- --task-tag-background-orange: oklch(36% 0.11 42);
140
+ --color-task-tag-foreground-orange: var(--task-tag-foreground-orange);
141
+ --color-task-tag-background-orange: var(--task-tag-background-orange);
142
142
 
143
- --task-tag-foreground-purple: oklch(90% 0.08 302);
144
- --task-tag-background-purple: oklch(32% 0.14 305);
143
+ --color-task-tag-foreground-purple: var(--task-tag-foreground-purple);
144
+ --color-task-tag-background-purple: var(--task-tag-background-purple);
145
145
 
146
- --task-tag-foreground-blue: oklch(88% 0.08 260);
147
- --task-tag-background-blue: oklch(32% 0.12 265);
146
+ --color-task-tag-foreground-blue: var(--task-tag-foreground-blue);
147
+ --color-task-tag-background-blue: var(--task-tag-background-blue);
148
148
 
149
- --task-tag-foreground-indigo: oklch(88% 0.08 277);
150
- --task-tag-background-indigo: oklch(30% 0.12 278);
149
+ --color-task-tag-foreground-indigo: var(--task-tag-foreground-indigo);
150
+ --color-task-tag-background-indigo: var(--task-tag-background-indigo);
151
151
 
152
- --task-tag-foreground-sky: oklch(88% 0.06 241);
153
- --task-tag-background-sky: oklch(30% 0.08 241);
152
+ --color-task-tag-foreground-sky: var(--task-tag-foreground-sky);
153
+ --color-task-tag-background-sky: var(--task-tag-background-sky);
154
154
 
155
- --task-tag-foreground-green: oklch(86% 0.07 152);
156
- --task-tag-background-green: oklch(28% 0.065 152.934);
155
+ --color-task-tag-foreground-green: var(--task-tag-foreground-green);
156
+ --color-task-tag-background-green: var(--task-tag-background-green);
157
157
 
158
- --task-tag-foreground-lime: oklch(90% 0.08 130);
159
- --task-tag-background-lime: oklch(32% 0.08 131);
158
+ --color-task-tag-foreground-lime: var(--task-tag-foreground-lime);
159
+ --color-task-tag-background-lime: var(--task-tag-background-lime);
160
160
 
161
- --task-priority-foreground-low: oklch(86% 0.07 152);
162
- --task-priority-background-low: oklch(28% 0.065 152.934);
161
+ --color-task-priority-foreground-low: var(--task-priority-foreground-low);
162
+ --color-task-priority-background-low: var(--task-priority-background-low);
163
163
 
164
- --task-priority-foreground-medium: oklch(88% 0.08 85);
165
- --task-priority-background-medium: oklch(30% 0.07 53.813);
164
+ --color-task-priority-foreground-medium: var(--task-priority-foreground-medium);
165
+ --color-task-priority-background-medium: var(--task-priority-background-medium);
166
166
 
167
- --task-priority-foreground-high: oklch(88% 0.07 35);
168
- --task-priority-background-high: oklch(32% 0.1 32);
167
+ --color-task-priority-foreground-high: var(--task-priority-foreground-high);
168
+ --color-task-priority-background-high: var(--task-priority-background-high);
169
169
 
170
- --task-priority-foreground-critical: oklch(90% 0.09 22);
171
- --task-priority-background-critical: oklch(28% 0.12 22);
170
+ --color-task-priority-foreground-critical: var(--task-priority-foreground-critical);
171
+ --color-task-priority-background-critical: var(--task-priority-background-critical);
172
172
  }
173
173
 
174
174
  :root {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arxatec-ui",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "React component library for building Arxatec product UIs—built on established ecosystem libraries for a consistent, efficient workflow. More at https://arxatec.net.",
5
5
  "license": "MIT",
6
6
  "type": "module",