/* cornsilk — warm light theme. Cornsilk (#FFF8DC) page, near-white warm
   surfaces, dark-brown text, amber accent. Loads AFTER tokens.css and
   reassigns palette tokens only (type/spacing/layout stay default). */

:root {
  --bg:        #FFF8DC;
  --surface:   #FFFDF4;
  --surface-2: #F7EFD2;
  --border:    #E8DCB4;
  --text:      #4A3B28;
  --muted:     #8A7752;
  --accent:    #C28E2E;
  --accent-h:  #A1741F;
  --quote-bar: #D4A847;
  --mark-bg:   #FBE9A8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #1A1508;
    --surface:   #231D0E;
    --surface-2: #2D2614;
    --border:    #3D331C;
    --text:      #F0E6C8;
    --muted:     #A6955F;
    --accent:    #DBB05A;
    --accent-h:  #C28E2E;
    --quote-bar: #B08A3E;
    --mark-bg:   #6B5A1F;
  }
}
