怎么改变 agenda view 字体大小

在 spacemacs 里打开 agenda view,today下的 task 字体会比其他日子的大,我挺不喜欢这个设定的,不知道怎么去掉,我 Google 了很久,并没有看到跟 org 有关的 face 设定,只找到一个不同 priority 不同颜色的设定,但是跟 agenda 也没关系。不知道有没有人会

看上图 会发现 today 的 task 的字体比其他的大很多,请大家出出主意 有没有办法把它变成一样的字体呀,万分感谢

M-x describe-face 查看光标下的 Face,Theme 通常会修改 Face。你可以自己修改 Face,也有些 Theme 或许提供了一些选项供用户修改,如对于 spacemacs-theme Theme,用 M-x customize-group spacemacs-theme 能看到所有的选项。

感谢提点,我看了 spacemacs-theme 的 customization 里面没有我想要的那个 variable,后来看了 describe-face,不知道怎么查看光标下的face,结果发现原来那个 default 就是光标下的 face 啊 真好用,谢谢了,以下是我让 agenda 所有字体全部一样大小的 config

(custom-set-faces
 '(org-agenda-done ((t (:foreground "#86dc2f" :height 1.0)))))

(custom-set-faces
 '(org-scheduled-today ((t (:foreground "#bc6ec5" :height 1.0)))))