more tweaks for fonts and colors
HEAD main1 files changed, 11 insertions, 2 deletions
diff --git a/config/init-ui.el b/config/init-ui.el
index b9f3fbd..ea3728b 100644
--- a/config/init-ui.el
+++ b/config/init-ui.el
@@ -53,8 +53,17 @@
;; | 数字 | アルファベット | 日本語 | 絵文字 |
;; | 0123 | abcdefghijklmn | あいう | 🍎🍎🍎 |
-(set-face-attribute 'default nil :family "Source Code Pro" :height 150)
-(set-face-attribute 'variable-pitch nil :family "Go" :height 150)
+(set-face-attribute 'default nil :family "Source Code Pro" :height 180)
+(set-face-attribute 'variable-pitch nil :family "Go" :height 170)
+
+(use-package ef-themes
+ :ensure t
+ :custom
+ (ef-themes-region '(intense no-extend neutral))
+ (ef-themes-disable-other-themes t)
+ (ef-themes-to-toggle '(ef-melissa-light ef-maris-light))
+ :init
+ (ef-themes-select 'ef-maris-light))
(provide 'init-ui)
;;; init-ui.el ends here
|