@auronui/styles 1.0.0 → 1.0.2
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/package.json +4 -4
- package/themes/default/variables.css +48 -0
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@auronui/styles",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Auron core styles — adapted for Reka UI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"homepage": "https://auronui
|
|
7
|
+
"homepage": "https://darkknight1992.github.io/auronui",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/DarkKnight1992/
|
|
10
|
+
"url": "git+https://github.com/DarkKnight1992/auronui.git",
|
|
11
11
|
"directory": "packages/styles"
|
|
12
12
|
},
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/DarkKnight1992/
|
|
14
|
+
"url": "https://github.com/DarkKnight1992/auronui/issues"
|
|
15
15
|
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"vue",
|
|
@@ -109,6 +109,54 @@
|
|
|
109
109
|
--skeleton-animation: shimmer; /* shimmer, pulse, none */
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
+
@media (prefers-color-scheme: dark) {
|
|
113
|
+
:root:not(.light):not([data-theme="light"]):not(.default):not([data-theme="default"]) {
|
|
114
|
+
color-scheme: dark;
|
|
115
|
+
|
|
116
|
+
--background: oklch(12% 0.005 285.823);
|
|
117
|
+
--foreground: var(--snow);
|
|
118
|
+
|
|
119
|
+
--surface: oklch(0.2103 0.0059 285.89);
|
|
120
|
+
--surface-foreground: var(--foreground);
|
|
121
|
+
|
|
122
|
+
--surface-secondary: oklch(0.257 0.0037 286.14);
|
|
123
|
+
--surface-tertiary: oklch(0.2721 0.0024 247.91);
|
|
124
|
+
|
|
125
|
+
--overlay: oklch(0.2103 0.0059 285.89);
|
|
126
|
+
--overlay-foreground: var(--foreground);
|
|
127
|
+
|
|
128
|
+
--muted: oklch(70.5% 0.015 286.067);
|
|
129
|
+
|
|
130
|
+
--scrollbar: oklch(70.5% 0.015 286.067);
|
|
131
|
+
|
|
132
|
+
--default: oklch(27.4% 0.006 286.033);
|
|
133
|
+
--default-foreground: var(--snow);
|
|
134
|
+
|
|
135
|
+
--field-background: oklch(0.2103 0.0059 285.89);
|
|
136
|
+
--field-foreground: var(--foreground);
|
|
137
|
+
|
|
138
|
+
--warning: oklch(0.8203 0.1388 76.34);
|
|
139
|
+
--warning-foreground: var(--eclipse);
|
|
140
|
+
|
|
141
|
+
--danger: oklch(0.594 0.1967 24.63);
|
|
142
|
+
--danger-foreground: var(--snow);
|
|
143
|
+
|
|
144
|
+
--segment: oklch(0.3964 0.01 285.93);
|
|
145
|
+
--segment-foreground: var(--foreground);
|
|
146
|
+
|
|
147
|
+
--border: oklch(28% 0.006 286.033);
|
|
148
|
+
--separator: oklch(25% 0.006 286.033);
|
|
149
|
+
--focus: var(--accent);
|
|
150
|
+
--link: var(--foreground);
|
|
151
|
+
|
|
152
|
+
--backdrop: rgba(0, 0, 0, 0.6);
|
|
153
|
+
|
|
154
|
+
--surface-shadow: 0 0 0 0 transparent inset;
|
|
155
|
+
--overlay-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.3) inset;
|
|
156
|
+
--field-shadow: 0 0 0 0 transparent inset;
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
|
|
112
160
|
.dark,
|
|
113
161
|
[data-theme="dark"] {
|
|
114
162
|
color-scheme: dark;
|