@press2ai/theme-specialist-glossy 3.1.0 → 3.1.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 +1 -1
- package/src/ai.ts +1 -1
- package/src/styles/base.ts +2 -3
- package/src/styles/glossy.css +1 -3
- package/src/templates/layout.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@press2ai/theme-specialist-glossy",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "Classless, AI-first glossy theme. Framework-agnostic templates (Hono, Astro, raw HTML). Semantic HTML, Schema.org microdata, JSON-LD — built for LLM crawlers.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
package/src/ai.ts
CHANGED
package/src/styles/base.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
export const css =
|
|
2
|
-
:root {
|
|
1
|
+
export const css = `:root {
|
|
3
2
|
/* Fibonacci scale — golden ratio ×1.618. Podmień na swoje. */
|
|
4
3
|
--g1: .5rem; /* 8px */
|
|
5
4
|
--g2: .8125rem; /* 13px */
|
|
@@ -8,7 +7,7 @@ export const css = `@import url('https://rsms.me/inter/inter.css');
|
|
|
8
7
|
--g5: 3.4375rem; /* 55px */
|
|
9
8
|
--g6: 5.5625rem; /* 89px */
|
|
10
9
|
|
|
11
|
-
--font: '
|
|
10
|
+
--font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
|
|
12
11
|
--container: 1080px; --pad: var(--g3);
|
|
13
12
|
|
|
14
13
|
--bg: #f8f9fb; --fg: #1a1a2e; --fg-muted: #4a4a68; --fg-faint: #8b8ba3;
|
package/src/styles/glossy.css
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
@import url('https://rsms.me/inter/inter.css');
|
|
2
|
-
|
|
3
1
|
:root {
|
|
4
|
-
--font: '
|
|
2
|
+
--font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
|
|
5
3
|
--g1: 0.5rem; --g2: 0.8125rem; --g3: 1.3125rem; --g4: 2.125rem; --g5: 3.4375rem; --g6: 5.5625rem; --g7: 9rem;
|
|
6
4
|
--t-xs: 0.8rem; --t-sm: 1rem; --t-md: 1.25rem; --t-lg: 1.563rem; --t-xl: 1.953rem; --t-2xl: 2.441rem;
|
|
7
5
|
--container: 1080px; --pad: var(--g4);
|