diff options
author | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-19 13:45:30 +0100 |
---|---|---|
committer | Artur Malabarba <bruce.connor.am@gmail.com> | 2015-04-19 13:45:30 +0100 |
commit | 48887789f077b0a9d810f6c9dc9694899d873514 (patch) | |
tree | 8e02f876e3547da91e12ffa3348ccc71284d79f8 | |
parent | 331c257711913027e277941a4b3b815e99d19244 (diff) |
Improve some faces
-rw-r--r-- | sx-button.el | 3 | ||||
-rw-r--r-- | sx-question-print.el | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/sx-button.el b/sx-button.el index 2292ac9..194c292 100644 --- a/sx-button.el +++ b/sx-button.el @@ -49,7 +49,8 @@ ;;; Face (defface sx-custom-button '((((type x w32 ns) (class color)) ; Like default mode line - :box (:line-width 2 :style released-button) + :box (:line-width 3 :style released-button) + :height 0.9 :background "lightgrey" :foreground "black")) "Face used on buttons such as \"Write an Answer\"." :group 'sx) diff --git a/sx-question-print.el b/sx-question-print.el index d76a6df..3dcb4ae 100644 --- a/sx-question-print.el +++ b/sx-question-print.el @@ -139,7 +139,10 @@ the editor's name." :group 'sx-question-mode) (defface sx-question-mode-accepted - '((t :foreground "ForestGreen" :inherit sx-question-mode-title)) + '((((background dark)) :foreground "LimeGreen" + :height 1.3 :inherit sx-question-mode-title) + (((background light)) :foreground "ForestGreen" + :height 1.3 :inherit sx-question-mode-title)) "Face used for accepted answers in the question buffer." :group 'sx-question-mode-faces) |