カスタムテーマの一部を変更するにはどうすればよいですか?


21

Spacemacs(zenburn)にバンドルされている定義済みのカスタムテーマの1つを使用しています。

テーマの特定の部分を変更するには、たとえば、コメントに使用するフォントの色を変更するだけですか?


2
カスタムテーマではなく、カラーテーマを意味しますか?サードパーティを使用していない場合は、おそらくカスタムテーマを意味します。その場合は、質問を適宜編集してください。色とカスタムテーマを参照してください。color-theme.el
ドリュー

回答:


13

custom-theme-set-facesテーマが特定の顔をどのように表示するかを再定義するために使用することを好みます。たとえば、

(custom-theme-set-faces
 'zenburn
 '(font-lock-comment-face ((t (:foreground "#DFAF8F"))))
 '(font-lock-comment-delimiter-face ((t (:foreground "#DFAF8F")))))

の特定のケースでzenburnは、テーマ自体がさまざまな色とそれらを変数名にバインドするマクロを定義するため、上記を次のように記述できます。

(zenburn-with-color-variables
  (custom-theme-set-faces
   'zenburn
   `(font-lock-comment-face ((t (:foreground ,zenburn-orange))))
   `(font-lock-comment-delimiter-face ((t (:foreground ,zenburn-orange))))))

このコードをどこで書くべきですか?で.spacemacs
ChiseledAbs

1
わからない、ごめんなさい。Spacemacsは使用しません。ただし、原則として、必要なのは、zenburnテーマが読み込まれた後のある時点でコードが評価されるようにすることだけです。
アーロンハリス

8

spacemacsで、レイヤーをインストールしthemingます(https://github.com/syl20bnr/spacemacs/tree/master/layers/%2Bthemes/themingを参照

例えば、私はで次のように切り取られているdotspacemacs/user-init私の.spacemacsgruvboxとsolarizedライトのテーマの背景と行番号の色を調整するには:

  (setq theming-modifications '(
    ;; requires the theming layer
    (gruvbox
       (default :background "#1D2021" :foreground "#fdf4c1")
       (linum :background "#000000" :foreground "#878787")
       (fringe  :background "#000000")
       (linum-relative-current-face :inherit (shadow default) :background "#3C3836" :foreground "#ff0000")
       (font-lock-comment-face :slant italic)
    )
    (solarized-light
     (linum :background "#DBCDA7" :foreground "#40371F")
       (fringe :background "#DBCDA7")
       (font-lock-comment-face :slant italic)
       )
))

4

load-theme関数に特定のフェイスをオーバーライドするアドバイスを追加しました。これにより、テーマを選択するために通常どおりload-themeを使用し続けることができ、オーバーライドが自動的に適用されます。

(defadvice load-theme (after theme-set-overrides activate)
  "Set override faces for different custom themes."
  (dolist (theme-settings theme-overrides)
    (let ((theme (car theme-settings))
          (faces (cadr theme-settings)))
      (if (member theme custom-enabled-themes)
          (dolist (face faces)
            (custom-theme-set-faces theme face))))))

(defcustom theme-overrides nil
  "Association list of override faces to set for different custom themes.")

(defun alist-set (alist-symbol key value)
  "Set VALUE of a KEY in ALIST-SYMBOL."
  (set alist-symbol
        (cons (list key value) (assq-delete-all key (eval alist-symbol)))))

; override some settings of the ample-flat theme
(alist-set 'theme-overrides 'ample-flat '(
                                          (default ((t (:background "gray12" :foreground "#bdbdb3"))))
                                          (mode-line ((t (:background "cornsilk4" :foreground "#222" :inherit 'variable-pitch))))
                                          (outline-2 ((t (:inherit font-lock-keyword-face)))) ; blueish
                                          (outline-3 ((t (:inherit font-lock-comment-face)))) ; brownish
                                          (outline-4 ((t (:inherit font-lock-string-face)))) ; orangeish
                                          (org-table ((t (:inherit fixed-pitch :height 0.7 :foreground "#887"))))
                                          (org-formula ((t (:inherit org-table :foreground nil))))
                                          ))

それは機能し、インターフェースの一部として持つのは良いことですが、使用するテーマごとに関数を作成し、ロード後にcustom-theme-set-facesを呼び出すのがおそらく最も簡単です-

(defun ample-flat ()
  (interactive)
  (mapc #'disable-theme custom-enabled-themes) ; clear any existing themes
  (load-theme 'ample-flat t)
  (custom-theme-set-faces 'ample-flat 
                          '(default ((t (:background "gray12" :foreground "#bdbdb3"))))
                          '(mode-line ((t (:background "cornsilk4" :foreground "#222" :inherit 'variable-pitch))))
                          '(outline-2 ((t (:inherit font-lock-keyword-face)))) ; blueish
                          '(outline-3 ((t (:inherit font-lock-comment-face)))) ; brownish
                          '(outline-4 ((t (:inherit font-lock-string-face)))) ; orangeish
                          '(org-table ((t (:inherit fixed-pitch :height 0.7 :foreground "#887"))))
                          '(org-formula ((t (:inherit org-table :foreground nil))))
                          ))

(ample-flat)

0

私が編集したことの例、私がspacemacs-dark好きではないいくつかの太字を削除します:

  ;; on dotspacemacs/user-config:

  ;; configure spacemacs-dark theme, specifically removing bolds
  (let
      ((func "#d75fd7")
       (keyword "#4f97d7")
       (type "#ce537a"))

    (custom-theme-set-faces
     'spacemacs-dark
     `(font-lock-function-name-face ((t (:foreground ,func :inherit normal))))
     `(font-lock-keyword-face ((t (:foreground ,keyword :inherit normal))))
     `(font-lock-type-face ((t (:foreground ,type :inherit normal))))
     )
    )

0

使用SPC SPC custom-theme-visit-theme、検索gruvbox、編集を(load-file "~/.emacs.d/gruvbox-theme.el")行い、dotspacemacs/user-config関数に配置する方が簡単な場合があります。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.