@jdcpuwiz/homelab-ui 0.9.4 → 0.10.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/globals.css +18 -0
- package/package.json +1 -1
package/globals.css
CHANGED
|
@@ -144,6 +144,13 @@
|
|
|
144
144
|
--hl-font-display: var(--font-orbitron, "Orbitron"), var(--hl-font-sans);
|
|
145
145
|
--hl-font-mono: var(--font-jetbrains-mono, "JetBrains Mono"), ui-monospace,
|
|
146
146
|
"SF Mono", SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
|
|
147
|
+
|
|
148
|
+
/* Fleet placeholder colour (refile of C489, found on the zoo-nanny UI
|
|
149
|
+
standards review). Nothing in this file declared an input placeholder
|
|
150
|
+
colour, so every consumer leaked Tailwind preflight's gray-400
|
|
151
|
+
(#9ca3af) instead of the fleet #7d838d. Override at :root to re-skin,
|
|
152
|
+
like every other token. */
|
|
153
|
+
--hl-placeholder: #7d838d;
|
|
147
154
|
}
|
|
148
155
|
|
|
149
156
|
html {
|
|
@@ -159,3 +166,14 @@ body {
|
|
|
159
166
|
line-height: 1.5;
|
|
160
167
|
-webkit-font-smoothing: antialiased;
|
|
161
168
|
}
|
|
169
|
+
|
|
170
|
+
/* Tailwind preflight ships `input::placeholder, textarea::placeholder` —
|
|
171
|
+
a (0,0,1) selector — so a bare `::placeholder` (0,0,0) loses regardless
|
|
172
|
+
of source order. This rule MUST match that specificity to win. Consumers
|
|
173
|
+
must import this file AFTER their own `@tailwind base` for source order
|
|
174
|
+
to decide the tie. */
|
|
175
|
+
input::placeholder,
|
|
176
|
+
textarea::placeholder {
|
|
177
|
+
color: var(--hl-placeholder);
|
|
178
|
+
opacity: 1; /* Firefox dims placeholders with its own default opacity */
|
|
179
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jdcpuwiz/homelab-ui",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Shared dark-theme UI primitives for the JdCpuWiz homelab \u2014 Sidebar, Button, Modal, PageHeader, TagChips, plus the canonical Tailwind preset, CSS vars, and the sanctioned three-face typography (Poppins / Orbitron / JetBrains Mono) on one flat #f0f1f4 text color.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Wiz <shad@deckerzoo.com>",
|