/* honeydew — cool light theme. Honeydew (#F0FFF0) page, near-white green
   surfaces, deep-green text and accent. Loads AFTER tokens.css and reassigns
   palette tokens only (type/spacing/layout stay default). */

:root {
  --bg:        #F0FFF0;
  --surface:   #F8FFF8;
  --surface-2: #E2F5E2;
  --border:    #C8E6C8;
  --text:      #1F3D2B;
  --muted:     #5E7F6A;
  --accent:    #2E8B57;
  --accent-h:  #1F6B41;
  --quote-bar: #57A877;
  --mark-bg:   #D2F0C8;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg:        #0C1710;
    --surface:   #122018;
    --surface-2: #1A2C20;
    --border:    #28412F;
    --text:      #D8EEDD;
    --muted:     #7FA188;
    --accent:    #6FBF8F;
    --accent-h:  #57A877;
    --quote-bar: #4E8F68;
    --mark-bg:   #1F4D2E;
  }
}
