/* eterngit palette — neovim / light
   Theme = CSS variables only. Switching theme/mode swaps these values; page structure never changes.
   Loaded by every page; the active [data-theme][data-mode] pair wins via attribute selector. */

html[data-theme="neovim"][data-mode="light"] {
  color-scheme: light;

  /* SURFACES */
  --bg: #e1e2e7;
  --bg-elev: #d5d6db;
  --bg-inset: #c4c8da;
  --bg-hover: #cdd0e0;
  --fg: #343b58;
  --fg-muted: #6172b0;
  --fg-faint: #848cb5;
  --border: #c4c8da;
  --border-strong: #a8aecb;
  --accent: #2e7de9;
  --accent-fg: #ffffff;
  --accent-soft: rgba(46,125,233,0.12);
  --selection: #b7c1e3;

  /* ANSI / SEMANTIC */
  --red: #f52a65;
  --green: #587539;
  --yellow: #8c6c3e;
  --blue: #2e7de9;
  --purple: #9854f1;
  --cyan: #007197;
  --orange: #b15c00;
  --gray: #848cb5;

  /* DIFF */
  --diff-add-bg: rgba(88,117,57,0.12);
  --diff-add-text: #343b58;
  --diff-add-marker: #587539;
  --diff-add-gutter: rgba(88,117,57,0.16);
  --diff-del-bg: rgba(245,42,101,0.10);
  --diff-del-text: #343b58;
  --diff-del-marker: #f52a65;
  --diff-del-gutter: rgba(245,42,101,0.14);
  --diff-hunk-bg: rgba(46,125,233,0.08);
  --diff-hunk-fg: #2e7de9;

  /* CODE */
  --code-bg: #e1e2e7;
  --code-fg: #343b58;
  --code-gutter-fg: #a8aecb;
  --code-gutter-bg: #e1e2e7;
  --code-current-line: #d5d6db;

  /* SYNTAX */
  --syn-keyword: #9854f1;
  --syn-string: #587539;
  --syn-comment: #848cb5;
  --syn-number: #b15c00;
  --syn-function: #2e7de9;
  --syn-type: #007197;
  --syn-variable: #343b58;
  --syn-operator: #006a83;
  --syn-punctuation: #6172b0;
  --syn-property: #007197;
  --syn-constant: #b15c00;
  --syn-tag: #f52a65;
  --syn-attr: #8c6c3e;
  --syn-builtin: #007197;
  --syn-regexp: #587539;

  /* BADGES / CHIPS */
  --badge-latest-bg: #587539;
  --badge-latest-fg: #ffffff;
  --badge-rc-bg: #8c6c3e;
  --badge-rc-fg: #ffffff;
  --hash-bg: #cdd0e0;
  --hash-fg: #007197;
  --tag-bg: #cdd0e0;
  --tag-fg: #343b58;

  /* FILE TREE */
  --tree-folder: #2e7de9;
  --tree-file: #343b58;
  --tree-current-bg: rgba(46,125,233,0.14);
  --tree-current-fg: #343b58;
  --tree-guide: #c4c8da;

  /* NAV CHROME */
  --chrome-bg: #d5d6db;
  --chrome-fg: #6172b0;
  --chrome-muted: #848cb5;
  --chrome-border: #c4c8da;
  --chrome-active-bg: #e1e2e7;
  --chrome-active-fg: #343b58;
  --chrome-accent: #2e7de9;
  --statusbar-bg: #d5d6db;
  --statusbar-fg: #6172b0;
  --statusbar-accent: #2e7de9;
  --mode-fg: #ffffff;

  /* TYPE / SHAPE */
  --font-ui: "JetBrains Mono", "Fira Code", "Hack", "Cascadia Code", ui-monospace, Menlo, Consolas, monospace;
  --font-mono: "JetBrains Mono", "Fira Code", "Hack", "Cascadia Code", ui-monospace, Menlo, Consolas, monospace;
  --font-content: "JetBrains Mono", "Fira Code", "Hack", "Cascadia Code", ui-monospace, Menlo, Consolas, monospace;
  --radius: 4px;
  --statusbar-h: 24px;
  --chrome-left: 0px;
}
