@casoon/atlas-styles 0.0.6 → 0.0.8
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/components.css +868 -0
- package/dist/glass.css +104 -0
- package/dist/index.css +1018 -0
- package/dist/orbs.css +43 -0
- package/package.json +6 -6
- package/LICENSE +0 -21
package/dist/orbs.css
CHANGED
|
@@ -202,6 +202,49 @@
|
|
|
202
202
|
);
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
+
/* =========================================================
|
|
206
|
+
CSS CUSTOM PROPERTIES FOR INLINE STYLES
|
|
207
|
+
Duplicates @theme tokens as :root variables for use with var()
|
|
208
|
+
========================================================= */
|
|
209
|
+
:root {
|
|
210
|
+
/* Base palette colors */
|
|
211
|
+
--cs-text: #0f172a;
|
|
212
|
+
--cs-text-inverse: #ffffff;
|
|
213
|
+
--cs-bg: #ffffff;
|
|
214
|
+
--cs-surface: #ffffff;
|
|
215
|
+
--cs-surface-2: #f8fafc;
|
|
216
|
+
--cs-border: #e5e7eb;
|
|
217
|
+
|
|
218
|
+
/* Orb colors */
|
|
219
|
+
--cs-orb-blue: #3b82f6;
|
|
220
|
+
--cs-orb-blue-light: #93c5fd;
|
|
221
|
+
--cs-orb-blue-lighter: #dbeafe;
|
|
222
|
+
--cs-orb-purple: #9333ea;
|
|
223
|
+
--cs-orb-purple-light: #c4b5fd;
|
|
224
|
+
--cs-orb-purple-lighter: #ede9fe;
|
|
225
|
+
--cs-orb-pink: #ec4899;
|
|
226
|
+
--cs-orb-pink-light: #fbcfe8;
|
|
227
|
+
--cs-orb-pink-lighter: #fdf2f8;
|
|
228
|
+
--cs-orb-custom-primary: #667eea;
|
|
229
|
+
--cs-orb-custom-secondary: #764ba2;
|
|
230
|
+
--cs-orb-custom-accent: #f093fb;
|
|
231
|
+
--cs-orb-green: #22c55e;
|
|
232
|
+
--cs-orb-amber: #f59e0b;
|
|
233
|
+
|
|
234
|
+
/* Opacity tokens */
|
|
235
|
+
--cs-opacity-strong: 0.5;
|
|
236
|
+
--cs-opacity-medium: 0.3;
|
|
237
|
+
--cs-opacity-weak: 0.1;
|
|
238
|
+
|
|
239
|
+
/* Motion & transitions */
|
|
240
|
+
--cs-transition: 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
|
|
241
|
+
--cs-anim-ease-inout: cubic-bezier(0.4, 0, 0.2, 1);
|
|
242
|
+
--cs-anim-ease-emph: cubic-bezier(0.2, 0.8, 0.2, 1);
|
|
243
|
+
--cs-anim-duration-float: 6s;
|
|
244
|
+
--cs-anim-duration-pulse: 4s;
|
|
245
|
+
--cs-anim-duration-drift: 8s;
|
|
246
|
+
}
|
|
247
|
+
|
|
205
248
|
/* =========================================================
|
|
206
249
|
Base Orb Utility
|
|
207
250
|
========================================================= */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@casoon/atlas-styles",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "Pure CSS design system with glass effects, gradients, and utilities for Tailwind v4",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
"./animations.css": "./dist/animations.css",
|
|
24
24
|
"./utilities.css": "./dist/utilities.css"
|
|
25
25
|
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "rimraf dist && node build.js",
|
|
28
|
+
"clean": "rimraf dist"
|
|
29
|
+
},
|
|
26
30
|
"keywords": [
|
|
27
31
|
"tailwind",
|
|
28
32
|
"css",
|
|
@@ -52,9 +56,5 @@
|
|
|
52
56
|
},
|
|
53
57
|
"publishConfig": {
|
|
54
58
|
"access": "public"
|
|
55
|
-
},
|
|
56
|
-
"scripts": {
|
|
57
|
-
"build": "rimraf dist && node build.js",
|
|
58
|
-
"clean": "rimraf dist"
|
|
59
59
|
}
|
|
60
|
-
}
|
|
60
|
+
}
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2024 Jörn Seidel (CASOON)
|
|
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.
|