@howssatoshi/quantumcss 1.4.2 → 1.5.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/README.md +8 -7
- package/dist/quantum.min.css +1 -4678
- package/examples/blog-template.html +268 -0
- package/examples/gaming-template.html +355 -0
- package/examples/images/starlight.jpg +0 -0
- package/examples/index.html +138 -0
- package/examples/kitchen-sink.html +1012 -0
- package/examples/news-template.html +320 -0
- package/examples/shopping/images/headset.jpg +0 -0
- package/examples/shopping/images/sneakers.jpg +0 -0
- package/examples/shopping/images/windbreaker.jpg +0 -0
- package/examples/shopping/index.html +330 -0
- package/examples/starlight.html +161 -0
- package/examples/theme-test.html +174 -0
- package/examples/travel/index.html +254 -0
- package/examples/verify_fixes.html +52 -0
- package/examples/verify_presets.html +32 -0
- package/package.json +8 -1
- package/src/generator.js +19 -8
- package/src/starlight.js +406 -15
- package/src/styles/quantum-animations.css +3 -2
- package/src/styles/quantum-base.css +295 -91
- package/src/styles/quantum-components.css +47 -47
- package/src/styles/quantum-responsive.css +5 -4
- package/src/styles/starlight.css +184 -184
package/README.md
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
# Quantum CSS - Next-Generation Utility Framework
|
|
2
2
|
|
|
3
|
-

|
|
4
4
|

|
|
5
|
-

|
|
6
6
|
|
|
7
7
|
A modern, performance-optimized utility-first CSS framework with semantic naming, recursive component presets, and advanced cosmic effects.
|
|
8
8
|
|
|
9
9
|
## 🚀 Features
|
|
10
10
|
|
|
11
11
|
### Modern CSS Capabilities
|
|
12
|
-
- **
|
|
13
|
-
- **
|
|
14
|
-
- **
|
|
15
|
-
- **
|
|
12
|
+
- **Robust Theme Engine** - Seamlessly follow OS settings with automatic `prefers-color-scheme` detection and dynamic live-switching.
|
|
13
|
+
- **Recursive Component Presets** - Define custom components in config using existing utilities.
|
|
14
|
+
- **Cosmic Animation Library** - Advanced effects like parallax nebula drifts and orbit paths.
|
|
15
|
+
- **High Contrast Mode** - Native support for `prefers-contrast` and `forced-colors`.
|
|
16
|
+
- **JIT Dark Mode** - Dynamic generation of dark mode variants via `dark:` prefix.
|
|
16
17
|
|
|
17
18
|
### Developer Experience
|
|
18
19
|
- **Advanced CLI Scaffolding** - Instantly generate pre-styled templates (Gaming, Blog, News, Shopping, Travel)
|
|
@@ -99,7 +100,7 @@ QuantumCSS automatically optimizes contrast for accessibility when the user enab
|
|
|
99
100
|
## 📊 Performance
|
|
100
101
|
|
|
101
102
|
### Bundle Size
|
|
102
|
-
- **QuantumCSS Core**: ~
|
|
103
|
+
- **QuantumCSS Core**: ~19KB gzipped
|
|
103
104
|
- **Optimized Selectors**: Minimal specificity for maximum performance
|
|
104
105
|
- **Tree Shaking**: Only used utilities and presets are generated in JIT mode
|
|
105
106
|
|