3

I'm trying to change the color of this part of the UI (top heading bar) in my theme file:

enter image description here

Does this have a specific name that I could use to change its color?

Other parts of the interface are referred to like so, but this element isn't there:

   `(cursor ((t (:background ,atom-one-dark-accent))))
   `(fringe ((t (:background ,atom-one-dark-bg))))
   `(region ((t (:background ,atom-one-dark-gray))))
   `(highlight ((t (:background ,atom-one-dark-gray))))
   `(hl-line ((t (:background ,atom-one-dark-bg-hl))))
   `(vertical-border ((t (:foreground ,atom-one-dark-mono-3))))
   `(secondary-selection ((t (:background ,atom-one-dark-bg-1))))
   `(query-replace ((t (:inherit (isearch)))))
   `(minibuffer-prompt ((t (:foreground ,atom-one-dark-silver))))
Drew
  • 75,699
  • 9
  • 109
  • 225
Rtsne42
  • 489
  • 5
  • 13

1 Answers1

3

Yes, it's the header line.

You can customize its appearance using M-x customize-face header-line.

See also the Elisp manual, node Header Lines.

Drew
  • 75,699
  • 9
  • 109
  • 225