diff options
-rw-r--r-- | yeetube-face.el | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/yeetube-face.el b/yeetube-face.el index 9847e91..ed0a375 100644 --- a/yeetube-face.el +++ b/yeetube-face.el @@ -34,8 +34,8 @@ "Face used for the video published date.") (defface yeetube-face-duration - '((((class color) (background light)) (:foreground "#525254")) - (((class color) (background dark)) (:foreground "#525254"))) + '((((class color) (background light)) (:foreground "#e2c770")) + (((class color) (background dark)) (:foreground "#e2c770"))) "Face used for the video duration.") (defface yeetube-face-view-count @@ -48,6 +48,11 @@ (((class color) (background dark)) (:foreground "#fd971f"))) "Face used for video title.") +(defface yeetube-face-channel + '((((class color) (background light)) (:foreground "#b6e63e")) + (((class color) (background dark)) (:foreground "#b6e63e"))) + "Face used for video title.") + (provide 'yeetube-face) ;;; yeetube-face.el ends here |