@wtasnorg/candi 0.0.34 → 0.0.38
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 +43 -31
- package/dist/base.css +123 -123
- package/dist/colors.js +422 -422
- package/dist/colors.json +422 -422
- package/dist/colors.mjs +422 -422
- package/dist/scandinavian.css +123 -123
- package/dist/v4/theme.css +182 -182
- package/package.json +10 -6
package/README.md
CHANGED
|
@@ -20,6 +20,8 @@ Candi provides a unified system for colors using the OKLCH color space, synchron
|
|
|
20
20
|
| GNOME | Full | GTK3 & GTK4 themes for X11 and Wayland |
|
|
21
21
|
| Obsidian | Full | Light & Dark themes with 60+ CSS variables |
|
|
22
22
|
| Showcase App | Full | Interactive Flutter gallery & playground |
|
|
23
|
+
| TypeScript Core | Full | Color science, OKLCH, and derivation engine APIs |
|
|
24
|
+
| Dart Core | Full | OKLCH and semantic color derivation for Dart |
|
|
23
25
|
|
|
24
26
|
---
|
|
25
27
|
|
|
@@ -71,33 +73,26 @@ Candi uses OKLCH as its primary color space instead of Hex codes:
|
|
|
71
73
|
candi/
|
|
72
74
|
├── ARCHITECTURE.md # System architecture and SSOT design
|
|
73
75
|
├── Knowledge.md # Lessons learned and development notes
|
|
76
|
+
├── dart/ # Dart core utilities library
|
|
77
|
+
├── flutter/ # Flutter package
|
|
78
|
+
├── gnome/ # GTK3/GTK4 themes
|
|
79
|
+
├── kde/ # KDE Plasma color schemes
|
|
80
|
+
├── obsidian/ # Obsidian theme
|
|
81
|
+
├── schemas/ # JSON Schemas for token validation
|
|
82
|
+
├── scripts/ # Build, test, and utility scripts
|
|
83
|
+
├── showcase_flutter/ # Flutter showcase application
|
|
74
84
|
├── src/ # Source files for npm package
|
|
75
85
|
│ ├── css/ # CSS files (base, components, utilities)
|
|
76
86
|
│ ├── data/ # Source of truth (colors.js)
|
|
77
|
-
│ ├── v4/ # Tailwind v4 @theme
|
|
78
87
|
│ ├── index.js # Main entry point
|
|
79
88
|
│ ├── plugin.js # Tailwind v3 plugin
|
|
80
89
|
│ ├── theme.js # Tailwind v3 theme extension
|
|
81
|
-
│
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
│ ├── build-*.js # Platform-specific builds
|
|
85
|
-
│ ├── test-*.js # Platform-specific tests
|
|
86
|
-
│ ├── sync-colors.js # Color synchronization
|
|
87
|
-
│ ├── color-conv.js # Color conversion utilities
|
|
88
|
-
│ ├── gen-oklch-primitives.js # Derivation engine
|
|
89
|
-
│ └── package-artifacts.js # Release packaging script
|
|
90
|
-
├── schemas/ # JSON Schemas for token validation
|
|
91
|
-
├── dist/ # Built output (git-ignored)
|
|
92
|
-
├── docs/ # Documentation guides
|
|
93
|
-
├── website/ # Documentation site (Vite + React)
|
|
94
|
-
├── flutter/ # Flutter package
|
|
95
|
-
├── vscode/ # VS Code extension
|
|
90
|
+
│ ├── types.d.ts # TypeScript type definitions
|
|
91
|
+
│ └── v4/ # Tailwind v4 @theme
|
|
92
|
+
├── ts/ # TypeScript core utilities library
|
|
96
93
|
├── vim/ # Vim colorschemes
|
|
97
|
-
├──
|
|
98
|
-
|
|
99
|
-
├── obsidian/ # Obsidian theme
|
|
100
|
-
└── showcase_flutter/ # Flutter showcase application
|
|
94
|
+
├── vscode/ # VS Code extension
|
|
95
|
+
└── website/ # Documentation site (Vite + React)
|
|
101
96
|
```
|
|
102
97
|
|
|
103
98
|
---
|
|
@@ -109,7 +104,8 @@ candi/
|
|
|
109
104
|
| Command | Description |
|
|
110
105
|
| :--- | :--- |
|
|
111
106
|
| `npm run build` | Build npm package (CSS, JS, TypeScript declarations) |
|
|
112
|
-
| `npm run build:all` | Build all platforms (Web, Flutter, VS Code, Vim, KDE, GNOME, Obsidian) |
|
|
107
|
+
| `npm run build:all` | Build all platforms (Web, Flutter, VS Code, Vim, KDE, GNOME, Obsidian, TS) |
|
|
108
|
+
| `npm run build:ts` | Build TypeScript core package only |
|
|
113
109
|
| `npm run build:flutter` | Build Flutter package only |
|
|
114
110
|
| `npm run build:vscode` | Build VS Code extension only |
|
|
115
111
|
| `npm run build:vim` | Build Vim colorschemes only |
|
|
@@ -133,6 +129,8 @@ candi/
|
|
|
133
129
|
| `npm run test:guard-semantics` | Validate palette integrity |
|
|
134
130
|
| `npm run test:scripts` | Regression test all build outputs |
|
|
135
131
|
| `npm run test:package-artifacts` | Test artifact generation |
|
|
132
|
+
| `npm run test:ts` | Test TypeScript core package |
|
|
133
|
+
| `npm run test:dart` | Test Dart core utilities package |
|
|
136
134
|
| `npm run test:flutter` | Test Flutter package |
|
|
137
135
|
| `npm run test:vscode` | Test VS Code extension |
|
|
138
136
|
| `npm run test:vim` | Test Vim colorschemes |
|
|
@@ -174,6 +172,20 @@ Tailwind v4 (Recommended):
|
|
|
174
172
|
@import "@wtasnorg/candi/v4";
|
|
175
173
|
```
|
|
176
174
|
|
|
175
|
+
The v4 theme uses the `--color-candi-` prefix for CSS variables (e.g., `--color-candi-bg`), which generates utility classes like `bg-candi-bg`, `text-candi-text`, etc.
|
|
176
|
+
|
|
177
|
+
Quick start example:
|
|
178
|
+
|
|
179
|
+
```css
|
|
180
|
+
@import "tailwindcss";
|
|
181
|
+
@import "@wtasnorg/candi/v4";
|
|
182
|
+
|
|
183
|
+
body {
|
|
184
|
+
background-color: var(--color-candi-bg);
|
|
185
|
+
color: var(--color-candi-text);
|
|
186
|
+
}
|
|
187
|
+
```
|
|
188
|
+
|
|
177
189
|
Tailwind v3:
|
|
178
190
|
|
|
179
191
|
```js
|
|
@@ -204,17 +216,17 @@ module.exports = {
|
|
|
204
216
|
|
|
205
217
|
| Token | Light | Dark | Usage |
|
|
206
218
|
| :--- | :--- | :--- | :--- |
|
|
207
|
-
| `bg` |
|
|
208
|
-
| `surface` |
|
|
209
|
-
| `elevated` | Pure white | Warm elevated dark | Modals, popups |
|
|
219
|
+
| `bg` | Bright white | Warm dark gray | Page background |
|
|
220
|
+
| `surface` | Warm off-white | Warm dark surface | Cards, sections |
|
|
221
|
+
| `elevated` | Pure near-white | Warm elevated dark | Modals, popups |
|
|
210
222
|
| `text` | Warm charcoal | Off-white | Primary text |
|
|
211
|
-
| `text-subtle` | Medium
|
|
212
|
-
| `text-muted` |
|
|
213
|
-
| `accent` |
|
|
214
|
-
| `secondary` |
|
|
215
|
-
| `success` |
|
|
216
|
-
| `warning` |
|
|
217
|
-
| `error` |
|
|
223
|
+
| `text-subtle` | Medium charcoal | Light gray | Secondary text |
|
|
224
|
+
| `text-muted` | Warm gray | Muted warm gray | Tertiary text |
|
|
225
|
+
| `accent` | Balanced steel blue | Lighter steel | Primary actions |
|
|
226
|
+
| `secondary` | Balanced terracotta | Lighter terracotta | Secondary actions |
|
|
227
|
+
| `success` | Balanced forest | Lighter forest | Success states |
|
|
228
|
+
| `warning` | Balanced amber | Lighter amber | Warning states |
|
|
229
|
+
| `error` | Balanced brick | Lighter brick | Error states |
|
|
218
230
|
|
|
219
231
|
### Primitive Colors
|
|
220
232
|
|
package/dist/base.css
CHANGED
|
@@ -12,26 +12,26 @@
|
|
|
12
12
|
|
|
13
13
|
:root {
|
|
14
14
|
/* @tokens-start-light */
|
|
15
|
-
--candi-bg: oklch(
|
|
16
|
-
--candi-surface: oklch(
|
|
17
|
-
--candi-elevated: oklch(
|
|
18
|
-
--candi-text: oklch(15% 0.
|
|
19
|
-
--candi-text-subtle: oklch(
|
|
20
|
-
--candi-text-muted: oklch(
|
|
21
|
-
--candi-border: oklch(
|
|
22
|
-
--candi-border-strong: oklch(
|
|
23
|
-
--candi-divider: oklch(
|
|
24
|
-
--candi-link: oklch(
|
|
25
|
-
--candi-disabled: oklch(
|
|
15
|
+
--candi-bg: oklch(97.5% 0.005 80);
|
|
16
|
+
--candi-surface: oklch(95% 0.008 80);
|
|
17
|
+
--candi-elevated: oklch(99.5% 0.003 80);
|
|
18
|
+
--candi-text: oklch(15% 0.01 80);
|
|
19
|
+
--candi-text-subtle: oklch(40% 0.008 80);
|
|
20
|
+
--candi-text-muted: oklch(52% 0.006 80);
|
|
21
|
+
--candi-border: oklch(84% 0.005 80);
|
|
22
|
+
--candi-border-strong: oklch(77% 0.006 80);
|
|
23
|
+
--candi-divider: oklch(90% 0.004 80);
|
|
24
|
+
--candi-link: oklch(48% 0.14 240);
|
|
25
|
+
--candi-disabled: oklch(82% 0.004 80);
|
|
26
26
|
--candi-overlay: oklch(0% 0 0 / 0.5);
|
|
27
27
|
--candi-scrim: oklch(0% 0 0 / 0.32);
|
|
28
|
-
--candi-inverse-surface: oklch(25% 0.
|
|
29
|
-
--candi-inverse-text: oklch(92% 0.
|
|
28
|
+
--candi-inverse-surface: oklch(25% 0.005 80);
|
|
29
|
+
--candi-inverse-text: oklch(92% 0.005 80);
|
|
30
30
|
--candi-shadow: 0 2px 8px rgba(45, 50, 57, 0.06);
|
|
31
31
|
--candi-shadow-md: 0 4px 20px rgba(45, 50, 57, 0.1);
|
|
32
32
|
--candi-shadow-lg: 0 8px 40px rgba(45, 50, 57, 0.15);
|
|
33
|
-
--candi-shadow-color: oklch(25% 0.
|
|
34
|
-
--candi-focus-ring: oklch(52% 0.06
|
|
33
|
+
--candi-shadow-color: oklch(25% 0.005 80 / 0.15);
|
|
34
|
+
--candi-focus-ring: oklch(52% 0.06 240 / 0.4);
|
|
35
35
|
--candi-syntax-keyword: oklch(60% 0.15 0);
|
|
36
36
|
--candi-syntax-type: oklch(65% 0.12 280);
|
|
37
37
|
--candi-syntax-var: oklch(65% 0.1 200);
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
--candi-syntax-string: oklch(60% 0.12 140);
|
|
41
41
|
--candi-hover: oklch(0% 0 0 / 0.05);
|
|
42
42
|
--candi-active: oklch(0% 0 0 / 0.1);
|
|
43
|
-
--candi-terminal-black: oklch(25% 0.
|
|
43
|
+
--candi-terminal-black: oklch(25% 0.005 80);
|
|
44
44
|
--candi-terminal-red: oklch(58% 0.12 25);
|
|
45
45
|
--candi-terminal-green: oklch(52% 0.08 145);
|
|
46
46
|
--candi-terminal-yellow: oklch(68% 0.13 70);
|
|
@@ -112,79 +112,79 @@
|
|
|
112
112
|
--candi-silver-strong: oklch(65% 0.012 250);
|
|
113
113
|
--candi-silver-outline: oklch(60% 0.009 250);
|
|
114
114
|
--candi-on-silver: oklch(0% 0 0);
|
|
115
|
-
--candi-accent: oklch(
|
|
116
|
-
--candi-accent-subtle: oklch(
|
|
117
|
-
--candi-accent-soft: oklch(
|
|
118
|
-
--candi-accent-warm: oklch(
|
|
119
|
-
--candi-accent-hot: oklch(
|
|
120
|
-
--candi-accent-strong: oklch(
|
|
121
|
-
--candi-accent-outline: oklch(
|
|
115
|
+
--candi-accent: oklch(50% 0.13 245);
|
|
116
|
+
--candi-accent-subtle: oklch(83% 0.078 245);
|
|
117
|
+
--candi-accent-soft: oklch(60% 0.104 245);
|
|
118
|
+
--candi-accent-warm: oklch(65% 0.1105 245);
|
|
119
|
+
--candi-accent-hot: oklch(45% 0.1495 245);
|
|
120
|
+
--candi-accent-strong: oklch(40% 0.143 245);
|
|
121
|
+
--candi-accent-outline: oklch(35% 0.091 245);
|
|
122
122
|
--candi-on-accent: oklch(100% 0 0);
|
|
123
|
-
--candi-secondary: oklch(
|
|
124
|
-
--candi-secondary-subtle: oklch(
|
|
125
|
-
--candi-secondary-soft: oklch(
|
|
126
|
-
--candi-secondary-warm: oklch(
|
|
127
|
-
--candi-secondary-hot: oklch(
|
|
128
|
-
--candi-secondary-strong: oklch(
|
|
129
|
-
--candi-secondary-outline: oklch(
|
|
123
|
+
--candi-secondary: oklch(55% 0.12 20);
|
|
124
|
+
--candi-secondary-subtle: oklch(88% 0.072 20);
|
|
125
|
+
--candi-secondary-soft: oklch(65% 0.096 20);
|
|
126
|
+
--candi-secondary-warm: oklch(70% 0.102 20);
|
|
127
|
+
--candi-secondary-hot: oklch(50% 0.138 20);
|
|
128
|
+
--candi-secondary-strong: oklch(45% 0.132 20);
|
|
129
|
+
--candi-secondary-outline: oklch(40% 0.084 20);
|
|
130
130
|
--candi-on-secondary: oklch(100% 0 0);
|
|
131
|
-
--candi-success: oklch(
|
|
132
|
-
--candi-success-subtle: oklch(
|
|
133
|
-
--candi-success-soft: oklch(
|
|
134
|
-
--candi-success-warm: oklch(
|
|
135
|
-
--candi-success-hot: oklch(
|
|
136
|
-
--candi-success-strong: oklch(
|
|
137
|
-
--candi-success-outline: oklch(
|
|
131
|
+
--candi-success: oklch(50% 0.10 150);
|
|
132
|
+
--candi-success-subtle: oklch(83% 0.06 150);
|
|
133
|
+
--candi-success-soft: oklch(60% 0.08 150);
|
|
134
|
+
--candi-success-warm: oklch(65% 0.085 150);
|
|
135
|
+
--candi-success-hot: oklch(45% 0.115 150);
|
|
136
|
+
--candi-success-strong: oklch(40% 0.11 150);
|
|
137
|
+
--candi-success-outline: oklch(35% 0.07 150);
|
|
138
138
|
--candi-on-success: oklch(100% 0 0);
|
|
139
|
-
--candi-warning: oklch(
|
|
140
|
-
--candi-warning-subtle: oklch(
|
|
141
|
-
--candi-warning-soft: oklch(
|
|
142
|
-
--candi-warning-warm: oklch(
|
|
143
|
-
--candi-warning-hot: oklch(
|
|
144
|
-
--candi-warning-strong: oklch(
|
|
145
|
-
--candi-warning-outline: oklch(
|
|
146
|
-
--candi-on-warning: oklch(
|
|
147
|
-
--candi-error: oklch(
|
|
148
|
-
--candi-error-subtle: oklch(
|
|
149
|
-
--candi-error-soft: oklch(
|
|
150
|
-
--candi-error-warm: oklch(
|
|
151
|
-
--candi-error-hot: oklch(
|
|
152
|
-
--candi-error-strong: oklch(
|
|
153
|
-
--candi-error-outline: oklch(
|
|
139
|
+
--candi-warning: oklch(60% 0.13 80);
|
|
140
|
+
--candi-warning-subtle: oklch(93% 0.078 80);
|
|
141
|
+
--candi-warning-soft: oklch(70% 0.104 80);
|
|
142
|
+
--candi-warning-warm: oklch(75% 0.1105 80);
|
|
143
|
+
--candi-warning-hot: oklch(55% 0.1495 80);
|
|
144
|
+
--candi-warning-strong: oklch(50% 0.143 80);
|
|
145
|
+
--candi-warning-outline: oklch(45% 0.091 80);
|
|
146
|
+
--candi-on-warning: oklch(0% 0 0);
|
|
147
|
+
--candi-error: oklch(50% 0.14 25);
|
|
148
|
+
--candi-error-subtle: oklch(83% 0.084 25);
|
|
149
|
+
--candi-error-soft: oklch(60% 0.112 25);
|
|
150
|
+
--candi-error-warm: oklch(65% 0.119 25);
|
|
151
|
+
--candi-error-hot: oklch(45% 0.161 25);
|
|
152
|
+
--candi-error-strong: oklch(40% 0.154 25);
|
|
153
|
+
--candi-error-outline: oklch(35% 0.098 25);
|
|
154
154
|
--candi-on-error: oklch(100% 0 0);
|
|
155
|
-
--candi-info: oklch(
|
|
156
|
-
--candi-info-subtle: oklch(
|
|
157
|
-
--candi-info-soft: oklch(
|
|
158
|
-
--candi-info-warm: oklch(
|
|
159
|
-
--candi-info-hot: oklch(
|
|
160
|
-
--candi-info-strong: oklch(
|
|
161
|
-
--candi-info-outline: oklch(
|
|
155
|
+
--candi-info: oklch(50% 0.10 225);
|
|
156
|
+
--candi-info-subtle: oklch(83% 0.06 225);
|
|
157
|
+
--candi-info-soft: oklch(60% 0.08 225);
|
|
158
|
+
--candi-info-warm: oklch(65% 0.085 225);
|
|
159
|
+
--candi-info-hot: oklch(45% 0.115 225);
|
|
160
|
+
--candi-info-strong: oklch(40% 0.11 225);
|
|
161
|
+
--candi-info-outline: oklch(35% 0.07 225);
|
|
162
162
|
--candi-on-info: oklch(100% 0 0);
|
|
163
163
|
/* @tokens-end-light */
|
|
164
164
|
}
|
|
165
165
|
|
|
166
166
|
.dark {
|
|
167
167
|
/* @tokens-start-dark */
|
|
168
|
-
--candi-bg: oklch(
|
|
169
|
-
--candi-surface: oklch(
|
|
170
|
-
--candi-elevated: oklch(
|
|
171
|
-
--candi-text: oklch(
|
|
172
|
-
--candi-text-subtle: oklch(70% 0.
|
|
173
|
-
--candi-text-muted: oklch(60% 0.
|
|
174
|
-
--candi-border: oklch(40% 0.
|
|
175
|
-
--candi-border-strong: oklch(45% 0.
|
|
176
|
-
--candi-divider: oklch(35% 0.
|
|
177
|
-
--candi-link: oklch(65% 0.
|
|
178
|
-
--candi-disabled: oklch(45% 0.
|
|
168
|
+
--candi-bg: oklch(20% 0.005 80);
|
|
169
|
+
--candi-surface: oklch(26% 0.005 80);
|
|
170
|
+
--candi-elevated: oklch(32% 0.006 80);
|
|
171
|
+
--candi-text: oklch(90% 0.005 80);
|
|
172
|
+
--candi-text-subtle: oklch(70% 0.005 80);
|
|
173
|
+
--candi-text-muted: oklch(60% 0.004 80);
|
|
174
|
+
--candi-border: oklch(40% 0.005 80);
|
|
175
|
+
--candi-border-strong: oklch(45% 0.006 80);
|
|
176
|
+
--candi-divider: oklch(35% 0.004 80);
|
|
177
|
+
--candi-link: oklch(65% 0.14 240);
|
|
178
|
+
--candi-disabled: oklch(45% 0.004 80);
|
|
179
179
|
--candi-overlay: oklch(0% 0 0 / 0.7);
|
|
180
180
|
--candi-scrim: oklch(0% 0 0 / 0.6);
|
|
181
|
-
--candi-inverse-surface: oklch(92% 0.
|
|
182
|
-
--candi-inverse-text: oklch(
|
|
181
|
+
--candi-inverse-surface: oklch(92% 0.005 80);
|
|
182
|
+
--candi-inverse-text: oklch(20% 0.005 80);
|
|
183
183
|
--candi-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
|
|
184
184
|
--candi-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.35);
|
|
185
185
|
--candi-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.45);
|
|
186
186
|
--candi-shadow-color: oklch(0% 0 0 / 0.4);
|
|
187
|
-
--candi-focus-ring: oklch(62% 0.08
|
|
187
|
+
--candi-focus-ring: oklch(62% 0.08 80 / 0.5);
|
|
188
188
|
--candi-syntax-keyword: oklch(70% 0.15 0);
|
|
189
189
|
--candi-syntax-type: oklch(75% 0.12 280);
|
|
190
190
|
--candi-syntax-var: oklch(75% 0.1 200);
|
|
@@ -193,14 +193,14 @@
|
|
|
193
193
|
--candi-syntax-string: oklch(70% 0.12 140);
|
|
194
194
|
--candi-hover: oklch(100% 0 0 / 0.1);
|
|
195
195
|
--candi-active: oklch(100% 0 0 / 0.2);
|
|
196
|
-
--candi-terminal-black: oklch(15% 0.
|
|
197
|
-
--candi-terminal-red: oklch(
|
|
198
|
-
--candi-terminal-green: oklch(
|
|
199
|
-
--candi-terminal-yellow: oklch(
|
|
200
|
-
--candi-terminal-blue: oklch(65% 0.13
|
|
201
|
-
--candi-terminal-magenta: oklch(
|
|
202
|
-
--candi-terminal-cyan: oklch(
|
|
203
|
-
--candi-terminal-white: oklch(92% 0.
|
|
196
|
+
--candi-terminal-black: oklch(15% 0.005 80);
|
|
197
|
+
--candi-terminal-red: oklch(68% 0.11 25);
|
|
198
|
+
--candi-terminal-green: oklch(68% 0.09 145);
|
|
199
|
+
--candi-terminal-yellow: oklch(78% 0.11 75);
|
|
200
|
+
--candi-terminal-blue: oklch(65% 0.13 245);
|
|
201
|
+
--candi-terminal-magenta: oklch(72% 0.12 330);
|
|
202
|
+
--candi-terminal-cyan: oklch(72% 0.09 200);
|
|
203
|
+
--candi-terminal-white: oklch(92% 0.005 80);
|
|
204
204
|
--candi-red: oklch(70% 0.12 25);
|
|
205
205
|
--candi-red-subtle: oklch(40% 0.10 25);
|
|
206
206
|
--candi-red-soft: oklch(78% 0.11 25);
|
|
@@ -265,53 +265,53 @@
|
|
|
265
265
|
--candi-silver-strong: oklch(50% 0.012 250);
|
|
266
266
|
--candi-silver-outline: oklch(45% 0.009 250);
|
|
267
267
|
--candi-on-silver: oklch(100% 0 0);
|
|
268
|
-
--candi-accent: oklch(
|
|
269
|
-
--candi-accent-subtle: oklch(
|
|
270
|
-
--candi-accent-soft: oklch(
|
|
271
|
-
--candi-accent-warm: oklch(
|
|
272
|
-
--candi-accent-hot: oklch(
|
|
273
|
-
--candi-accent-strong: oklch(
|
|
274
|
-
--candi-accent-outline: oklch(
|
|
268
|
+
--candi-accent: oklch(72% 0.12 245);
|
|
269
|
+
--candi-accent-subtle: oklch(45% 0.072 245);
|
|
270
|
+
--candi-accent-soft: oklch(82% 0.096 245);
|
|
271
|
+
--candi-accent-warm: oklch(57% 0.102 245);
|
|
272
|
+
--candi-accent-hot: oklch(67% 0.138 245);
|
|
273
|
+
--candi-accent-strong: oklch(62% 0.132 245);
|
|
274
|
+
--candi-accent-outline: oklch(57% 0.084 245);
|
|
275
275
|
--candi-on-accent: oklch(0% 0 0);
|
|
276
|
-
--candi-secondary: oklch(75% 0.
|
|
277
|
-
--candi-secondary-subtle: oklch(48% 0.
|
|
278
|
-
--candi-secondary-soft: oklch(85% 0.
|
|
279
|
-
--candi-secondary-warm: oklch(60% 0.
|
|
280
|
-
--candi-secondary-hot: oklch(70% 0.
|
|
281
|
-
--candi-secondary-strong: oklch(65% 0.
|
|
282
|
-
--candi-secondary-outline: oklch(60% 0.
|
|
276
|
+
--candi-secondary: oklch(75% 0.11 20);
|
|
277
|
+
--candi-secondary-subtle: oklch(48% 0.066 20);
|
|
278
|
+
--candi-secondary-soft: oklch(85% 0.088 20);
|
|
279
|
+
--candi-secondary-warm: oklch(60% 0.0935 20);
|
|
280
|
+
--candi-secondary-hot: oklch(70% 0.1265 20);
|
|
281
|
+
--candi-secondary-strong: oklch(65% 0.121 20);
|
|
282
|
+
--candi-secondary-outline: oklch(60% 0.077 20);
|
|
283
283
|
--candi-on-secondary: oklch(0% 0 0);
|
|
284
|
-
--candi-success: oklch(
|
|
285
|
-
--candi-success-subtle: oklch(
|
|
286
|
-
--candi-success-soft: oklch(
|
|
287
|
-
--candi-success-warm: oklch(
|
|
288
|
-
--candi-success-hot: oklch(
|
|
289
|
-
--candi-success-strong: oklch(
|
|
290
|
-
--candi-success-outline: oklch(
|
|
284
|
+
--candi-success: oklch(78% 0.10 150);
|
|
285
|
+
--candi-success-subtle: oklch(51% 0.06 150);
|
|
286
|
+
--candi-success-soft: oklch(88% 0.08 150);
|
|
287
|
+
--candi-success-warm: oklch(63% 0.085 150);
|
|
288
|
+
--candi-success-hot: oklch(73% 0.115 150);
|
|
289
|
+
--candi-success-strong: oklch(68% 0.11 150);
|
|
290
|
+
--candi-success-outline: oklch(63% 0.07 150);
|
|
291
291
|
--candi-on-success: oklch(0% 0 0);
|
|
292
|
-
--candi-warning: oklch(
|
|
293
|
-
--candi-warning-subtle: oklch(
|
|
294
|
-
--candi-warning-soft: oklch(
|
|
295
|
-
--candi-warning-warm: oklch(
|
|
296
|
-
--candi-warning-hot: oklch(
|
|
297
|
-
--candi-warning-strong: oklch(
|
|
298
|
-
--candi-warning-outline: oklch(
|
|
292
|
+
--candi-warning: oklch(82% 0.12 80);
|
|
293
|
+
--candi-warning-subtle: oklch(55% 0.072 80);
|
|
294
|
+
--candi-warning-soft: oklch(92% 0.096 80);
|
|
295
|
+
--candi-warning-warm: oklch(67% 0.102 80);
|
|
296
|
+
--candi-warning-hot: oklch(77% 0.138 80);
|
|
297
|
+
--candi-warning-strong: oklch(72% 0.132 80);
|
|
298
|
+
--candi-warning-outline: oklch(67% 0.084 80);
|
|
299
299
|
--candi-on-warning: oklch(0% 0 0);
|
|
300
|
-
--candi-error: oklch(
|
|
301
|
-
--candi-error-subtle: oklch(
|
|
302
|
-
--candi-error-soft: oklch(
|
|
303
|
-
--candi-error-warm: oklch(
|
|
304
|
-
--candi-error-hot: oklch(
|
|
305
|
-
--candi-error-strong: oklch(
|
|
306
|
-
--candi-error-outline: oklch(
|
|
300
|
+
--candi-error: oklch(78% 0.12 25);
|
|
301
|
+
--candi-error-subtle: oklch(51% 0.072 25);
|
|
302
|
+
--candi-error-soft: oklch(88% 0.096 25);
|
|
303
|
+
--candi-error-warm: oklch(63% 0.102 25);
|
|
304
|
+
--candi-error-hot: oklch(73% 0.138 25);
|
|
305
|
+
--candi-error-strong: oklch(68% 0.132 25);
|
|
306
|
+
--candi-error-outline: oklch(63% 0.084 25);
|
|
307
307
|
--candi-on-error: oklch(0% 0 0);
|
|
308
|
-
--candi-info: oklch(
|
|
309
|
-
--candi-info-subtle: oklch(
|
|
310
|
-
--candi-info-soft: oklch(
|
|
311
|
-
--candi-info-warm: oklch(
|
|
312
|
-
--candi-info-hot: oklch(
|
|
313
|
-
--candi-info-strong: oklch(
|
|
314
|
-
--candi-info-outline: oklch(
|
|
308
|
+
--candi-info: oklch(78% 0.10 225);
|
|
309
|
+
--candi-info-subtle: oklch(51% 0.06 225);
|
|
310
|
+
--candi-info-soft: oklch(88% 0.08 225);
|
|
311
|
+
--candi-info-warm: oklch(63% 0.085 225);
|
|
312
|
+
--candi-info-hot: oklch(73% 0.115 225);
|
|
313
|
+
--candi-info-strong: oklch(68% 0.11 225);
|
|
314
|
+
--candi-info-outline: oklch(63% 0.07 225);
|
|
315
315
|
--candi-on-info: oklch(0% 0 0);
|
|
316
316
|
/* @tokens-end-dark */
|
|
317
317
|
}
|