@lumerahq/cli 0.22.0 → 0.22.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,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumerahq/cli",
3
- "version": "0.22.0",
3
+ "version": "0.22.1",
4
4
  "description": "CLI for building and deploying Lumera apps",
5
5
  "type": "module",
6
6
  "engines": {
@@ -4,9 +4,16 @@
4
4
  <meta charset="UTF-8" />
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <meta name="theme-color" content="#000000" />
7
+ <!--
8
+ App fonts are an identity choice, not a default. Replace the pairing
9
+ below with fonts chosen for THIS app (see the building-enterprise-apps
10
+ skill, "Typography"): a characterful UI face plus a mono face for
11
+ figures, optionally a display face for page titles. Then update the
12
+ font tokens at the top of src/styles.css to match.
13
+ -->
7
14
  <link rel="preconnect" href="https://fonts.googleapis.com">
8
15
  <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
9
- <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
16
+ <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400..700&display=swap" rel="stylesheet">
10
17
  <title>{{projectTitle}}</title>
11
18
  </head>
12
19
  <body>
@@ -98,15 +98,50 @@
98
98
 
99
99
  @custom-variant dark (&:is(.dark *));
100
100
 
101
+ /* ──────────────────────────────────────────────────────────────────────────
102
+ APP IDENTITY — choose, don't inherit.
103
+
104
+ The fonts and core colors in this file are placeholders, not a design.
105
+ Before building screens, commit to a visual direction for THIS app (see
106
+ the building-enterprise-apps skill: "Design Direction" and "Typography"):
107
+ pick a font pairing in index.html and set the tokens below to match, then
108
+ re-derive at minimum --primary, --accent, --ring, and the background/
109
+ foreground neutrals from the chosen direction (bias neutrals toward the
110
+ accent instead of pure gray). Shipping this file unchanged is a
111
+ non-choice — every app built that way looks identical.
112
+ ────────────────────────────────────────────────────────────────────────── */
113
+
114
+ :root {
115
+ /* UI face — replace Inter with the app's chosen face */
116
+ --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
117
+ /* Data face — figures, amounts, and IDs render in this, with tabular numerals */
118
+ --font-data: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
119
+ /* Optional display face for page titles (often a serif); defaults to the UI face */
120
+ --font-titles: var(--font-ui);
121
+ }
122
+
123
+ @theme inline {
124
+ --font-sans: var(--font-ui);
125
+ --font-mono: var(--font-data);
126
+ --font-display: var(--font-titles);
127
+ }
128
+
101
129
  body {
102
130
  @apply m-0;
103
- font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
131
+ font-family: var(--font-ui);
104
132
  font-feature-settings: "cv11", "ss01";
105
133
  -webkit-font-smoothing: antialiased;
106
134
  -moz-osx-font-smoothing: grayscale;
107
135
  }
108
136
 
109
- /* Lumera brand theme + full shadcn variable set */
137
+ /* Numerals line up wherever data lives */
138
+ table,
139
+ .font-mono {
140
+ font-variant-numeric: tabular-nums;
141
+ }
142
+
143
+ /* Core identity colors (placeholder: Lumera coral on warm off-white) + the
144
+ full shadcn variable set. Keep the variable names; change the values. */
110
145
 
111
146
  :root {
112
147
  --radius: 0.75rem;
@@ -3,5 +3,5 @@
3
3
  "title": "Blank Starter",
4
4
  "description": "A minimal blank canvas with React frontend and Lumera platform scaffolding. No pre-built collections or agents — start from scratch.",
5
5
  "category": "General",
6
- "version": "1.2.0"
6
+ "version": "1.3.0"
7
7
  }