// Phase 0 Labs, Dark Console site tokens
// Centralized so every page pulls from the same theme.

const T = {
  ink: '#0A1420',
  panel: '#0F1B2C',
  panel2: '#13243A',
  border: 'rgba(133,183,235,0.14)',
  borderStrong: 'rgba(133,183,235,0.28)',
  text: '#D8DCE3',
  textBright: '#EEF1F4',
  dim: '#7A8595',
  dimmer: '#4F5868',
  blue: '#85B7EB',
  blueDeep: '#185FA5',
  teal: '#5DCAA5',
  tealDeep: '#0F6E56',
  purple: '#AFA9EC',
  purpleDeep: '#534AB7',
  amber: '#E0B271',
  red: '#E78A8A',
};

const FONT = {
  sans: "'DM Sans', system-ui, sans-serif",
  mono: "'JetBrains Mono', ui-monospace, monospace",
};

window.T = T;
window.FONT = FONT;
