@auronui/styles 1.0.0 → 1.0.1

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 CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@auronui/styles",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Auron core styles — adapted for Reka UI",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
- "homepage": "https://auronui.dev",
7
+ "homepage": "https://darkknight1992.github.io/auronui",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "https://github.com/DarkKnight1992/auron.git",
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/auron/issues"
14
+ "url": "https://github.com/DarkKnight1992/auronui/issues"
15
15
  },
16
16
  "keywords": [
17
17
  "vue",
@@ -395,21 +395,21 @@
395
395
  "index.css",
396
396
  "DATA_ATTRIBUTES.md"
397
397
  ],
398
+ "scripts": {
399
+ "typecheck": "tsc --noEmit",
400
+ "test": "vitest run",
401
+ "clean": "rm -rf .turbo"
402
+ },
398
403
  "dependencies": {
399
404
  "tailwind-variants": "3.2.2",
400
405
  "tw-animate-css": "1.4.0"
401
406
  },
402
407
  "devDependencies": {
408
+ "@auronui/standard": "workspace:*",
403
409
  "tailwindcss": "4.2.2",
404
- "vitest": "4.1.4",
405
- "@auronui/standard": "0.0.0"
410
+ "vitest": "4.1.4"
406
411
  },
407
412
  "peerDependencies": {
408
413
  "tailwindcss": ">=4.0.0"
409
- },
410
- "scripts": {
411
- "typecheck": "tsc --noEmit",
412
- "test": "vitest run",
413
- "clean": "rm -rf .turbo"
414
414
  }
415
- }
415
+ }
@@ -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;
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2026 Auron Contributors
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.