diff options
Diffstat (limited to 'emacs/custom/fcuny-ui.el')
-rw-r--r-- | emacs/custom/fcuny-ui.el | 62 |
1 files changed, 32 insertions, 30 deletions
diff --git a/emacs/custom/fcuny-ui.el b/emacs/custom/fcuny-ui.el index b8c5017..5776459 100644 --- a/emacs/custom/fcuny-ui.el +++ b/emacs/custom/fcuny-ui.el @@ -22,36 +22,35 @@ (use-package diminish :ensure t) -(use-package modus-themes - :ensure t - :init - (setq modus-themes-italic-constructs t - modus-themes-bold-constructs t - modus-themes-lang-checkers '(text-also background) - modus-themes-mode-line '(3d intense) - modus-themes-diffs '(desaturated) - modus-themes-fringes nil - modus-themes-paren-match '(intense) - modus-themes-syntax '(yellow-comments green-strings) - modus-themes-hl-line '(accented intense) - modus-themes-prompts '(italic) - modus-themes-region '(bg-only no-extend) - modus-themes-org-blocks '(tinted-background) - modus-themes-org-agenda '((event . (accented italic)) - (scheduled . uniform)) - modus-themes-headings '((1 . (background)) - (2 . (rainbow)) - (3 . (rainbow no-bold))) - modus-themes-variable-pitch-ui nil - modus-themes-variable-pitch-headings nil - modus-themes-scale-headings nil) - - ;; Load the theme files before enabling a theme (else you get an error). - (modus-themes-load-themes) - :config - (setq modus-themes-operandi-color-overrides - '((bg-main . "#fffff8"))) - (modus-themes-load-operandi)) +;; (use-package modus-themes +;; :init +;; (setq modus-themes-italic-constructs t +;; modus-themes-bold-constructs t +;; modus-themes-lang-checkers '(text-also background) +;; modus-themes-mode-line '(3d intense) +;; modus-themes-diffs '(desaturated) +;; modus-themes-fringes nil +;; modus-themes-paren-match '(intense) +;; modus-themes-syntax '(yellow-comments green-strings) +;; modus-themes-hl-line '(accented intense) +;; modus-themes-prompts '(italic) +;; modus-themes-region '(bg-only no-extend) +;; modus-themes-org-blocks '(tinted-background) +;; modus-themes-org-agenda '((event . (accented italic)) +;; (scheduled . uniform)) +;; modus-themes-headings '((1 . (background)) +;; (2 . (rainbow)) +;; (3 . (rainbow no-bold))) +;; modus-themes-variable-pitch-ui nil +;; modus-themes-variable-pitch-headings nil +;; modus-themes-scale-headings nil) + +;; ;; Load the theme files before enabling a theme (else you get an error). +;; (modus-themes-load-themes) +;; :config +;; (setq modus-themes-operandi-color-overrides +;; '((bg-main . "#fffff8"))) +;; (modus-themes-load-operandi)) (use-package frame :config @@ -165,4 +164,7 @@ (add-hook 'help-mode-hook #'visual-line-mode) +;; Better than the default. +(load-theme 'tango-dark t) + (provide 'fcuny-ui) |