@pelatform/ui 2.0.0 → 2.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.
Files changed (43) hide show
  1. package/README.md +360 -5
  2. package/dist/animation.d.ts +6 -4
  3. package/dist/animation.js +3 -1
  4. package/dist/base.d.ts +1 -1
  5. package/dist/base.js +3 -1
  6. package/dist/components.d.ts +1 -2987
  7. package/dist/components.js +2 -2318
  8. package/dist/css/color/gray.css +105 -0
  9. package/dist/css/color/neutral.css +105 -0
  10. package/dist/css/color/slate.css +105 -0
  11. package/dist/css/color/stone.css +105 -0
  12. package/dist/css/color/zinc.css +105 -0
  13. package/dist/css/styles/style-lyra.css +1335 -0
  14. package/dist/css/styles/style-maia.css +1360 -0
  15. package/dist/css/styles/style-mira.css +1362 -0
  16. package/dist/css/styles/style-nova.css +1360 -0
  17. package/dist/css/styles/style-vega.css +1356 -0
  18. package/dist/hooks.d.ts +1 -93
  19. package/dist/hooks.js +2 -7
  20. package/dist/index.d.ts +1 -68
  21. package/dist/index.js +2 -7
  22. package/dist/radix.d.ts +1 -0
  23. package/dist/radix.js +4 -0
  24. package/dist/style.css +2 -0
  25. package/package.json +74 -48
  26. package/LICENSE +0 -21
  27. package/css/components/apexcharts.css +0 -101
  28. package/css/components/book.css +0 -19
  29. package/css/components/extra.css +0 -12
  30. package/css/components/image-input.css +0 -51
  31. package/css/components/leaflet.css +0 -25
  32. package/css/components/patterns.css +0 -34
  33. package/css/components/rating.css +0 -89
  34. package/css/components/scrollable.css +0 -118
  35. package/css/components/theme-transition.css +0 -51
  36. package/css/source.css +0 -20
  37. package/css/theme.css +0 -237
  38. package/dist/aria.d.ts +0 -1
  39. package/dist/aria.js +0 -2
  40. package/dist/chunk-UEVIEY7W.js +0 -51
  41. package/dist/chunk-VZEE3GOC.js +0 -458
  42. package/dist/default.d.ts +0 -1
  43. package/dist/default.js +0 -2
