diff options
author | Johnson Denen <johnson.denen@gmail.com> | 2017-05-13 12:24:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-13 12:24:59 -0400 |
commit | 900ad445d1be72d651878a58fb33e5bf0c79b03f (patch) | |
tree | 0e0add4b5a4f5636020600d61938e6d05a64ce1a /lisp/mastodon.el | |
parent | 8cd83d70daa94c5387764c059419c518623099d8 (diff) | |
parent | 58e88a3c1389546e4eac3be9e3de6ed1060175f2 (diff) |
Merge pull request #125 from alexjgriffith/face-custom
Face custom
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r-- | lisp/mastodon.el | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index 0dd7f10..d17eba4 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -82,6 +82,26 @@ Use. e.g. \"%c\" for your locale's date and time format." :options '(provide-discover-context-menu) :group 'mastodon) +(defface mastodon-handle-face + '((t :inherit default)) + "Face used for user display names.") + +(defface mastodon-display-name-face + '((t :inherit warning)) + "Face used for user display names.") + +(defface mastodon-boosted-face + '((t :inherit highlight :weight bold)) + "Face to indicate that a toot is boosted.") + +(defface mastodon-boost-fave-face + '((t :inherit success)) + "Face to indicate that you have boosted or favourited a toot.") + +(defface mastodon-cw-face + '((t :inherit success)) + "Face used for content warning.") + (defun mastodon-version () "Message package version." (interactive) |