anentrypoint-design 0.0.212 → 0.0.214

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.
@@ -18,6 +18,8 @@
18
18
  --ink: #131318;
19
19
  --ink-2: #25252C;
20
20
  --ink-3: #54545A; /* WCAG AAA on --paper (~7.1:1); was #6A6A70 (AA only) */
21
+ --ink-3-dark: #464650; /* dark theme bg-3 (tier-3 surface) */
22
+ --paper-3-dark: #B4B4BC; /* dark theme fg-3 (tier-3 text) */
21
23
 
22
24
  /* Lore palette */
23
25
  --green: #247420;
@@ -250,10 +252,10 @@ select:focus-visible {
250
252
  color-scheme: dark;
251
253
  --bg: var(--ink);
252
254
  --bg-2: var(--ink-2);
253
- --bg-3: #464650;
255
+ --bg-3: var(--ink-3-dark);
254
256
  --fg: var(--paper);
255
257
  --fg-2: var(--paper-2);
256
- --fg-3: #B4B4BC;
258
+ --fg-3: var(--paper-3-dark);
257
259
  --panel-bg: var(--bg);
258
260
  --panel-bg-2: var(--bg-2);
259
261
  --panel-0: var(--bg);
@@ -280,18 +282,20 @@ select:focus-visible {
280
282
  --code-num: var(--sun);
281
283
  }
282
284
 
283
- /* NOTE: the [data-theme="auto"] block below intentionally duplicates the
284
- [data-theme="ink"/"dark"] block above. They are NOT literally identical —
285
- the explicit-dark block also overrides --danger for contrast so they are
286
- kept separate rather than consolidated to avoid a behavior change. */
285
+ /* NOTE: the [data-theme="auto"] block below mirrors the
286
+ [data-theme="ink"/"dark"] block above token-for-token. 'auto + OS-dark' and
287
+ 'explicit dark' are the same visual context and resolve every token
288
+ including --danger identically. The two are kept as separate selectors
289
+ only because one is media-gated; a future de-drift can consolidate them into
290
+ a shared selector list once a build step can hoist the media query. */
287
291
  @media (prefers-color-scheme: dark) {
288
292
  [data-theme="auto"] {
289
293
  --bg: var(--ink);
290
294
  --bg-2: var(--ink-2);
291
- --bg-3: #464650;
295
+ --bg-3: var(--ink-3-dark);
292
296
  --fg: var(--paper);
293
297
  --fg-2: var(--paper-2);
294
- --fg-3: #B4B4BC;
298
+ --fg-3: var(--paper-3-dark);
295
299
  --panel-bg: var(--bg);
296
300
  --panel-bg-2: var(--bg-2);
297
301
  --panel-0: var(--bg);
@@ -304,6 +308,7 @@ select:focus-visible {
304
308
  --accent: var(--accent-bright, var(--green-2));
305
309
  --accent-fg: var(--ink);
306
310
  --accent-bright: var(--green-2);
311
+ --danger: oklch(0.68 0.19 25);
307
312
  --flame: #FF5A1F;
308
313
  --amber: #D9A93A;
309
314
  --warn: #FF5A52;
@@ -373,7 +378,7 @@ select:focus-visible {
373
378
  --fg: var(--ink); --fg-2: var(--ink-2); --fg-3: var(--ink-3);
374
379
  --accent: var(--green); --accent-fg: var(--paper);
375
380
  /* A paper island under a dark ancestor must not inherit the dark signal pair. */
376
- --flame: #C53E00; --amber: #8A6512;
381
+ --flame: #C53E00; --amber: #8A6512; --warn: #E0241A; --sky: #3A6EFF;
377
382
  }
378
383
 
379
384
  /* thebird — warm-paper brand preset. A first-class swappable theme: it lives
package/community.css CHANGED
@@ -1043,6 +1043,16 @@
1043
1043
  border-radius: var(--r-1);
1044
1044
  }
1045
1045
 
1046
+ /* ThreadPanel / Forum / Page interactive elements */
1047
+ .cm-tp-item:focus-visible,
1048
+ .cm-forum-item:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; border-radius: var(--r-1); }
1049
+ .cm-tp-new:focus-visible,
1050
+ .cm-tp-close:focus-visible,
1051
+ .cm-forum-new:focus-visible,
1052
+ .cm-forum-sort:focus-visible,
1053
+ .cm-page-edit:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: var(--r-1); }
1054
+ .cm-forum-search:focus-visible { outline: none; box-shadow: inset 0 0 0 2px var(--accent); }
1055
+
1046
1056
  /* ---------- mobile header ---------- */
1047
1057
  .cm-mobile-header {
1048
1058
  display: flex;