@@ -0,0 +1,105 @@
1
+ :root {
2
+ --radius: 0.625rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.13 0.028 261.692);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.13 0.028 261.692);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.13 0.028 261.692);
9
+ --primary: oklch(0.21 0.034 264.665);
10
+ --primary-foreground: oklch(0.985 0.002 247.839);
11
+ --secondary: oklch(0.967 0.003 264.542);
12
+ --secondary-foreground: oklch(0.21 0.034 264.665);
13
+ --muted: oklch(0.967 0.003 264.542);
14
+ --muted-foreground: oklch(0.551 0.027 264.364);
15
+ --accent: oklch(0.967 0.003 264.542);
16
+ --accent-foreground: oklch(0.21 0.034 264.665);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --destructive-foreground: oklch(0.985 0 0);
19
+ --border: oklch(0.928 0.006 264.531);
20
+ --input: oklch(0.928 0.006 264.531);
21
+ --ring: oklch(0.707 0.022 261.325);
22
+ --chart-1: oklch(0.646 0.222 41.116);
23
+ --chart-2: oklch(0.6 0.118 184.704);
24
+ --chart-3: oklch(0.398 0.07 227.392);
25
+ --chart-4: oklch(0.828 0.189 84.429);
26
+ --chart-5: oklch(0.769 0.188 70.08);
27
+ --sidebar: oklch(0.985 0.002 247.839);
28
+ --sidebar-foreground: oklch(0.13 0.028 261.692);
29
+ --sidebar-primary: oklch(0.21 0.034 264.665);
30
+ --sidebar-primary-foreground: oklch(0.985 0.002 247.839);
31
+ --sidebar-accent: oklch(0.967 0.003 264.542);
32
+ --sidebar-accent-foreground: oklch(0.21 0.034 264.665);
33
+ --sidebar-border: oklch(0.928 0.006 264.531);
34
+ --sidebar-ring: oklch(0.707 0.022 261.325);
35
+ }
36
+
37
+ .dark {
38
+ --background: oklch(0.13 0.028 261.692);
39
+ --foreground: oklch(0.985 0.002 247.839);
40
+ --card: oklch(0.21 0.034 264.665);
41
+ --card-foreground: oklch(0.985 0.002 247.839);
42
+ --popover: oklch(0.21 0.034 264.665);
43
+ --popover-foreground: oklch(0.985 0.002 247.839);
44
+ --primary: oklch(0.928 0.006 264.531);
45
+ --primary-foreground: oklch(0.21 0.034 264.665);
46
+ --secondary: oklch(0.278 0.033 256.848);
47
+ --secondary-foreground: oklch(0.985 0.002 247.839);
48
+ --muted: oklch(0.278 0.033 256.848);
49
+ --muted-foreground: oklch(0.707 0.022 261.325);
50
+ --accent: oklch(0.278 0.033 256.848);
51
+ --accent-foreground: oklch(0.985 0.002 247.839);
52
+ --destructive: oklch(0.704 0.191 22.216);
53
+ --destructive-foreground: oklch(0.985 0 0);
54
+ --border: oklch(1 0 0 / 10%);
55
+ --input: oklch(1 0 0 / 15%);
56
+ --ring: oklch(0.551 0.027 264.364);
57
+ --chart-1: oklch(0.488 0.243 264.376);
58
+ --chart-2: oklch(0.696 0.17 162.48);
59
+ --chart-3: oklch(0.769 0.188 70.08);
60
+ --chart-4: oklch(0.627 0.265 303.9);
61
+ --chart-5: oklch(0.645 0.246 16.439);
62
+ --sidebar: oklch(0.21 0.034 264.665);
63
+ --sidebar-foreground: oklch(0.985 0.002 247.839);
64
+ --sidebar-primary: oklch(0.488 0.243 264.376);
65
+ --sidebar-primary-foreground: oklch(0.985 0.002 247.839);
66
+ --sidebar-accent: oklch(0.278 0.033 256.848);
67
+ --sidebar-accent-foreground: oklch(0.985 0.002 247.839);
68
+ --sidebar-border: oklch(1 0 0 / 10%);
69
+ --sidebar-ring: oklch(0.551 0.027 264.364);
70
+ }
71
+
72
+ @theme inline {
73
+ --color-background: var(--background);
74
+ --color-foreground: var(--foreground);
75
+ --color-card: var(--card);
76
+ --color-card-foreground: var(--card-foreground);
77
+ --color-popover: var(--popover);
78
+ --color-popover-foreground: var(--popover-foreground);
79
+ --color-primary: var(--primary);
80
+ --color-primary-foreground: var(--primary-foreground);
81
+ --color-secondary: var(--secondary);
82
+ --color-secondary-foreground: var(--secondary-foreground);
83
+ --color-muted: var(--muted);
84
+ --color-muted-foreground: var(--muted-foreground);
85
+ --color-accent: var(--accent);
86
+ --color-accent-foreground: var(--accent-foreground);
87
+ --color-destructive: var(--destructive);
88
+ --color-destructive-foreground: var(--destructive-foreground);
89
+ --color-border: var(--border);
90
+ --color-input: var(--input);
91
+ --color-ring: var(--ring);
92
+ --color-chart-1: var(--chart-1);
93
+ --color-chart-2: var(--chart-2);
94
+ --color-chart-3: var(--chart-3);
95
+ --color-chart-4: var(--chart-4);
96
+ --color-chart-5: var(--chart-5);
97
+ --color-sidebar: var(--sidebar);
98
+ --color-sidebar-foreground: var(--sidebar-foreground);
99
+ --color-sidebar-primary: var(--sidebar-primary);
100
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
101
+ --color-sidebar-accent: var(--sidebar-accent);
102
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
103
+ --color-sidebar-border: var(--sidebar-border);
104
+ --color-sidebar-ring: var(--sidebar-ring);
105
+ }
@@ -0,0 +1,105 @@
1
+ :root {
2
+ --radius: 0.625rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.145 0 0);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.145 0 0);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.145 0 0);
9
+ --primary: oklch(0.205 0 0);
10
+ --primary-foreground: oklch(0.985 0 0);
11
+ --secondary: oklch(0.97 0 0);
12
+ --secondary-foreground: oklch(0.205 0 0);
13
+ --muted: oklch(0.97 0 0);
14
+ --muted-foreground: oklch(0.556 0 0);
15
+ --accent: oklch(0.97 0 0);
16
+ --accent-foreground: oklch(0.205 0 0);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --destructive-foreground: oklch(0.985 0 0);
19
+ --border: oklch(0.922 0 0);
20
+ --input: oklch(0.922 0 0);
21
+ --ring: oklch(0.708 0 0);
22
+ --chart-1: oklch(0.646 0.222 41.116);
23
+ --chart-2: oklch(0.6 0.118 184.704);
24
+ --chart-3: oklch(0.398 0.07 227.392);
25
+ --chart-4: oklch(0.828 0.189 84.429);
26
+ --chart-5: oklch(0.769 0.188 70.08);
27
+ --sidebar: oklch(0.985 0 0);
28
+ --sidebar-foreground: oklch(0.145 0 0);
29
+ --sidebar-primary: oklch(0.205 0 0);
30
+ --sidebar-primary-foreground: oklch(0.985 0 0);
31
+ --sidebar-accent: oklch(0.97 0 0);
32
+ --sidebar-accent-foreground: oklch(0.205 0 0);
33
+ --sidebar-border: oklch(0.922 0 0);
34
+ --sidebar-ring: oklch(0.708 0 0);
35
+ }
36
+
37
+ .dark {
38
+ --background: oklch(0.145 0 0);
39
+ --foreground: oklch(0.985 0 0);
40
+ --card: oklch(0.205 0 0);
41
+ --card-foreground: oklch(0.985 0 0);
42
+ --popover: oklch(0.205 0 0);
43
+ --popover-foreground: oklch(0.985 0 0);
44
+ --primary: oklch(0.922 0 0);
45
+ --primary-foreground: oklch(0.205 0 0);
46
+ --secondary: oklch(0.269 0 0);
47
+ --secondary-foreground: oklch(0.985 0 0);
48
+ --muted: oklch(0.269 0 0);
49
+ --muted-foreground: oklch(0.708 0 0);
50
+ --accent: oklch(0.269 0 0);
51
+ --accent-foreground: oklch(0.985 0 0);
52
+ --destructive: oklch(0.704 0.191 22.216);
53
+ --destructive-foreground: oklch(0.985 0 0);
54
+ --border: oklch(1 0 0 / 10%);
55
+ --input: oklch(1 0 0 / 15%);
56
+ --ring: oklch(0.556 0 0);
57
+ --chart-1: oklch(0.488 0.243 264.376);
58
+ --chart-2: oklch(0.696 0.17 162.48);
59
+ --chart-3: oklch(0.769 0.188 70.08);
60
+ --chart-4: oklch(0.627 0.265 303.9);
61
+ --chart-5: oklch(0.645 0.246 16.439);
62
+ --sidebar: oklch(0.205 0 0);
63
+ --sidebar-foreground: oklch(0.985 0 0);
64
+ --sidebar-primary: oklch(0.488 0.243 264.376);
65
+ --sidebar-primary-foreground: oklch(0.985 0 0);
66
+ --sidebar-accent: oklch(0.269 0 0);
67
+ --sidebar-accent-foreground: oklch(0.985 0 0);
68
+ --sidebar-border: oklch(1 0 0 / 10%);
69
+ --sidebar-ring: oklch(0.556 0 0);
70
+ }
71
+
72
+ @theme inline {
73
+ --color-background: var(--background);
74
+ --color-foreground: var(--foreground);
75
+ --color-card: var(--card);
76
+ --color-card-foreground: var(--card-foreground);
77
+ --color-popover: var(--popover);
78
+ --color-popover-foreground: var(--popover-foreground);
79
+ --color-primary: var(--primary);
80
+ --color-primary-foreground: var(--primary-foreground);
81
+ --color-secondary: var(--secondary);
82
+ --color-secondary-foreground: var(--secondary-foreground);
83
+ --color-muted: var(--muted);
84
+ --color-muted-foreground: var(--muted-foreground);
85
+ --color-accent: var(--accent);
86
+ --color-accent-foreground: var(--accent-foreground);
87
+ --color-destructive: var(--destructive);
88
+ --color-destructive-foreground: var(--destructive-foreground);
89
+ --color-border: var(--border);
90
+ --color-input: var(--input);
91
+ --color-ring: var(--ring);
92
+ --color-chart-1: var(--chart-1);
93
+ --color-chart-2: var(--chart-2);
94
+ --color-chart-3: var(--chart-3);
95
+ --color-chart-4: var(--chart-4);
96
+ --color-chart-5: var(--chart-5);
97
+ --color-sidebar: var(--sidebar);
98
+ --color-sidebar-foreground: var(--sidebar-foreground);
99
+ --color-sidebar-primary: var(--sidebar-primary);
100
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
101
+ --color-sidebar-accent: var(--sidebar-accent);
102
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
103
+ --color-sidebar-border: var(--sidebar-border);
104
+ --color-sidebar-ring: var(--sidebar-ring);
105
+ }
@@ -0,0 +1,105 @@
1
+ :root {
2
+ --radius: 0.625rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.129 0.042 264.695);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.129 0.042 264.695);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.129 0.042 264.695);
9
+ --primary: oklch(0.208 0.042 265.755);
10
+ --primary-foreground: oklch(0.984 0.003 247.858);
11
+ --secondary: oklch(0.968 0.007 247.896);
12
+ --secondary-foreground: oklch(0.208 0.042 265.755);
13
+ --muted: oklch(0.968 0.007 247.896);
14
+ --muted-foreground: oklch(0.554 0.046 257.417);
15
+ --accent: oklch(0.968 0.007 247.896);
16
+ --accent-foreground: oklch(0.208 0.042 265.755);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --destructive-foreground: oklch(0.985 0 0);
19
+ --border: oklch(0.929 0.013 255.508);
20
+ --input: oklch(0.929 0.013 255.508);
21
+ --ring: oklch(0.704 0.04 256.788);
22
+ --chart-1: oklch(0.646 0.222 41.116);
23
+ --chart-2: oklch(0.6 0.118 184.704);
24
+ --chart-3: oklch(0.398 0.07 227.392);
25
+ --chart-4: oklch(0.828 0.189 84.429);
26
+ --chart-5: oklch(0.769 0.188 70.08);
27
+ --sidebar: oklch(0.984 0.003 247.858);
28
+ --sidebar-foreground: oklch(0.129 0.042 264.695);
29
+ --sidebar-primary: oklch(0.208 0.042 265.755);
30
+ --sidebar-primary-foreground: oklch(0.984 0.003 247.858);
31
+ --sidebar-accent: oklch(0.968 0.007 247.896);
32
+ --sidebar-accent-foreground: oklch(0.208 0.042 265.755);
33
+ --sidebar-border: oklch(0.929 0.013 255.508);
34
+ --sidebar-ring: oklch(0.704 0.04 256.788);
35
+ }
36
+
37
+ .dark {
38
+ --background: oklch(0.129 0.042 264.695);
39
+ --foreground: oklch(0.984 0.003 247.858);
40
+ --card: oklch(0.208 0.042 265.755);
41
+ --card-foreground: oklch(0.984 0.003 247.858);
42
+ --popover: oklch(0.208 0.042 265.755);
43
+ --popover-foreground: oklch(0.984 0.003 247.858);
44
+ --primary: oklch(0.929 0.013 255.508);
45
+ --primary-foreground: oklch(0.208 0.042 265.755);
46
+ --secondary: oklch(0.279 0.041 260.031);
47
+ --secondary-foreground: oklch(0.984 0.003 247.858);
48
+ --muted: oklch(0.279 0.041 260.031);
49
+ --muted-foreground: oklch(0.704 0.04 256.788);
50
+ --accent: oklch(0.279 0.041 260.031);
51
+ --accent-foreground: oklch(0.984 0.003 247.858);
52
+ --destructive: oklch(0.704 0.191 22.216);
53
+ --destructive-foreground: oklch(0.985 0 0);
54
+ --border: oklch(1 0 0 / 10%);
55
+ --input: oklch(1 0 0 / 15%);
56
+ --ring: oklch(0.551 0.027 264.364);
57
+ --chart-1: oklch(0.488 0.243 264.376);
58
+ --chart-2: oklch(0.696 0.17 162.48);
59
+ --chart-3: oklch(0.769 0.188 70.08);
60
+ --chart-4: oklch(0.627 0.265 303.9);
61
+ --chart-5: oklch(0.645 0.246 16.439);
62
+ --sidebar: oklch(0.208 0.042 265.755);
63
+ --sidebar-foreground: oklch(0.984 0.003 247.858);
64
+ --sidebar-primary: oklch(0.488 0.243 264.376);
65
+ --sidebar-primary-foreground: oklch(0.984 0.003 247.858);
66
+ --sidebar-accent: oklch(0.279 0.041 260.031);
67
+ --sidebar-accent-foreground: oklch(0.984 0.003 247.858);
68
+ --sidebar-border: oklch(1 0 0 / 10%);
69
+ --sidebar-ring: oklch(0.551 0.027 264.364);
70
+ }
71
+
72
+ @theme inline {
73
+ --color-background: var(--background);
74
+ --color-foreground: var(--foreground);
75
+ --color-card: var(--card);
76
+ --color-card-foreground: var(--card-foreground);
77
+ --color-popover: var(--popover);
78
+ --color-popover-foreground: var(--popover-foreground);
79
+ --color-primary: var(--primary);
80
+ --color-primary-foreground: var(--primary-foreground);
81
+ --color-secondary: var(--secondary);
82
+ --color-secondary-foreground: var(--secondary-foreground);
83
+ --color-muted: var(--muted);
84
+ --color-muted-foreground: var(--muted-foreground);
85
+ --color-accent: var(--accent);
86
+ --color-accent-foreground: var(--accent-foreground);
87
+ --color-destructive: var(--destructive);
88
+ --color-destructive-foreground: var(--destructive-foreground);
89
+ --color-border: var(--border);
90
+ --color-input: var(--input);
91
+ --color-ring: var(--ring);
92
+ --color-chart-1: var(--chart-1);
93
+ --color-chart-2: var(--chart-2);
94
+ --color-chart-3: var(--chart-3);
95
+ --color-chart-4: var(--chart-4);
96
+ --color-chart-5: var(--chart-5);
97
+ --color-sidebar: var(--sidebar);
98
+ --color-sidebar-foreground: var(--sidebar-foreground);
99
+ --color-sidebar-primary: var(--sidebar-primary);
100
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
101
+ --color-sidebar-accent: var(--sidebar-accent);
102
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
103
+ --color-sidebar-border: var(--sidebar-border);
104
+ --color-sidebar-ring: var(--sidebar-ring);
105
+ }
@@ -0,0 +1,105 @@
1
+ :root {
2
+ --radius: 0.625rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.147 0.004 49.25);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.147 0.004 49.25);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.147 0.004 49.25);
9
+ --primary: oklch(0.216 0.006 56.043);
10
+ --primary-foreground: oklch(0.985 0.001 106.423);
11
+ --secondary: oklch(0.97 0.001 106.424);
12
+ --secondary-foreground: oklch(0.216 0.006 56.043);
13
+ --muted: oklch(0.97 0.001 106.424);
14
+ --muted-foreground: oklch(0.553 0.013 58.071);
15
+ --accent: oklch(0.97 0.001 106.424);
16
+ --accent-foreground: oklch(0.216 0.006 56.043);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --destructive-foreground: oklch(0.985 0 0);
19
+ --border: oklch(0.923 0.003 48.717);
20
+ --input: oklch(0.923 0.003 48.717);
21
+ --ring: oklch(0.709 0.01 56.259);
22
+ --chart-1: oklch(0.646 0.222 41.116);
23
+ --chart-2: oklch(0.6 0.118 184.704);
24
+ --chart-3: oklch(0.398 0.07 227.392);
25
+ --chart-4: oklch(0.828 0.189 84.429);
26
+ --chart-5: oklch(0.769 0.188 70.08);
27
+ --sidebar: oklch(0.985 0.001 106.423);
28
+ --sidebar-foreground: oklch(0.147 0.004 49.25);
29
+ --sidebar-primary: oklch(0.216 0.006 56.043);
30
+ --sidebar-primary-foreground: oklch(0.985 0.001 106.423);
31
+ --sidebar-accent: oklch(0.97 0.001 106.424);
32
+ --sidebar-accent-foreground: oklch(0.216 0.006 56.043);
33
+ --sidebar-border: oklch(0.923 0.003 48.717);
34
+ --sidebar-ring: oklch(0.709 0.01 56.259);
35
+ }
36
+
37
+ .dark {
38
+ --background: oklch(0.147 0.004 49.25);
39
+ --foreground: oklch(0.985 0.001 106.423);
40
+ --card: oklch(0.216 0.006 56.043);
41
+ --card-foreground: oklch(0.985 0.001 106.423);
42
+ --popover: oklch(0.216 0.006 56.043);
43
+ --popover-foreground: oklch(0.985 0.001 106.423);
44
+ --primary: oklch(0.923 0.003 48.717);
45
+ --primary-foreground: oklch(0.216 0.006 56.043);
46
+ --secondary: oklch(0.268 0.007 34.298);
47
+ --secondary-foreground: oklch(0.985 0.001 106.423);
48
+ --muted: oklch(0.268 0.007 34.298);
49
+ --muted-foreground: oklch(0.709 0.01 56.259);
50
+ --accent: oklch(0.268 0.007 34.298);
51
+ --accent-foreground: oklch(0.985 0.001 106.423);
52
+ --destructive: oklch(0.704 0.191 22.216);
53
+ --destructive-foreground: oklch(0.985 0 0);
54
+ --border: oklch(1 0 0 / 10%);
55
+ --input: oklch(1 0 0 / 15%);
56
+ --ring: oklch(0.553 0.013 58.071);
57
+ --chart-1: oklch(0.488 0.243 264.376);
58
+ --chart-2: oklch(0.696 0.17 162.48);
59
+ --chart-3: oklch(0.769 0.188 70.08);
60
+ --chart-4: oklch(0.627 0.265 303.9);
61
+ --chart-5: oklch(0.645 0.246 16.439);
62
+ --sidebar: oklch(0.216 0.006 56.043);
63
+ --sidebar-foreground: oklch(0.985 0.001 106.423);
64
+ --sidebar-primary: oklch(0.488 0.243 264.376);
65
+ --sidebar-primary-foreground: oklch(0.985 0.001 106.423);
66
+ --sidebar-accent: oklch(0.268 0.007 34.298);
67
+ --sidebar-accent-foreground: oklch(0.985 0.001 106.423);
68
+ --sidebar-border: oklch(1 0 0 / 10%);
69
+ --sidebar-ring: oklch(0.553 0.013 58.071);
70
+ }
71
+
72
+ @theme inline {
73
+ --color-background: var(--background);
74
+ --color-foreground: var(--foreground);
75
+ --color-card: var(--card);
76
+ --color-card-foreground: var(--card-foreground);
77
+ --color-popover: var(--popover);
78
+ --color-popover-foreground: var(--popover-foreground);
79
+ --color-primary: var(--primary);
80
+ --color-primary-foreground: var(--primary-foreground);
81
+ --color-secondary: var(--secondary);
82
+ --color-secondary-foreground: var(--secondary-foreground);
83
+ --color-muted: var(--muted);
84
+ --color-muted-foreground: var(--muted-foreground);
85
+ --color-accent: var(--accent);
86
+ --color-accent-foreground: var(--accent-foreground);
87
+ --color-destructive: var(--destructive);
88
+ --color-destructive-foreground: var(--destructive-foreground);
89
+ --color-border: var(--border);
90
+ --color-input: var(--input);
91
+ --color-ring: var(--ring);
92
+ --color-chart-1: var(--chart-1);
93
+ --color-chart-2: var(--chart-2);
94
+ --color-chart-3: var(--chart-3);
95
+ --color-chart-4: var(--chart-4);
96
+ --color-chart-5: var(--chart-5);
97
+ --color-sidebar: var(--sidebar);
98
+ --color-sidebar-foreground: var(--sidebar-foreground);
99
+ --color-sidebar-primary: var(--sidebar-primary);
100
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
101
+ --color-sidebar-accent: var(--sidebar-accent);
102
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
103
+ --color-sidebar-border: var(--sidebar-border);
104
+ --color-sidebar-ring: var(--sidebar-ring);
105
+ }
@@ -0,0 +1,105 @@
1
+ :root {
2
+ --radius: 0.625rem;
3
+ --background: oklch(1 0 0);
4
+ --foreground: oklch(0.141 0.005 285.823);
5
+ --card: oklch(1 0 0);
6
+ --card-foreground: oklch(0.141 0.005 285.823);
7
+ --popover: oklch(1 0 0);
8
+ --popover-foreground: oklch(0.141 0.005 285.823);
9
+ --primary: oklch(0.21 0.006 285.885);
10
+ --primary-foreground: oklch(0.985 0 0);
11
+ --secondary: oklch(0.967 0.001 286.375);
12
+ --secondary-foreground: oklch(0.21 0.006 285.885);
13
+ --muted: oklch(0.967 0.001 286.375);
14
+ --muted-foreground: oklch(0.552 0.016 285.938);
15
+ --accent: oklch(0.967 0.001 286.375);
16
+ --accent-foreground: oklch(0.21 0.006 285.885);
17
+ --destructive: oklch(0.577 0.245 27.325);
18
+ --destructive-foreground: oklch(0.985 0 0);
19
+ --border: oklch(0.92 0.004 286.32);
20
+ --input: oklch(0.92 0.004 286.32);
21
+ --ring: oklch(0.705 0.015 286.067);
22
+ --chart-1: oklch(0.646 0.222 41.116);
23
+ --chart-2: oklch(0.6 0.118 184.704);
24
+ --chart-3: oklch(0.398 0.07 227.392);
25
+ --chart-4: oklch(0.828 0.189 84.429);
26
+ --chart-5: oklch(0.769 0.188 70.08);
27
+ --sidebar: oklch(0.985 0 0);
28
+ --sidebar-foreground: oklch(0.141 0.005 285.823);
29
+ --sidebar-primary: oklch(0.21 0.006 285.885);
30
+ --sidebar-primary-foreground: oklch(0.985 0 0);
31
+ --sidebar-accent: oklch(0.967 0.001 286.375);
32
+ --sidebar-accent-foreground: oklch(0.21 0.006 285.885);
33
+ --sidebar-border: oklch(0.92 0.004 286.32);
34
+ --sidebar-ring: oklch(0.705 0.015 286.067);
35
+ }
36
+
37
+ .dark {
38
+ --background: oklch(0.141 0.005 285.823);
39
+ --foreground: oklch(0.985 0 0);
40
+ --card: oklch(0.21 0.006 285.885);
41
+ --card-foreground: oklch(0.985 0 0);
42
+ --popover: oklch(0.21 0.006 285.885);
43
+ --popover-foreground: oklch(0.985 0 0);
44
+ --primary: oklch(0.92 0.004 286.32);
45
+ --primary-foreground: oklch(0.21 0.006 285.885);
46
+ --secondary: oklch(0.274 0.006 286.033);
47
+ --secondary-foreground: oklch(0.985 0 0);
48
+ --muted: oklch(0.274 0.006 286.033);
49
+ --muted-foreground: oklch(0.705 0.015 286.067);
50
+ --accent: oklch(0.274 0.006 286.033);
51
+ --accent-foreground: oklch(0.985 0 0);
52
+ --destructive: oklch(0.704 0.191 22.216);
53
+ --destructive-foreground: oklch(0.985 0 0);
54
+ --border: oklch(1 0 0 / 10%);
55
+ --input: oklch(1 0 0 / 15%);
56
+ --ring: oklch(0.552 0.016 285.938);
57
+ --chart-1: oklch(0.488 0.243 264.376);
58
+ --chart-2: oklch(0.696 0.17 162.48);
59
+ --chart-3: oklch(0.769 0.188 70.08);
60
+ --chart-4: oklch(0.627 0.265 303.9);
61
+ --chart-5: oklch(0.645 0.246 16.439);
62
+ --sidebar: oklch(0.21 0.006 285.885);
63
+ --sidebar-foreground: oklch(0.985 0 0);
64
+ --sidebar-primary: oklch(0.488 0.243 264.376);
65
+ --sidebar-primary-foreground: oklch(0.985 0 0);
66
+ --sidebar-accent: oklch(0.274 0.006 286.033);
67
+ --sidebar-accent-foreground: oklch(0.985 0 0);
68
+ --sidebar-border: oklch(1 0 0 / 10%);
69
+ --sidebar-ring: oklch(0.552 0.016 285.938);
70
+ }
71
+
72
+ @theme inline {
73
+ --color-background: var(--background);
74
+ --color-foreground: var(--foreground);
75
+ --color-card: var(--card);
76
+ --color-card-foreground: var(--card-foreground);
77
+ --color-popover: var(--popover);
78
+ --color-popover-foreground: var(--popover-foreground);
79
+ --color-primary: var(--primary);
80
+ --color-primary-foreground: var(--primary-foreground);
81
+ --color-secondary: var(--secondary);
82
+ --color-secondary-foreground: var(--secondary-foreground);
83
+ --color-muted: var(--muted);
84
+ --color-muted-foreground: var(--muted-foreground);
85
+ --color-accent: var(--accent);
86
+ --color-accent-foreground: var(--accent-foreground);
87
+ --color-destructive: var(--destructive);
88
+ --color-destructive-foreground: var(--destructive-foreground);
89
+ --color-border: var(--border);
90
+ --color-input: var(--input);
91
+ --color-ring: var(--ring);
92
+ --color-chart-1: var(--chart-1);
93
+ --color-chart-2: var(--chart-2);
94
+ --color-chart-3: var(--chart-3);
95
+ --color-chart-4: var(--chart-4);
96
+ --color-chart-5: var(--chart-5);
97
+ --color-sidebar: var(--sidebar);
98
+ --color-sidebar-foreground: var(--sidebar-foreground);
99
+ --color-sidebar-primary: var(--sidebar-primary);
100
+ --color-sidebar-primary-foreground: var(--sidebar-primary-foreground);
101
+ --color-sidebar-accent: var(--sidebar-accent);
102
+ --color-sidebar-accent-foreground: var(--sidebar-accent-foreground);
103
+ --color-sidebar-border: var(--sidebar-border);
104
+ --color-sidebar-ring: var(--sidebar-ring);
105
+ }