How to customize Emacs interface, in particular, tab fonts in Windows?

How to customize Emacs interface, in particular tab fonts? I included a screenshot of how bad they look on Windows.

enter image description here

+6
source share
2 answers

Assuming you are using Tabbar , you can customize the fonts by running Mx customize-face — you can either press Enter to configure them all, or use the completion tab to select one face.

The following faces are defined in tabbar.el:

  • Tabbar button
  • TabBar Highlight Button
  • TabBar by default
  • TabBar Highlight
  • TabBar selected
  • TabBar Separator
  • TabBar-Unselected
+2
source
 ;; tabbar (require 'tabbar) (tabbar-mode) ;; example tabbar coloring code... (set-face-attribute 'tabbar-default nil :background "gray60") (set-face-attribute 'tabbar-unselected nil :background "gray85" :foreground "gray30" :box nil) (set-face-attribute 'tabbar-selected nil :background "#f2f2f6" :foreground "black" :box nil) (set-face-attribute 'tabbar-button nil :box '(:line-width 1 :color "gray72" :style released-button)) (set-face-attribute 'tabbar-separator nil :height 0.7) 
+2
source

Source: https://habr.com/ru/post/898950/


All Articles