]> git.eshelyaron.com Git - emacs.git/commitdiff
Make default Haiku tool bar color match system preferences
authorPo Lu <luangruo@yahoo.com>
Mon, 25 Apr 2022 12:26:44 +0000 (12:26 +0000)
committerPo Lu <luangruo@yahoo.com>
Mon, 25 Apr 2022 12:27:15 +0000 (12:27 +0000)
* lisp/faces.el (tool-bar): Use system bar color as the default
tool-bar background color on Haiku.

lisp/faces.el

index 962501ee7cc0ba2e9876d25184d1b68516fce6df..6529374668ad239b7e147da497c61f75d6dd0ef2 100644 (file)
@@ -2873,7 +2873,10 @@ Note: Other faces cannot inherit from the cursor face."
   '((default
      :box (:line-width 1 :style released-button)
      :foreground "black")
-    (((type x w32 ns haiku pgtk) (class color))
+    (((type haiku))
+     :foreground "B_MENU_ITEM_TEXT_COLOR"
+     :background "B_MENU_BACKGROUND_COLOR")
+    (((type x w32 ns pgtk) (class color))
      :background "grey75")
     (((type x) (class mono))
      :background "grey"))