aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-09-27 15:23:27 +0300
committerThanos Apollo <[email protected]>2023-09-27 15:23:27 +0300
commitf3a3428cd149b8001932bc4dff460a30654f40b4 (patch)
treeecc8cd85ea5a00dba9540cc79567212a49bc7c34
parentc8e97645693237bcd9a988783c3431b63501a9a7 (diff)
[Feature] Add yeetube-face
-rw-r--r--yeetube-face.el53
1 files changed, 53 insertions, 0 deletions
diff --git a/yeetube-face.el b/yeetube-face.el
new file mode 100644
index 0000000..9847e91
--- /dev/null
+++ b/yeetube-face.el
@@ -0,0 +1,53 @@
+;;; yeetube-face.el --- Yeetube Face -*- lexical-binding: t; -*-
+
+;; Copyright (C) 2023 Thanos Apollo
+
+;; Author: Thanos Apollo <[email protected]>
+;; Keywords: extensions youtube videos
+;; URL: https://git.thanosapollo.com/yeetube
+;; Version: 0.0.1
+
+;; Package-Requires: ((emacs "27.2"))
+
+;; This program is free software; you can redistribute it and/or modify
+;; it under the terms of the GNU General Public License as published by
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
+
+;; This program is distributed in the hope that it will be useful,
+;; but WITHOUT ANY WARRANTY; without even the implied warranty of
+;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;; GNU General Public License for more details.
+
+;; You should have received a copy of the GNU General Public License
+;; along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+;;; Commentary:
+
+;; This package provides yeetube faces
+
+;;; Code:
+
+(defface yeetube-face-header-query
+ '((((class color) (background light)) (:foreground "#b6e63e"))
+ (((class color) (background dark)) (:foreground "#b6e63e")))
+ "Face used for the video published date.")
+
+(defface yeetube-face-duration
+ '((((class color) (background light)) (:foreground "#525254"))
+ (((class color) (background dark)) (:foreground "#525254")))
+ "Face used for the video duration.")
+
+(defface yeetube-face-view-count
+ '((((class color) (background light)) (:foreground "#fb2874"))
+ (((class color) (background dark)) (:foreground "#fb2874")))
+ "Face used for the video view count.")
+
+(defface yeetube-face-title
+ '((((class color) (background light)) (:foreground "#fd971f"))
+ (((class color) (background dark)) (:foreground "#fd971f")))
+ "Face used for video title.")
+
+(provide 'yeetube-face)
+
+;;; yeetube-face.el ends here