diff options
author | Thanos Apollo <[email protected]> | 2023-09-28 08:16:02 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-09-28 08:16:02 +0300 |
commit | 5822438ec939285fe7401225748208eda236483a (patch) | |
tree | 697cf030350858950aad4e387a96472fb81d8b5c | |
parent | ba7e4b64ff6e697b3c6c5ef97f7e013a68eb7b40 (diff) |
yeetube-face: Update face-duration & add face-channel
-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 |