summaryrefslogtreecommitdiff
path: root/.config/emacs/mango-theme.el
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-09-08 12:06:50 +0200
committerThomas Voss <mail@thomasvoss.com> 2024-09-08 12:07:32 +0200
commit98cbdb2271e93cf7b45bf5a89106f4353ca9bdfc (patch)
tree339b83b31351e515cedcd834c29b0ba8d5e2d049 /.config/emacs/mango-theme.el
parenta793342e47d2e282fe3ae4f554f7c6cefadfcffe (diff)
emacs: Add the new configuration
Diffstat (limited to '.config/emacs/mango-theme.el')
-rw-r--r--.config/emacs/mango-theme.el159
1 files changed, 159 insertions, 0 deletions
diff --git a/.config/emacs/mango-theme.el b/.config/emacs/mango-theme.el
new file mode 100644
index 0000000..d947062
--- /dev/null
+++ b/.config/emacs/mango-theme.el
@@ -0,0 +1,159 @@
+;;; mango-theme.el --- Just your average dark theme -*- lexical-binding: t; -*-
+
+;; Copyright © 2023–2024 Thomas Voss
+
+;; Author: Thomas Voss <mail@thomasvoss.com>
+;; Maintainer: Thomas Voss <mail@thomasvoss.com>
+;; URL: https://git.thomasvoss.com/dotfiles
+
+;;; License:
+
+;; Permission to use, copy, modify, and/or distribute this software for any
+;; purpose with or without fee is hereby granted.
+;;
+;; The software is provided ‘as is’ and the author disclaims all warranties with
+;; regard to this software including all implied warranties of merchantability
+;; and fitness. In no event shall the author be liable for any special, direct,
+;; indirect, or consequential damages or any damages whatsoever resulting from
+;; loss of use, data or profits, whether in an action of contract, negligence or
+;; other tortious action, arising out of or in connection with the use or
+;; performance of this software.
+
+;;; Commentary:
+
+;; TODO
+
+;;; Code:
+
+(deftheme mango
+ "Just another dark theme because none of the other options out there were just
+as I would like them. Why try to fix someone elses themes when I make my own?")
+
+(defun mango-theme--get-color (name)
+ "Get the RGB value of the color NAME from ‘mango-theme-palette’"
+ (cadr (assq name mango-theme-palette)))
+
+(defmacro mango-theme--generate-set-faces (&rest body)
+ "A macro to provide a much simpler syntax than what is expected by
+‘custom-theme-set-faces’. This is possible because I only run Emacs
+graphically, so I shouldn’t need to have multiple specs per face.
+
+\(fn SPEC...)"
+ (declare (indent 0))
+ (let ((ret '('mango custom-theme-set-faces)))
+ (dolist (spec body)
+ (add-to-list 'ret `(backquote ,(list (car spec) `((((type graphic)) ,(cdr spec)))))))
+ (reverse ret)))
+
+(defconst mango-theme-palette
+ '((foreground "#C5C8C6")
+ (background "#2B303B")
+ (background-cool "#363C4A")
+ (background-faint "#414859")
+ (middleground "#4F5561")
+ (disabled "#999999")
+ (pale-azure "#9CDCFE")
+ (celestial-blue "#569CD6")
+ (violet "#E57AE5")
+ (khaki "#F0E68C")
+ (lime "#B8F182")
+ (orange "#F1B282")
+ (pink "#ED97F5")
+ (spanish-red "#E60026"))
+ "The color palette used throughout the ‘mango’ theme.")
+
+(mango-theme--generate-set-faces
+ ;; Standard Stuff
+ (default
+ :foreground ,(mango-theme--get-color 'foreground)
+ :background ,(mango-theme--get-color 'background))
+ (fringe
+ :inherit default)
+
+ ;; Lines
+ (hl-line
+ :background ,(mango-theme--get-color 'background-faint))
+ (region
+ :background ,(mango-theme--get-color 'middleground))
+ (header-line
+ :background ,(mango-theme--get-color 'middleground))
+ (mode-line
+ :inherit header-line)
+ (mode-line-inactive
+ :background ,(mango-theme--get-color 'background-cool)
+ :weight light)
+
+ ;; Line Numbers
+ (line-number
+ :foreground ,(mango-theme--get-color 'background-faint)
+ :background ,(mango-theme--get-color 'background))
+ (line-number-current-line
+ :foreground ,(mango-theme--get-color 'orange)
+ :background ,(mango-theme--get-color 'background)
+ :weight bold)
+
+ ;; Documentation
+ (font-lock-comment-face
+ :foreground ,(mango-theme--get-color 'disabled))
+ (font-lock-doc-face
+ :inherit font-lock-comment-face)
+
+ ;; Core Language
+ (font-lock-keyword-face
+ :foreground ,(mango-theme--get-color 'violet))
+ (font-lock-type-face
+ :foreground ,(mango-theme--get-color 'celestial-blue))
+ (font-lock-builtin-face
+ :inherit font-lock-preprocessor-face)
+
+ ;; Function-likes
+ (font-lock-function-name-face
+ :foreground ,(mango-theme--get-color 'khaki))
+ (font-lock-preprocessor-face
+ :foreground ,(mango-theme--get-color 'pink)
+ :weight bold)
+
+ ;; Variables
+ (font-lock-variable-name-face
+ :foreground ,(mango-theme--get-color 'pale-azure))
+ (font-lock-constant-face
+ :inherit font-lock-variable-name-face
+ :weight bold)
+
+ ;; Org Mode
+ (org-code
+ :foreground ,(mango-theme--get-color 'orange))
+ (org-verbatim
+ :foreground ,(mango-theme--get-color 'lime))
+ (org-block
+ :background ,(mango-theme--get-color 'background-cool))
+ (org-hide
+ :foreground ,(mango-theme--get-color 'background))
+ (org-quote
+ :inherit org-block
+ :slant italic)
+
+ ;; Info Page
+ (Info-quoted
+ :inherit default)
+
+ ;; Magit
+ (magit-diff-hunk-heading
+ :background ,(mango-theme--get-color 'background-cool))
+ (magit-diff-hunk-heading-highlight
+ :background ,(mango-theme--get-color 'middleground))
+ (magit-diff-context-highlight
+ :inherit hl-line)
+ (magit-section-highlight
+ :inherit hl-line)
+
+ (git-commit-summary
+ :foreground ,(mango-theme--get-color 'khaki))
+ (git-commit-overlong-summary
+ :foreground ,(mango-theme--get-color 'foreground)
+ :background ,(mango-theme--get-color 'spanish-red)
+ :weight bold)
+
+ ;; Vertico
+ (vertico-current
+ :inherit hl-line))