diff options
| author | Ibrahim Muftee <ibrahim@muftee.net> | 2026-07-09 04:19:20 -0500 |
|---|---|---|
| committer | Ibrahim Muftee <ibrahim@muftee.net> | 2026-07-09 04:19:20 -0500 |
| commit | 18b58e6a47a55172b8bcee1601d5afaea0136856 (patch) | |
| tree | 5bf7c8257c0c3fe919ba7b8fd371622fb612856e /dot_config/doom/themes/doom-rose-pine-moon-theme.el | |
| parent | 6c1a2d7d1a76e3cdd023a3c680191c47e69be70b (diff) | |
feat: add doom emacs
Diffstat (limited to 'dot_config/doom/themes/doom-rose-pine-moon-theme.el')
| -rw-r--r-- | dot_config/doom/themes/doom-rose-pine-moon-theme.el | 244 |
1 files changed, 244 insertions, 0 deletions
diff --git a/dot_config/doom/themes/doom-rose-pine-moon-theme.el b/dot_config/doom/themes/doom-rose-pine-moon-theme.el new file mode 100644 index 0000000..2fb50e4 --- /dev/null +++ b/dot_config/doom/themes/doom-rose-pine-moon-theme.el @@ -0,0 +1,244 @@ +;;; doom-rose-pine-moon-theme.el --- A medium port of Rosé Pine Moon theme -*- lexical-binding: t; no-byte-compile: t; -*- +;; +;; Author: mvllow +;; Ported by: donniebreve +;; Keywords: custom themes, faces +;; Homepage: https://github.com/donniebreve/rose-pine-doom-emacs +;; Package-Requires: ((emacs "25.1") (cl-lib "0.5") (doom-themes "2.2.1")) +;; +;;; Commentary: +;; +;; Thanks to mvllow (https://github.com/rose-pine) +;; Thanks to hlissner (https://github.com/doomemacs/themes) +;; +;;; Code: + +(require 'doom-themes) + +;;; Variables +(defgroup doom-rose-pine-moon-theme nil + "Options for the `doom-rose-pine-moon' theme." + :group 'doom-themes) + +(defcustom doom-rose-pine-moon-brighter-modeline nil + "If non-nil, more vivid colors will be used to style the mode-line." + :group 'doom-rose-pine-moon-theme + :type 'boolean) + +(defcustom doom-rose-pine-moon-brighter-comments nil + "If non-nil, comments will be highlighted in more vivid colors." + :group 'doom-rose-pine-moon-theme + :type 'boolean) + +(defcustom doom-rose-pine-moon-brighter-text nil + "If non-nil, default text will be brighter." + :group 'doom-rose-pine-moon-theme + :type 'boolean) + +(defcustom doom-rose-pine-moon-padded-modeline doom-themes-padded-modeline + "If non-nil, adds a 4px padding to the mode-line. Can be an integer to determine the exact padding." + :group 'doom-rose-pine-moon-theme + :type '(choice integer boolean)) + +;;; Theme definition +(def-doom-theme doom-rose-pine-moon + "A medium port of Rosé Pine Moon theme" + + ;; Main theme colors + ( + ;; name default 256 16 + (base '("#232136" "#232136" "black" )) + (surface '("#2a273f" "#2a273f" "brightblack" )) + (overlay '("#393552" "#393552" "brightblack" )) + (muted '("#6e6a86" "#6e6a86" "brightblack" )) + (subtle '("#908caa" "#908caa" "brightblack" )) + (text '("#e0def4" "#e0def4" "brightblack" )) + (love '("#eb6f92" "#eb6f92" "red" )) + (gold '("#f6c177" "#f6c177" "white" )) + (rose '("#ea9a97" "#ea9a97" "white" )) + (pine '("#3e8fb0" "#3e8fb0" "white" )) + (foam '("#9ccfd8" "#9ccfd8" "white" )) + (iris '("#c4a7e7" "#c4a7e7" "white" )) + (highlightL '("#2a283e" "#2a283e" "white" )) + (highlightM '("#44415a" "#44415a" "white" )) + (highlightH '("#56526e" "#56526e" "white" )) + + ;; Variables required by doom theme + ;; These are required by doom theme and used in various places + (bg base) + (fg text) + ;; These are off-color variants of bg/fg, used primarily for `solaire-mode', + ;; but can also be useful as a basis for subtle highlights (e.g. for hl-line + ;; or region), especially when paired with the `doom-darken', `doom-lighten', + ;; and `doom-blend' helper functions. + (bg-alt surface) + (fg-alt text) + ;; These should represent a spectrum from bg to fg, where base0 is a starker + ;; bg and base8 is a starker fg. For example, if bg is light grey and fg is + ;; dark grey, base0 should be white and base8 should be black. + (base0 base) + (base1 surface) + (base2 highlightL) + (base3 overlay) + (base4 highlightM) + (base5 highlightH) + (base6 muted) + (base7 subtle) + (base8 text) + (grey muted) + (red love) + (orange gold) + (green pine) + (teal foam) + (yellow rose) + (pink rose) + (blue pine) + (dark-blue pine) + (magenta iris) + (violet iris) + (cyan foam) + (dark-cyan pine) + ;; Variables required by doom theme ends here + + ;; Required face categories for syntax highlighting + (highlight subtle) ; cursor + (selection base) ; can't figure out where this is used + (region overlay) ; visual selection + (vertical-bar surface) ; window split + + (comments (if doom-rose-pine-moon-brighter-comments subtle muted)) + (doc-comments (if doom-rose-pine-moon-brighter-comments subtle muted)) + + (builtin pine) + (constants iris) + (functions pine) + (keywords pine) + (methods foam) + (numbers rose) + (operators gold) + (strings gold) + (type rose) + (variables iris) + + (error love) + (success foam) + (warning gold) + + (vc-added foam) + (vc-deleted love) + (vc-modified gold) + + ;; Other categories + ;; Modeline + (modeline-bg (if doom-rose-pine-moon-brighter-modeline overlay surface)) + (modeline-fg text) + (modeline-bg-alt (if doom-rose-pine-moon-brighter-modeline muted overlay)) + (modeline-fg-alt text) ; should this be darker or lighter? + (modeline-bg-inactive base) + (modeline-fg-inactive subtle) + (modeline-bg-inactive-alt base) + (modeline-fg-inactive-alt subtle) + (modeline-pad + (when doom-rose-pine-moon-padded-modeline + if (integerp doom-rose-pine-moon-padded-modeline) doom-rose-pine-padded-modeline 4))) + + ;; Base theme face overrides + ( + ;; Font + ((font-lock-comment-face &override) + :slant 'italic + :background (if doom-rose-pine-moon-brighter-comments (doom-blend teal base 0.07))) + ((font-lock-type-face &override) :slant 'italic) + ((font-lock-builtin-face &override) :slant 'italic) + ((font-lock-function-name-face &override) :foreground type) + ((font-lock-keyword-face &override) :weight 'bold) + ((font-lock-constant-face &override) :weight 'bold) + + ;; Highlight line + (hl-line + :background surface) + + ;; Line numbers + ((line-number &override) :foreground muted) + ((line-number-current-line &override) :foreground text) + + ;; Mode line + (mode-line + :background modeline-bg + :foreground modeline-fg + :box (if modeline-pad `(:line-width ,modeline-pad :color ,modeline-bg))) + (mode-line-inactive + :background modeline-bg-inactive + :foreground modeline-fg-inactive + :box (if modeline-pad `(:line-width ,modeline-pad :color ,modeline-bg-inactive))) + (mode-line-emphasis + :foreground (if doom-rose-pine-moon-brighter-modeline text subtle)) + + ;; Company + (company-tooltip-selection :background blue :foreground muted) + + ;; CSS mode <built-in> / scss-mode + (css-proprietary-property :foreground orange) + (css-property :foreground green) + (css-selector :foreground green) + + ;; Doom mode line + (doom-modeline-bar :background green) ; The line to the left + (doom-modeline-evil-emacs-state :foreground magenta) ; The dot color when in emacs mode + (doom-modeline-evil-normal-state :foreground green) ; The dot color when in normal mode + (doom-modeline-evil-visual-state :foreground magenta) ; The dot color when in visual mode + (doom-modeline-evil-insert-state :foreground orange) ; The dot color when in insert mode + + ;; Helm + (helm-selection :foreground base :weight 'bold :background blue) + + ;; Ivy + (ivy-current-match :background overlay :distant-foreground fg) + (ivy-minibuffer-match-face-1 :foreground pine :background nil :weight 'bold) + (ivy-minibuffer-match-face-2 :foreground iris :background nil :weight 'bold) + (ivy-minibuffer-match-face-3 :foreground gold :background nil :weight 'bold) + (ivy-minibuffer-match-face-4 :foreground rose :background nil :weight 'bold) + (ivy-minibuffer-match-highlight :foreground magenta :weight 'bold) + (ivy-posframe :background modeline-bg-alt) + + ;; Markdown mode + (markdown-markup-face :foreground text) + (markdown-header-face :inherit 'bold :foreground red) + ((markdown-code-face &override) :background surface) + + ;; org <built-in> + (org-block :background (doom-blend yellow bg 0.04) :extend t) + (org-block-background :background (doom-blend yellow bg 0.04)) + (org-block-begin-line :background (doom-blend yellow bg 0.08) :foreground comments :extend t) + (org-block-end-line :background (doom-blend yellow bg 0.08) :foreground comments :extend t) + (org-level-1 :foreground gold) + (org-level-2 :foreground rose) + (org-level-3 :foreground pine) + (org-level-4 :foreground iris) + (org-level-5 :foreground gold) + (org-level-6 :foreground rose) + (org-level-7 :foreground pine) + (org-level-8 :foreground iris) + + ;; Solaire mode line + (solaire-mode-line-face + :inherit 'mode-line + :background modeline-bg-alt + :box (if modeline-pad `(:line-width ,modeline-pad :color ,modeline-bg-alt))) + (solaire-mode-line-inactive-face + :inherit 'mode-line-inactive + :background modeline-bg-inactive-alt + :box (if modeline-pad `(:line-width ,modeline-pad :color ,modeline-bg-inactive-alt))) + + ;; Widget + (widget-field :foreground fg :background muted) + (widget-single-line-field :foreground fg :background muted) + + ;; Swiper + (swiper-line-face :background highlightM) + (swiper-match-face-1 :inherit 'ivy-minibuffer-match-face-1) + (swiper-match-face-2 :inherit 'ivy-minibuffer-match-face-2) + (swiper-match-face-3 :inherit 'ivy-minibuffer-match-face-3) + (swiper-match-face-4 :inherit 'ivy-minibuffer-match-face-4))) + +;;; doom-rose-pine-moon-theme.el ends here |
