qss 0.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.
@@ -0,0 +1,74 @@
1
+ /* QSS core defaults, generated from grammar.yml alone - DO NOT EDIT MANUALLY */
2
+
3
+ $qss-unit: 1px !default;
4
+ $qss-anchor: "#qss-canvas" !default;
5
+
6
+ /* Overlay portal root; "" = rules scoped to the anchor only. */
7
+ $qss-portal-root: "" !default;
8
+
9
+ $qss-palette: (
10
+ "black": #000000,
11
+ "white": #ffffff,
12
+ "transparent": transparent,
13
+ "none": none,
14
+ "slate-50": #f8fafc,
15
+ "slate-100": #f1f5f9,
16
+ "slate-200": #e2e8f0,
17
+ "slate-300": #cbd5e1,
18
+ "slate-400": #94a3b8,
19
+ "slate-500": #64748b,
20
+ "slate-600": #475569,
21
+ "slate-700": #334155,
22
+ "slate-800": #1e293b,
23
+ "slate-900": #0f172a,
24
+ "slate-950": #020617,
25
+ "rose-500": #f43f5e
26
+ ) !default;
27
+
28
+ $qss-depths: (
29
+ "canvas": 0,
30
+ "content": 100,
31
+ "ui": 500,
32
+ "overlay": 900,
33
+ "modal": 1000
34
+ ) !default;
35
+
36
+ $qss-quantization: (
37
+ "units": 1000,
38
+ "borders": 50
39
+ ) !default;
40
+
41
+ /* Text scale (item 2, SETTLED 2026-09-21). */
42
+ $qss-text-scale: (
43
+ "calibration-width": 1440,
44
+ "floor-px": 9,
45
+ "floor-multiplier": 0.875,
46
+ "cap-multiplier": 1.5
47
+ ) !default;
48
+
49
+ /* Non-text content scale (item 3, SETTLED 2026-09-21). */
50
+ $qss-content-scale: (
51
+ "calibration-width": 1440
52
+ ) !default;
53
+
54
+ /* Named-group registry (consumer-supplied). */
55
+ $qss-group-names: () !default;
56
+
57
+ $qss-breakpoints: (
58
+ "sm": 640px,
59
+ "md": 768px,
60
+ "lg": 1024px,
61
+ "xl": 1280px
62
+ ) !default;
63
+
64
+ $qss-vertical-breakpoints: (
65
+ "v-sm": 400px,
66
+ "v-md": 600px,
67
+ "v-lg": 800px,
68
+ "v-xl": 1000px
69
+ ) !default;
70
+
71
+ $qss-fonts: (
72
+ "sans": "Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif",
73
+ "mono": "'JetBrains Mono', 'Fira Code', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace"
74
+ ) !default;