f084775cbb
Port the TGU editor prototype into pcp-tgu-ops-ui as a new editor tab, add draft/conflict/pass logic with tests, extend the 2D map picking API, and include editor styles/theme aliases and task/prototype docs. Validation: npm run test; npm run build in services/pcp-tgu-ops-ui.
21 lines
591 B
CSS
21 lines
591 B
CSS
:root {
|
|
--bg-0: var(--bg-base);
|
|
--bg-1: var(--bg-panel);
|
|
--bg-2: var(--bg-panel-2);
|
|
--bg-3: var(--bg-elevated);
|
|
--ink: var(--text);
|
|
--ink-1: var(--text);
|
|
--ink-2: var(--text-muted);
|
|
--ink-3: var(--text-dim);
|
|
--grid: var(--line-soft);
|
|
--now: var(--warning);
|
|
--warn: var(--warning);
|
|
--mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
|
|
--t-optical: var(--accent);
|
|
--t-optical-dim: rgba(104, 195, 189, 0.18);
|
|
--t-radar: var(--warning);
|
|
--t-radar-dim: rgba(240, 173, 46, 0.16);
|
|
--t-combo: var(--danger);
|
|
--t-combo-dim: rgba(214, 69, 69, 0.16);
|
|
}
|