@quinkit/ui 0.1.0
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.cts +1445 -0
- package/dist/index.d.ts +1445 -0
- package/dist/index.js +2567 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +2366 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +97 -0
- package/src/styles/globals.css +150 -0
- package/src/styles/theme-switcher.tsx +95 -0
- package/src/styles/themes/.gitkeep +0 -0
- package/src/styles/themes/dashboard-data.css +64 -0
- package/src/styles/themes/dashboard-executive.css +64 -0
- package/src/styles/themes/dashboard-glass.css +64 -0
- package/src/styles/themes/dashboard.css +46 -0
- package/src/styles/themes/ecommerce-luxury.css +64 -0
- package/src/styles/themes/ecommerce-minimal.css +64 -0
- package/src/styles/themes/ecommerce-playful.css +64 -0
- package/src/styles/themes/ecommerce.css +36 -0
- package/src/styles/themes/edtech-campus.css +64 -0
- package/src/styles/themes/edtech-kids.css +64 -0
- package/src/styles/themes/edtech-professional.css +64 -0
- package/src/styles/themes/edtech.css +36 -0
- package/src/styles/themes/fintech-crypto.css +64 -0
- package/src/styles/themes/fintech-modern.css +64 -0
- package/src/styles/themes/fintech-wealth.css +64 -0
- package/src/styles/themes/fintech.css +46 -0
- package/src/styles/themes/healthcare-clinical.css +64 -0
- package/src/styles/themes/healthcare-urgent.css +64 -0
- package/src/styles/themes/healthcare-wellness.css +64 -0
- package/src/styles/themes/healthcare.css +46 -0
- package/src/styles/tokens/.gitkeep +0 -0
- package/src/styles/tokens/charts.css +26 -0
- package/src/styles/tokens/dark.css +36 -0
- package/src/styles/tokens/palettes.css +2663 -0
- package/src/styles/tokens/primitives.css +34 -0
- package/src/styles/tokens/semantic.css +35 -0
- package/src/styles/tokens/typography.css +82 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* FILE: packages/ui/src/styles/themes/ecommerce-minimal.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="ecommerce-minimal"] {
|
|
4
|
+
--ui-font-heading: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
|
|
5
|
+
--ui-font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
|
|
6
|
+
--ui-font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
|
|
7
|
+
--ui-tracking-heading: -0.01em;
|
|
8
|
+
--ui-tracking-body: 0em;
|
|
9
|
+
--ui-leading-heading: 1.15;
|
|
10
|
+
--ui-leading-body: 1.6;
|
|
11
|
+
--ui-weight-heading: 600;
|
|
12
|
+
--ui-radius-sm: 0.25rem;
|
|
13
|
+
--ui-radius-md: 0.375rem;
|
|
14
|
+
--ui-radius-lg: 0.5rem;
|
|
15
|
+
--ui-radius-xl: 0.75rem;
|
|
16
|
+
--ui-color-background: oklch(0.996 0 0);
|
|
17
|
+
--ui-color-foreground: oklch(0.16 0 0);
|
|
18
|
+
--ui-color-card: oklch(1 0 0);
|
|
19
|
+
--ui-color-card-foreground: oklch(0.16 0 0);
|
|
20
|
+
--ui-color-popover: oklch(1 0 0);
|
|
21
|
+
--ui-color-popover-foreground: oklch(0.16 0 0);
|
|
22
|
+
--ui-color-primary: oklch(0.3 0 0);
|
|
23
|
+
--ui-color-primary-foreground: oklch(0.985 0 0);
|
|
24
|
+
--ui-color-secondary: oklch(0.962 0 0);
|
|
25
|
+
--ui-color-secondary-foreground: oklch(0.29 0 0);
|
|
26
|
+
--ui-color-accent: oklch(0.95 0.03 90);
|
|
27
|
+
--ui-color-accent-foreground: oklch(0.3 0.07 90);
|
|
28
|
+
--ui-color-muted: oklch(0.968 0 0);
|
|
29
|
+
--ui-color-muted-foreground: oklch(0.5 0 0);
|
|
30
|
+
--ui-color-border: oklch(0.916 0 0);
|
|
31
|
+
--ui-color-input: oklch(0.916 0 0);
|
|
32
|
+
--ui-color-ring: oklch(0.3 0 0);
|
|
33
|
+
--ui-color-chart-1: oklch(0.6 0.15 90);
|
|
34
|
+
--ui-color-chart-2: oklch(0.62 0.15 130);
|
|
35
|
+
--ui-color-chart-3: oklch(0.62 0.15 185);
|
|
36
|
+
--ui-color-chart-4: oklch(0.62 0.15 240);
|
|
37
|
+
--ui-color-chart-5: oklch(0.62 0.15 305);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dark[data-theme="ecommerce-minimal"],
|
|
41
|
+
[data-theme="ecommerce-minimal"].dark {
|
|
42
|
+
--ui-color-background: oklch(0.155 0 0);
|
|
43
|
+
--ui-color-foreground: oklch(0.97 0 0);
|
|
44
|
+
--ui-color-card: oklch(0.19 0 0);
|
|
45
|
+
--ui-color-card-foreground: oklch(0.97 0 0);
|
|
46
|
+
--ui-color-popover: oklch(0.19 0 0);
|
|
47
|
+
--ui-color-popover-foreground: oklch(0.97 0 0);
|
|
48
|
+
--ui-color-primary: oklch(0.68 0 0);
|
|
49
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 90);
|
|
50
|
+
--ui-color-secondary: oklch(0.274 0 0);
|
|
51
|
+
--ui-color-secondary-foreground: oklch(0.972 0 0);
|
|
52
|
+
--ui-color-accent: oklch(0.3 0.05 90);
|
|
53
|
+
--ui-color-accent-foreground: oklch(0.92 0.04 90);
|
|
54
|
+
--ui-color-muted: oklch(0.274 0 0);
|
|
55
|
+
--ui-color-muted-foreground: oklch(0.712 0 0);
|
|
56
|
+
--ui-color-border: oklch(0.305 0 0);
|
|
57
|
+
--ui-color-input: oklch(0.33 0 0);
|
|
58
|
+
--ui-color-ring: oklch(0.68 0 0);
|
|
59
|
+
--ui-color-chart-1: oklch(0.6 0.15 90);
|
|
60
|
+
--ui-color-chart-2: oklch(0.72 0.14 130);
|
|
61
|
+
--ui-color-chart-3: oklch(0.72 0.14 185);
|
|
62
|
+
--ui-color-chart-4: oklch(0.72 0.14 240);
|
|
63
|
+
--ui-color-chart-5: oklch(0.72 0.14 305);
|
|
64
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* FILE: packages/ui/src/styles/themes/ecommerce-playful.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="ecommerce-playful"] {
|
|
4
|
+
--ui-font-heading: "DM Sans", ui-sans-serif, system-ui, sans-serif;
|
|
5
|
+
--ui-font-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
|
|
6
|
+
--ui-font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
|
|
7
|
+
--ui-tracking-heading: -0.01em;
|
|
8
|
+
--ui-tracking-body: 0em;
|
|
9
|
+
--ui-leading-heading: 1.12;
|
|
10
|
+
--ui-leading-body: 1.6;
|
|
11
|
+
--ui-weight-heading: 700;
|
|
12
|
+
--ui-radius-sm: 0.625rem;
|
|
13
|
+
--ui-radius-md: 1rem;
|
|
14
|
+
--ui-radius-lg: 1.25rem;
|
|
15
|
+
--ui-radius-xl: 1.75rem;
|
|
16
|
+
--ui-color-background: oklch(0.988 0.012 40);
|
|
17
|
+
--ui-color-foreground: oklch(0.26 0.02 40);
|
|
18
|
+
--ui-color-card: oklch(1 0 0);
|
|
19
|
+
--ui-color-card-foreground: oklch(0.26 0.02 40);
|
|
20
|
+
--ui-color-popover: oklch(1 0 0);
|
|
21
|
+
--ui-color-popover-foreground: oklch(0.26 0.02 40);
|
|
22
|
+
--ui-color-primary: oklch(0.707 0.187 34);
|
|
23
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 34);
|
|
24
|
+
--ui-color-secondary: oklch(0.962 0.006 40);
|
|
25
|
+
--ui-color-secondary-foreground: oklch(0.29 0.018 40);
|
|
26
|
+
--ui-color-accent: oklch(0.82 0.148 81);
|
|
27
|
+
--ui-color-accent-foreground: oklch(0.2 0.02 81);
|
|
28
|
+
--ui-color-muted: oklch(0.968 0.006 40);
|
|
29
|
+
--ui-color-muted-foreground: oklch(0.5 0.024 40);
|
|
30
|
+
--ui-color-border: oklch(0.916 0.006 40);
|
|
31
|
+
--ui-color-input: oklch(0.916 0.006 40);
|
|
32
|
+
--ui-color-ring: oklch(0.707 0.187 34);
|
|
33
|
+
--ui-color-chart-1: oklch(0.6 0.15 34);
|
|
34
|
+
--ui-color-chart-2: oklch(0.62 0.15 74);
|
|
35
|
+
--ui-color-chart-3: oklch(0.62 0.15 129);
|
|
36
|
+
--ui-color-chart-4: oklch(0.62 0.15 184);
|
|
37
|
+
--ui-color-chart-5: oklch(0.62 0.15 249);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dark[data-theme="ecommerce-playful"],
|
|
41
|
+
[data-theme="ecommerce-playful"].dark {
|
|
42
|
+
--ui-color-background: oklch(0.18 0.014 40);
|
|
43
|
+
--ui-color-foreground: oklch(0.96 0.006 40);
|
|
44
|
+
--ui-color-card: oklch(0.215 0.016 40);
|
|
45
|
+
--ui-color-card-foreground: oklch(0.96 0.006 40);
|
|
46
|
+
--ui-color-popover: oklch(0.215 0.016 40);
|
|
47
|
+
--ui-color-popover-foreground: oklch(0.96 0.006 40);
|
|
48
|
+
--ui-color-primary: oklch(0.707 0.187 34);
|
|
49
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 34);
|
|
50
|
+
--ui-color-secondary: oklch(0.274 0.01 40);
|
|
51
|
+
--ui-color-secondary-foreground: oklch(0.972 0.01 40);
|
|
52
|
+
--ui-color-accent: oklch(0.82 0.148 81);
|
|
53
|
+
--ui-color-accent-foreground: oklch(0.2 0.02 81);
|
|
54
|
+
--ui-color-muted: oklch(0.274 0.01 40);
|
|
55
|
+
--ui-color-muted-foreground: oklch(0.712 0.016 40);
|
|
56
|
+
--ui-color-border: oklch(0.305 0.01 40);
|
|
57
|
+
--ui-color-input: oklch(0.33 0.01 40);
|
|
58
|
+
--ui-color-ring: oklch(0.707 0.187 34);
|
|
59
|
+
--ui-color-chart-1: oklch(0.6 0.15 34);
|
|
60
|
+
--ui-color-chart-2: oklch(0.72 0.14 74);
|
|
61
|
+
--ui-color-chart-3: oklch(0.72 0.14 129);
|
|
62
|
+
--ui-color-chart-4: oklch(0.72 0.14 184);
|
|
63
|
+
--ui-color-chart-5: oklch(0.72 0.14 249);
|
|
64
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* ecommerce.css — Conversion Energy kit theme.
|
|
2
|
+
* Activated with: <html data-theme="ecommerce">
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
[data-theme="ecommerce"] {
|
|
6
|
+
--ui-color-primary: oklch(0.18 0.015 30);
|
|
7
|
+
--ui-color-primary-foreground: oklch(0.99 0 0);
|
|
8
|
+
--ui-color-secondary: oklch(0.965 0.01 65);
|
|
9
|
+
--ui-color-secondary-foreground: oklch(0.25 0.02 45);
|
|
10
|
+
--ui-color-accent: oklch(0.94 0.02 32);
|
|
11
|
+
--ui-color-accent-foreground: oklch(0.6 0.18 32);
|
|
12
|
+
--ui-color-muted: oklch(0.97 0.008 65);
|
|
13
|
+
--ui-color-muted-foreground: oklch(0.5 0.02 45);
|
|
14
|
+
--ui-color-border: oklch(0.9 0.01 45);
|
|
15
|
+
--ui-color-input: oklch(0.9 0.01 45);
|
|
16
|
+
--ui-color-ring: oklch(0.6 0.18 32);
|
|
17
|
+
--ui-radius-sm: 0.5rem;
|
|
18
|
+
--ui-radius-md: 0.625rem;
|
|
19
|
+
--ui-radius-lg: 0.875rem;
|
|
20
|
+
--ui-radius-xl: 1.25rem;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.dark[data-theme="ecommerce"],
|
|
24
|
+
[data-theme="ecommerce"].dark {
|
|
25
|
+
--ui-color-primary: oklch(0.94 0.015 32);
|
|
26
|
+
--ui-color-primary-foreground: oklch(0.16 0.015 32);
|
|
27
|
+
--ui-color-secondary: oklch(0.24 0.015 32);
|
|
28
|
+
--ui-color-secondary-foreground: oklch(0.98 0.01 32);
|
|
29
|
+
--ui-color-accent: oklch(0.28 0.02 32);
|
|
30
|
+
--ui-color-accent-foreground: oklch(0.7 0.16 32);
|
|
31
|
+
--ui-color-muted: oklch(0.24 0.015 32);
|
|
32
|
+
--ui-color-muted-foreground: oklch(0.7 0.02 32);
|
|
33
|
+
--ui-color-border: oklch(0.28 0.015 32);
|
|
34
|
+
--ui-color-input: oklch(0.3 0.015 32);
|
|
35
|
+
--ui-color-ring: oklch(0.7 0.16 32);
|
|
36
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* FILE: packages/ui/src/styles/themes/edtech-campus.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="edtech-campus"] {
|
|
4
|
+
--ui-font-heading: "Source Serif 4", ui-serif, Georgia, serif;
|
|
5
|
+
--ui-font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
|
|
6
|
+
--ui-font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
|
|
7
|
+
--ui-tracking-heading: -0.005em;
|
|
8
|
+
--ui-tracking-body: 0em;
|
|
9
|
+
--ui-leading-heading: 1.2;
|
|
10
|
+
--ui-leading-body: 1.65;
|
|
11
|
+
--ui-weight-heading: 600;
|
|
12
|
+
--ui-radius-sm: 0.25rem;
|
|
13
|
+
--ui-radius-md: 0.375rem;
|
|
14
|
+
--ui-radius-lg: 0.5rem;
|
|
15
|
+
--ui-radius-xl: 0.75rem;
|
|
16
|
+
--ui-color-background: oklch(0.995 0.003 250);
|
|
17
|
+
--ui-color-foreground: oklch(0.22 0.02 250);
|
|
18
|
+
--ui-color-card: oklch(1 0 0);
|
|
19
|
+
--ui-color-card-foreground: oklch(0.22 0.02 250);
|
|
20
|
+
--ui-color-popover: oklch(1 0 0);
|
|
21
|
+
--ui-color-popover-foreground: oklch(0.22 0.02 250);
|
|
22
|
+
--ui-color-primary: oklch(0.468 0.184 263);
|
|
23
|
+
--ui-color-primary-foreground: oklch(0.985 0 0);
|
|
24
|
+
--ui-color-secondary: oklch(0.962 0.006 250);
|
|
25
|
+
--ui-color-secondary-foreground: oklch(0.29 0.018 250);
|
|
26
|
+
--ui-color-accent: oklch(0.95 0.03 263);
|
|
27
|
+
--ui-color-accent-foreground: oklch(0.3 0.07 263);
|
|
28
|
+
--ui-color-muted: oklch(0.968 0.006 250);
|
|
29
|
+
--ui-color-muted-foreground: oklch(0.5 0.024 250);
|
|
30
|
+
--ui-color-border: oklch(0.916 0.006 250);
|
|
31
|
+
--ui-color-input: oklch(0.916 0.006 250);
|
|
32
|
+
--ui-color-ring: oklch(0.468 0.184 263);
|
|
33
|
+
--ui-color-chart-1: oklch(0.6 0.15 263);
|
|
34
|
+
--ui-color-chart-2: oklch(0.62 0.15 303);
|
|
35
|
+
--ui-color-chart-3: oklch(0.62 0.15 358);
|
|
36
|
+
--ui-color-chart-4: oklch(0.62 0.15 53);
|
|
37
|
+
--ui-color-chart-5: oklch(0.62 0.15 118);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dark[data-theme="edtech-campus"],
|
|
41
|
+
[data-theme="edtech-campus"].dark {
|
|
42
|
+
--ui-color-background: oklch(0.17 0.014 250);
|
|
43
|
+
--ui-color-foreground: oklch(0.96 0.006 250);
|
|
44
|
+
--ui-color-card: oklch(0.205 0.016 250);
|
|
45
|
+
--ui-color-card-foreground: oklch(0.96 0.006 250);
|
|
46
|
+
--ui-color-popover: oklch(0.205 0.016 250);
|
|
47
|
+
--ui-color-popover-foreground: oklch(0.96 0.006 250);
|
|
48
|
+
--ui-color-primary: oklch(0.688 0.184 263);
|
|
49
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 263);
|
|
50
|
+
--ui-color-secondary: oklch(0.274 0.01 250);
|
|
51
|
+
--ui-color-secondary-foreground: oklch(0.972 0.01 250);
|
|
52
|
+
--ui-color-accent: oklch(0.3 0.05 263);
|
|
53
|
+
--ui-color-accent-foreground: oklch(0.92 0.04 263);
|
|
54
|
+
--ui-color-muted: oklch(0.274 0.01 250);
|
|
55
|
+
--ui-color-muted-foreground: oklch(0.712 0.016 250);
|
|
56
|
+
--ui-color-border: oklch(0.305 0.01 250);
|
|
57
|
+
--ui-color-input: oklch(0.33 0.01 250);
|
|
58
|
+
--ui-color-ring: oklch(0.688 0.184 263);
|
|
59
|
+
--ui-color-chart-1: oklch(0.6 0.15 263);
|
|
60
|
+
--ui-color-chart-2: oklch(0.72 0.14 303);
|
|
61
|
+
--ui-color-chart-3: oklch(0.72 0.14 358);
|
|
62
|
+
--ui-color-chart-4: oklch(0.72 0.14 53);
|
|
63
|
+
--ui-color-chart-5: oklch(0.72 0.14 118);
|
|
64
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* FILE: packages/ui/src/styles/themes/edtech-kids.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="edtech-kids"] {
|
|
4
|
+
--ui-font-heading: "Nunito", ui-sans-serif, system-ui, sans-serif;
|
|
5
|
+
--ui-font-body: "Nunito", ui-sans-serif, system-ui, sans-serif;
|
|
6
|
+
--ui-font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
|
|
7
|
+
--ui-tracking-heading: -0.01em;
|
|
8
|
+
--ui-tracking-body: 0em;
|
|
9
|
+
--ui-leading-heading: 1.12;
|
|
10
|
+
--ui-leading-body: 1.6;
|
|
11
|
+
--ui-weight-heading: 800;
|
|
12
|
+
--ui-radius-sm: 0.75rem;
|
|
13
|
+
--ui-radius-md: 1.25rem;
|
|
14
|
+
--ui-radius-lg: 1.5rem;
|
|
15
|
+
--ui-radius-xl: 2rem;
|
|
16
|
+
--ui-color-background: oklch(0.992 0.01 250);
|
|
17
|
+
--ui-color-foreground: oklch(0.26 0.02 250);
|
|
18
|
+
--ui-color-card: oklch(1 0 0);
|
|
19
|
+
--ui-color-card-foreground: oklch(0.26 0.02 250);
|
|
20
|
+
--ui-color-popover: oklch(1 0 0);
|
|
21
|
+
--ui-color-popover-foreground: oklch(0.26 0.02 250);
|
|
22
|
+
--ui-color-primary: oklch(0.623 0.188 260);
|
|
23
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 260);
|
|
24
|
+
--ui-color-secondary: oklch(0.962 0.006 250);
|
|
25
|
+
--ui-color-secondary-foreground: oklch(0.29 0.018 250);
|
|
26
|
+
--ui-color-accent: oklch(0.82 0.148 81);
|
|
27
|
+
--ui-color-accent-foreground: oklch(0.2 0.02 81);
|
|
28
|
+
--ui-color-muted: oklch(0.968 0.006 250);
|
|
29
|
+
--ui-color-muted-foreground: oklch(0.5 0.024 250);
|
|
30
|
+
--ui-color-border: oklch(0.916 0.006 250);
|
|
31
|
+
--ui-color-input: oklch(0.916 0.006 250);
|
|
32
|
+
--ui-color-ring: oklch(0.623 0.188 260);
|
|
33
|
+
--ui-color-chart-1: oklch(0.62 0.19 256);
|
|
34
|
+
--ui-color-chart-2: oklch(0.68 0.18 25);
|
|
35
|
+
--ui-color-chart-3: oklch(0.72 0.16 140);
|
|
36
|
+
--ui-color-chart-4: oklch(0.75 0.15 75);
|
|
37
|
+
--ui-color-chart-5: oklch(0.6 0.2 300);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dark[data-theme="edtech-kids"],
|
|
41
|
+
[data-theme="edtech-kids"].dark {
|
|
42
|
+
--ui-color-background: oklch(0.18 0.016 250);
|
|
43
|
+
--ui-color-foreground: oklch(0.96 0.008 250);
|
|
44
|
+
--ui-color-card: oklch(0.215 0.018 250);
|
|
45
|
+
--ui-color-card-foreground: oklch(0.96 0.008 250);
|
|
46
|
+
--ui-color-popover: oklch(0.215 0.018 250);
|
|
47
|
+
--ui-color-popover-foreground: oklch(0.96 0.008 250);
|
|
48
|
+
--ui-color-primary: oklch(0.68 0.188 260);
|
|
49
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 260);
|
|
50
|
+
--ui-color-secondary: oklch(0.274 0.01 250);
|
|
51
|
+
--ui-color-secondary-foreground: oklch(0.972 0.01 250);
|
|
52
|
+
--ui-color-accent: oklch(0.82 0.148 81);
|
|
53
|
+
--ui-color-accent-foreground: oklch(0.2 0.02 81);
|
|
54
|
+
--ui-color-muted: oklch(0.274 0.01 250);
|
|
55
|
+
--ui-color-muted-foreground: oklch(0.712 0.016 250);
|
|
56
|
+
--ui-color-border: oklch(0.305 0.01 250);
|
|
57
|
+
--ui-color-input: oklch(0.33 0.01 250);
|
|
58
|
+
--ui-color-ring: oklch(0.68 0.188 260);
|
|
59
|
+
--ui-color-chart-1: oklch(0.7 0.17 256);
|
|
60
|
+
--ui-color-chart-2: oklch(0.72 0.17 25);
|
|
61
|
+
--ui-color-chart-3: oklch(0.76 0.15 140);
|
|
62
|
+
--ui-color-chart-4: oklch(0.82 0.14 75);
|
|
63
|
+
--ui-color-chart-5: oklch(0.7 0.18 300);
|
|
64
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* FILE: packages/ui/src/styles/themes/edtech-professional.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="edtech-professional"] {
|
|
4
|
+
--ui-font-heading: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
|
|
5
|
+
--ui-font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
|
|
6
|
+
--ui-font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
|
|
7
|
+
--ui-tracking-heading: -0.015em;
|
|
8
|
+
--ui-tracking-body: 0em;
|
|
9
|
+
--ui-leading-heading: 1.15;
|
|
10
|
+
--ui-leading-body: 1.6;
|
|
11
|
+
--ui-weight-heading: 600;
|
|
12
|
+
--ui-radius-sm: 0rem;
|
|
13
|
+
--ui-radius-md: 0rem;
|
|
14
|
+
--ui-radius-lg: 0.125rem;
|
|
15
|
+
--ui-radius-xl: 0.25rem;
|
|
16
|
+
--ui-color-background: oklch(0.995 0.002 250);
|
|
17
|
+
--ui-color-foreground: oklch(0.2 0.01 250);
|
|
18
|
+
--ui-color-card: oklch(1 0 0);
|
|
19
|
+
--ui-color-card-foreground: oklch(0.2 0.01 250);
|
|
20
|
+
--ui-color-popover: oklch(1 0 0);
|
|
21
|
+
--ui-color-popover-foreground: oklch(0.2 0.01 250);
|
|
22
|
+
--ui-color-primary: oklch(0.546 0.215 263);
|
|
23
|
+
--ui-color-primary-foreground: oklch(0.985 0 0);
|
|
24
|
+
--ui-color-secondary: oklch(0.962 0.006 250);
|
|
25
|
+
--ui-color-secondary-foreground: oklch(0.29 0.018 250);
|
|
26
|
+
--ui-color-accent: oklch(0.95 0.03 263);
|
|
27
|
+
--ui-color-accent-foreground: oklch(0.3 0.07 263);
|
|
28
|
+
--ui-color-muted: oklch(0.968 0.006 250);
|
|
29
|
+
--ui-color-muted-foreground: oklch(0.5 0.024 250);
|
|
30
|
+
--ui-color-border: oklch(0.916 0.006 250);
|
|
31
|
+
--ui-color-input: oklch(0.916 0.006 250);
|
|
32
|
+
--ui-color-ring: oklch(0.546 0.215 263);
|
|
33
|
+
--ui-color-chart-1: oklch(0.6 0.15 263);
|
|
34
|
+
--ui-color-chart-2: oklch(0.62 0.15 303);
|
|
35
|
+
--ui-color-chart-3: oklch(0.62 0.15 358);
|
|
36
|
+
--ui-color-chart-4: oklch(0.62 0.15 53);
|
|
37
|
+
--ui-color-chart-5: oklch(0.62 0.15 118);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dark[data-theme="edtech-professional"],
|
|
41
|
+
[data-theme="edtech-professional"].dark {
|
|
42
|
+
--ui-color-background: oklch(0.155 0.01 250);
|
|
43
|
+
--ui-color-foreground: oklch(0.96 0.005 250);
|
|
44
|
+
--ui-color-card: oklch(0.19 0.012 250);
|
|
45
|
+
--ui-color-card-foreground: oklch(0.96 0.005 250);
|
|
46
|
+
--ui-color-popover: oklch(0.19 0.012 250);
|
|
47
|
+
--ui-color-popover-foreground: oklch(0.96 0.005 250);
|
|
48
|
+
--ui-color-primary: oklch(0.766 0.2 263);
|
|
49
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 263);
|
|
50
|
+
--ui-color-secondary: oklch(0.274 0.01 250);
|
|
51
|
+
--ui-color-secondary-foreground: oklch(0.972 0.01 250);
|
|
52
|
+
--ui-color-accent: oklch(0.3 0.05 263);
|
|
53
|
+
--ui-color-accent-foreground: oklch(0.92 0.04 263);
|
|
54
|
+
--ui-color-muted: oklch(0.274 0.01 250);
|
|
55
|
+
--ui-color-muted-foreground: oklch(0.712 0.016 250);
|
|
56
|
+
--ui-color-border: oklch(0.305 0.01 250);
|
|
57
|
+
--ui-color-input: oklch(0.33 0.01 250);
|
|
58
|
+
--ui-color-ring: oklch(0.766 0.2 263);
|
|
59
|
+
--ui-color-chart-1: oklch(0.6 0.15 263);
|
|
60
|
+
--ui-color-chart-2: oklch(0.72 0.14 303);
|
|
61
|
+
--ui-color-chart-3: oklch(0.72 0.14 358);
|
|
62
|
+
--ui-color-chart-4: oklch(0.72 0.14 53);
|
|
63
|
+
--ui-color-chart-5: oklch(0.72 0.14 118);
|
|
64
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
/* edtech.css — Playful Progress kit theme.
|
|
2
|
+
* Activated with: <html data-theme="edtech">
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
[data-theme="edtech"] {
|
|
6
|
+
--ui-color-primary: oklch(0.42 0.16 285);
|
|
7
|
+
--ui-color-primary-foreground: oklch(0.99 0 0);
|
|
8
|
+
--ui-color-secondary: oklch(0.965 0.008 285);
|
|
9
|
+
--ui-color-secondary-foreground: oklch(0.26 0.04 285);
|
|
10
|
+
--ui-color-accent: oklch(0.94 0.02 285);
|
|
11
|
+
--ui-color-accent-foreground: oklch(0.76 0.15 75);
|
|
12
|
+
--ui-color-muted: oklch(0.97 0.008 285);
|
|
13
|
+
--ui-color-muted-foreground: oklch(0.53 0.03 285);
|
|
14
|
+
--ui-color-border: oklch(0.91 0.01 285);
|
|
15
|
+
--ui-color-input: oklch(0.91 0.01 285);
|
|
16
|
+
--ui-color-ring: oklch(0.76 0.15 75);
|
|
17
|
+
--ui-radius-sm: 0.75rem;
|
|
18
|
+
--ui-radius-md: 0.875rem;
|
|
19
|
+
--ui-radius-lg: 1.25rem;
|
|
20
|
+
--ui-radius-xl: 1.75rem;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.dark[data-theme="edtech"],
|
|
24
|
+
[data-theme="edtech"].dark {
|
|
25
|
+
--ui-color-primary: oklch(0.82 0.1 285);
|
|
26
|
+
--ui-color-primary-foreground: oklch(0.18 0.04 285);
|
|
27
|
+
--ui-color-secondary: oklch(0.24 0.015 285);
|
|
28
|
+
--ui-color-secondary-foreground: oklch(0.98 0.01 285);
|
|
29
|
+
--ui-color-accent: oklch(0.28 0.02 285);
|
|
30
|
+
--ui-color-accent-foreground: oklch(0.8 0.15 75);
|
|
31
|
+
--ui-color-muted: oklch(0.24 0.015 285);
|
|
32
|
+
--ui-color-muted-foreground: oklch(0.7 0.02 285);
|
|
33
|
+
--ui-color-border: oklch(0.28 0.015 285);
|
|
34
|
+
--ui-color-input: oklch(0.3 0.015 285);
|
|
35
|
+
--ui-color-ring: oklch(0.8 0.15 75);
|
|
36
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* FILE: packages/ui/src/styles/themes/fintech-crypto.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="fintech-crypto"] {
|
|
4
|
+
--ui-font-heading: "Geist", ui-sans-serif, system-ui, sans-serif;
|
|
5
|
+
--ui-font-body: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
|
|
6
|
+
--ui-font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
|
|
7
|
+
--ui-tracking-heading: -0.015em;
|
|
8
|
+
--ui-tracking-body: 0em;
|
|
9
|
+
--ui-leading-heading: 1.15;
|
|
10
|
+
--ui-leading-body: 1.55;
|
|
11
|
+
--ui-weight-heading: 600;
|
|
12
|
+
--ui-radius-sm: 0.375rem;
|
|
13
|
+
--ui-radius-md: 0.5rem;
|
|
14
|
+
--ui-radius-lg: 0.75rem;
|
|
15
|
+
--ui-radius-xl: 1rem;
|
|
16
|
+
--ui-color-background: oklch(0.985 0.01 292);
|
|
17
|
+
--ui-color-foreground: oklch(0.22 0.02 292);
|
|
18
|
+
--ui-color-card: oklch(1 0 0);
|
|
19
|
+
--ui-color-card-foreground: oklch(0.22 0.02 292);
|
|
20
|
+
--ui-color-popover: oklch(1 0 0);
|
|
21
|
+
--ui-color-popover-foreground: oklch(0.22 0.02 292);
|
|
22
|
+
--ui-color-primary: oklch(0.541 0.24 293);
|
|
23
|
+
--ui-color-primary-foreground: oklch(0.985 0 0);
|
|
24
|
+
--ui-color-secondary: oklch(0.962 0.006 292);
|
|
25
|
+
--ui-color-secondary-foreground: oklch(0.29 0.018 292);
|
|
26
|
+
--ui-color-accent: oklch(0.797 0.134 212);
|
|
27
|
+
--ui-color-accent-foreground: oklch(0.2 0.02 212);
|
|
28
|
+
--ui-color-muted: oklch(0.968 0.006 292);
|
|
29
|
+
--ui-color-muted-foreground: oklch(0.5 0.024 292);
|
|
30
|
+
--ui-color-border: oklch(0.916 0.006 292);
|
|
31
|
+
--ui-color-input: oklch(0.916 0.006 292);
|
|
32
|
+
--ui-color-ring: oklch(0.541 0.24 293);
|
|
33
|
+
--ui-color-chart-1: oklch(0.6 0.15 293);
|
|
34
|
+
--ui-color-chart-2: oklch(0.62 0.15 333);
|
|
35
|
+
--ui-color-chart-3: oklch(0.62 0.15 28);
|
|
36
|
+
--ui-color-chart-4: oklch(0.62 0.15 83);
|
|
37
|
+
--ui-color-chart-5: oklch(0.62 0.15 148);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dark[data-theme="fintech-crypto"],
|
|
41
|
+
[data-theme="fintech-crypto"].dark {
|
|
42
|
+
--ui-color-background: oklch(0.15 0.018 292);
|
|
43
|
+
--ui-color-foreground: oklch(0.96 0.008 292);
|
|
44
|
+
--ui-color-card: oklch(0.185 0.02 292);
|
|
45
|
+
--ui-color-card-foreground: oklch(0.96 0.008 292);
|
|
46
|
+
--ui-color-popover: oklch(0.185 0.02 292);
|
|
47
|
+
--ui-color-popover-foreground: oklch(0.96 0.008 292);
|
|
48
|
+
--ui-color-primary: oklch(0.761 0.2 293);
|
|
49
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 293);
|
|
50
|
+
--ui-color-secondary: oklch(0.274 0.01 292);
|
|
51
|
+
--ui-color-secondary-foreground: oklch(0.972 0.01 292);
|
|
52
|
+
--ui-color-accent: oklch(0.797 0.134 212);
|
|
53
|
+
--ui-color-accent-foreground: oklch(0.2 0.02 212);
|
|
54
|
+
--ui-color-muted: oklch(0.274 0.01 292);
|
|
55
|
+
--ui-color-muted-foreground: oklch(0.712 0.016 292);
|
|
56
|
+
--ui-color-border: oklch(0.305 0.01 292);
|
|
57
|
+
--ui-color-input: oklch(0.33 0.01 292);
|
|
58
|
+
--ui-color-ring: oklch(0.761 0.2 293);
|
|
59
|
+
--ui-color-chart-1: oklch(0.6 0.15 293);
|
|
60
|
+
--ui-color-chart-2: oklch(0.72 0.14 333);
|
|
61
|
+
--ui-color-chart-3: oklch(0.72 0.14 28);
|
|
62
|
+
--ui-color-chart-4: oklch(0.72 0.14 83);
|
|
63
|
+
--ui-color-chart-5: oklch(0.72 0.14 148);
|
|
64
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* FILE: packages/ui/src/styles/themes/fintech-modern.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="fintech-modern"] {
|
|
4
|
+
--ui-font-heading: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
|
|
5
|
+
--ui-font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
|
|
6
|
+
--ui-font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
|
|
7
|
+
--ui-tracking-heading: -0.01em;
|
|
8
|
+
--ui-tracking-body: 0em;
|
|
9
|
+
--ui-leading-heading: 1.15;
|
|
10
|
+
--ui-leading-body: 1.6;
|
|
11
|
+
--ui-weight-heading: 600;
|
|
12
|
+
--ui-radius-sm: 0.375rem;
|
|
13
|
+
--ui-radius-md: 0.625rem;
|
|
14
|
+
--ui-radius-lg: 0.875rem;
|
|
15
|
+
--ui-radius-xl: 1.25rem;
|
|
16
|
+
--ui-color-background: oklch(0.995 0.003 250);
|
|
17
|
+
--ui-color-foreground: oklch(0.2 0.02 250);
|
|
18
|
+
--ui-color-card: oklch(1 0 0);
|
|
19
|
+
--ui-color-card-foreground: oklch(0.2 0.02 250);
|
|
20
|
+
--ui-color-popover: oklch(1 0 0);
|
|
21
|
+
--ui-color-popover-foreground: oklch(0.2 0.02 250);
|
|
22
|
+
--ui-color-primary: oklch(0.554 0.202 262);
|
|
23
|
+
--ui-color-primary-foreground: oklch(0.985 0 0);
|
|
24
|
+
--ui-color-secondary: oklch(0.962 0.006 250);
|
|
25
|
+
--ui-color-secondary-foreground: oklch(0.29 0.018 250);
|
|
26
|
+
--ui-color-accent: oklch(0.95 0.03 262);
|
|
27
|
+
--ui-color-accent-foreground: oklch(0.3 0.07 262);
|
|
28
|
+
--ui-color-muted: oklch(0.968 0.006 250);
|
|
29
|
+
--ui-color-muted-foreground: oklch(0.5 0.024 250);
|
|
30
|
+
--ui-color-border: oklch(0.916 0.006 250);
|
|
31
|
+
--ui-color-input: oklch(0.916 0.006 250);
|
|
32
|
+
--ui-color-ring: oklch(0.554 0.202 262);
|
|
33
|
+
--ui-color-chart-1: oklch(0.6 0.15 262);
|
|
34
|
+
--ui-color-chart-2: oklch(0.62 0.15 302);
|
|
35
|
+
--ui-color-chart-3: oklch(0.62 0.15 357);
|
|
36
|
+
--ui-color-chart-4: oklch(0.62 0.15 52);
|
|
37
|
+
--ui-color-chart-5: oklch(0.62 0.15 117);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dark[data-theme="fintech-modern"],
|
|
41
|
+
[data-theme="fintech-modern"].dark {
|
|
42
|
+
--ui-color-background: oklch(0.17 0.016 250);
|
|
43
|
+
--ui-color-foreground: oklch(0.96 0.006 250);
|
|
44
|
+
--ui-color-card: oklch(0.205 0.018 250);
|
|
45
|
+
--ui-color-card-foreground: oklch(0.96 0.006 250);
|
|
46
|
+
--ui-color-popover: oklch(0.205 0.018 250);
|
|
47
|
+
--ui-color-popover-foreground: oklch(0.96 0.006 250);
|
|
48
|
+
--ui-color-primary: oklch(0.794 0.2 262);
|
|
49
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 262);
|
|
50
|
+
--ui-color-secondary: oklch(0.274 0.01 250);
|
|
51
|
+
--ui-color-secondary-foreground: oklch(0.972 0.01 250);
|
|
52
|
+
--ui-color-accent: oklch(0.3 0.05 262);
|
|
53
|
+
--ui-color-accent-foreground: oklch(0.92 0.04 262);
|
|
54
|
+
--ui-color-muted: oklch(0.274 0.01 250);
|
|
55
|
+
--ui-color-muted-foreground: oklch(0.712 0.016 250);
|
|
56
|
+
--ui-color-border: oklch(0.305 0.01 250);
|
|
57
|
+
--ui-color-input: oklch(0.33 0.01 250);
|
|
58
|
+
--ui-color-ring: oklch(0.794 0.2 262);
|
|
59
|
+
--ui-color-chart-1: oklch(0.6 0.15 262);
|
|
60
|
+
--ui-color-chart-2: oklch(0.72 0.14 302);
|
|
61
|
+
--ui-color-chart-3: oklch(0.72 0.14 357);
|
|
62
|
+
--ui-color-chart-4: oklch(0.72 0.14 52);
|
|
63
|
+
--ui-color-chart-5: oklch(0.72 0.14 117);
|
|
64
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
/* FILE: packages/ui/src/styles/themes/fintech-wealth.css */
|
|
2
|
+
|
|
3
|
+
[data-theme="fintech-wealth"] {
|
|
4
|
+
--ui-font-heading: "Playfair Display", ui-serif, Georgia, serif;
|
|
5
|
+
--ui-font-body: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
|
|
6
|
+
--ui-font-mono: "Geist Mono", ui-monospace, "JetBrains Mono", monospace;
|
|
7
|
+
--ui-tracking-heading: -0.01em;
|
|
8
|
+
--ui-tracking-body: 0em;
|
|
9
|
+
--ui-leading-heading: 1.1;
|
|
10
|
+
--ui-leading-body: 1.6;
|
|
11
|
+
--ui-weight-heading: 600;
|
|
12
|
+
--ui-radius-sm: 0rem;
|
|
13
|
+
--ui-radius-md: 0rem;
|
|
14
|
+
--ui-radius-lg: 0.125rem;
|
|
15
|
+
--ui-radius-xl: 0.25rem;
|
|
16
|
+
--ui-color-background: oklch(0.992 0.004 155);
|
|
17
|
+
--ui-color-foreground: oklch(0.22 0.02 155);
|
|
18
|
+
--ui-color-card: oklch(1 0 0);
|
|
19
|
+
--ui-color-card-foreground: oklch(0.22 0.02 155);
|
|
20
|
+
--ui-color-popover: oklch(1 0 0);
|
|
21
|
+
--ui-color-popover-foreground: oklch(0.22 0.02 155);
|
|
22
|
+
--ui-color-primary: oklch(0.431 0.085 159);
|
|
23
|
+
--ui-color-primary-foreground: oklch(0.985 0 0);
|
|
24
|
+
--ui-color-secondary: oklch(0.962 0.006 155);
|
|
25
|
+
--ui-color-secondary-foreground: oklch(0.29 0.018 155);
|
|
26
|
+
--ui-color-accent: oklch(0.728 0.099 82);
|
|
27
|
+
--ui-color-accent-foreground: oklch(0.2 0.02 82);
|
|
28
|
+
--ui-color-muted: oklch(0.968 0.006 155);
|
|
29
|
+
--ui-color-muted-foreground: oklch(0.5 0.024 155);
|
|
30
|
+
--ui-color-border: oklch(0.916 0.006 155);
|
|
31
|
+
--ui-color-input: oklch(0.916 0.006 155);
|
|
32
|
+
--ui-color-ring: oklch(0.431 0.085 159);
|
|
33
|
+
--ui-color-chart-1: oklch(0.6 0.15 159);
|
|
34
|
+
--ui-color-chart-2: oklch(0.62 0.15 199);
|
|
35
|
+
--ui-color-chart-3: oklch(0.62 0.15 254);
|
|
36
|
+
--ui-color-chart-4: oklch(0.62 0.15 309);
|
|
37
|
+
--ui-color-chart-5: oklch(0.62 0.15 14);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.dark[data-theme="fintech-wealth"],
|
|
41
|
+
[data-theme="fintech-wealth"].dark {
|
|
42
|
+
--ui-color-background: oklch(0.15 0.012 155);
|
|
43
|
+
--ui-color-foreground: oklch(0.96 0.006 155);
|
|
44
|
+
--ui-color-card: oklch(0.185 0.014 155);
|
|
45
|
+
--ui-color-card-foreground: oklch(0.96 0.006 155);
|
|
46
|
+
--ui-color-popover: oklch(0.185 0.014 155);
|
|
47
|
+
--ui-color-popover-foreground: oklch(0.96 0.006 155);
|
|
48
|
+
--ui-color-primary: oklch(0.68 0.085 159);
|
|
49
|
+
--ui-color-primary-foreground: oklch(0.2 0.02 159);
|
|
50
|
+
--ui-color-secondary: oklch(0.274 0.01 155);
|
|
51
|
+
--ui-color-secondary-foreground: oklch(0.972 0.01 155);
|
|
52
|
+
--ui-color-accent: oklch(0.728 0.099 82);
|
|
53
|
+
--ui-color-accent-foreground: oklch(0.2 0.02 82);
|
|
54
|
+
--ui-color-muted: oklch(0.274 0.01 155);
|
|
55
|
+
--ui-color-muted-foreground: oklch(0.712 0.016 155);
|
|
56
|
+
--ui-color-border: oklch(0.305 0.01 155);
|
|
57
|
+
--ui-color-input: oklch(0.33 0.01 155);
|
|
58
|
+
--ui-color-ring: oklch(0.68 0.085 159);
|
|
59
|
+
--ui-color-chart-1: oklch(0.6 0.15 159);
|
|
60
|
+
--ui-color-chart-2: oklch(0.72 0.14 199);
|
|
61
|
+
--ui-color-chart-3: oklch(0.72 0.14 254);
|
|
62
|
+
--ui-color-chart-4: oklch(0.72 0.14 309);
|
|
63
|
+
--ui-color-chart-5: oklch(0.72 0.14 14);
|
|
64
|
+
}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* fintech.css — Wealth Authority kit theme.
|
|
2
|
+
* Activated with: <html data-theme="fintech">
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
[data-theme="fintech"] {
|
|
6
|
+
--ui-color-primary: oklch(0.25 0.04 140);
|
|
7
|
+
--ui-color-primary-foreground: oklch(0.99 0 0);
|
|
8
|
+
--ui-color-secondary: oklch(0.96 0.008 140);
|
|
9
|
+
--ui-color-secondary-foreground: oklch(0.25 0.02 140);
|
|
10
|
+
--ui-color-accent: oklch(0.94 0.015 140);
|
|
11
|
+
--ui-color-accent-foreground: oklch(0.72 0.12 85);
|
|
12
|
+
--ui-color-muted: oklch(0.965 0.008 140);
|
|
13
|
+
--ui-color-muted-foreground: oklch(0.52 0.02 140);
|
|
14
|
+
--ui-color-border: oklch(0.9 0.01 140);
|
|
15
|
+
--ui-color-input: oklch(0.9 0.01 140);
|
|
16
|
+
--ui-color-ring: oklch(0.72 0.12 85);
|
|
17
|
+
--ui-color-chart-1: oklch(0.72 0.12 85);
|
|
18
|
+
--ui-color-chart-2: oklch(0.4 0.08 250);
|
|
19
|
+
--ui-color-chart-3: oklch(0.62 0.12 155);
|
|
20
|
+
--ui-color-chart-4: oklch(0.6 0.13 205);
|
|
21
|
+
--ui-color-chart-5: oklch(0.58 0.15 25);
|
|
22
|
+
--ui-radius-sm: 0.375rem;
|
|
23
|
+
--ui-radius-md: 0.5rem;
|
|
24
|
+
--ui-radius-lg: 0.75rem;
|
|
25
|
+
--ui-radius-xl: 1rem;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.dark[data-theme="fintech"],
|
|
29
|
+
[data-theme="fintech"].dark {
|
|
30
|
+
--ui-color-primary: oklch(0.88 0.03 140);
|
|
31
|
+
--ui-color-primary-foreground: oklch(0.16 0.02 140);
|
|
32
|
+
--ui-color-secondary: oklch(0.24 0.015 140);
|
|
33
|
+
--ui-color-secondary-foreground: oklch(0.98 0.01 140);
|
|
34
|
+
--ui-color-accent: oklch(0.28 0.02 140);
|
|
35
|
+
--ui-color-accent-foreground: oklch(0.78 0.11 85);
|
|
36
|
+
--ui-color-muted: oklch(0.24 0.015 140);
|
|
37
|
+
--ui-color-muted-foreground: oklch(0.7 0.02 140);
|
|
38
|
+
--ui-color-border: oklch(0.28 0.015 140);
|
|
39
|
+
--ui-color-input: oklch(0.3 0.015 140);
|
|
40
|
+
--ui-color-ring: oklch(0.78 0.11 85);
|
|
41
|
+
--ui-color-chart-1: oklch(0.78 0.11 85);
|
|
42
|
+
--ui-color-chart-2: oklch(0.72 0.1 250);
|
|
43
|
+
--ui-color-chart-3: oklch(0.72 0.12 155);
|
|
44
|
+
--ui-color-chart-4: oklch(0.7 0.12 205);
|
|
45
|
+
--ui-color-chart-5: oklch(0.68 0.15 25);
|
|
46
|
+
}
|