diff options
author | bd <bdunahu@operationnull.com> | 2025-09-01 22:24:58 -0400 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2025-09-01 22:24:58 -0400 |
commit | 0de4b011e244f88ceb2625f807b873122df56a49 (patch) | |
tree | 05b7087e7f03502871c88164d407278a605e6ea9 /.config | |
parent | 57ac5af334fde8e86f112debfa7225b703fcf0b2 (diff) |
new custom modus theme : red
Diffstat (limited to '.config')
-rw-r--r-- | .config/emacs/modules/bd--modeline.el | 2 | ||||
-rw-r--r-- | .config/emacs/modules/bd--themes.el | 29 |
2 files changed, 17 insertions, 14 deletions
diff --git a/.config/emacs/modules/bd--modeline.el b/.config/emacs/modules/bd--modeline.el index 5d2af9e..d6aad23 100644 --- a/.config/emacs/modules/bd--modeline.el +++ b/.config/emacs/modules/bd--modeline.el @@ -22,7 +22,7 @@ (defvar-local bd/buffer-identification-mode-line '(:eval (format "%s" (propertize (buffer-name) 'face (if (mode-line-window-selected-p) - 'font-lock-keyword-face + 'diff-error 'mode-line-inactive)))) "Formats the modeline-buffer-name.") diff --git a/.config/emacs/modules/bd--themes.el b/.config/emacs/modules/bd--themes.el index 11d04f4..0bf0cf4 100644 --- a/.config/emacs/modules/bd--themes.el +++ b/.config/emacs/modules/bd--themes.el @@ -30,19 +30,19 @@ and some other minor face changes." (3 variable-pitch regular 1.2) (t variable-pitch regular 1.2)) modus-themes-common-palette-overrides - '((bg-main "#141416") + '((bg-main "#130001") (bg-active bg-main) - (fg-main "#cff0f6") + (fg-main "#c6b7ad") (fg-active fg-main) - (fg-mode-line-active "#a6accd") - (bg-mode-line-active "#2e2a42") - (fg-mode-line-inactive "#676E95") - (bg-mode-line-inactive "#1f1f2f") + (fg-mode-line-active "#f65c5c") + (bg-mode-line-active "#390202") + (fg-mode-line-inactive "#f49494") + (bg-mode-line-inactive "#1d0203") (border-mode-line-active nil) (border-mode-line-inactive nil) (bg-tab-bar bg-main) (bg-tab-current bg-main) - (bg-tab-other "#3b3d62") + (bg-tab-other "#331515") (fg-heading-0 "#b2ebf2") (fg-heading-1 "#98fb98") @@ -50,22 +50,25 @@ and some other minor face changes." (fg-heading-3 "#ff7f50") (fg-heading-4 "#ffd700") - (fg-prompt "#ca65e3") + (fg-prompt "#c92724") (bg-prompt unspecified) - (bg-region "#3C435E") + (bg-region "#8a050a") (fg-region "#fffff0") + (bg-hl-line "#432020") + (fg-line-number-active fg-main) (fg-line-number-inactive "#a9a9a9") (bg-line-number-active unspecified) - (bg-line-number-inactive "#292939") + (bg-line-number-inactive "#331515") + (fringe bg-main) - (cursor "#b2ebf2") + (cursor "#f6213f") (fg-prose-verbatim "#af9fff") - (bg-prose-block-contents "#222b42") - (fg-prose-block-delimiter "#7C839E") + (bg-prose-block-contents "#290002") + (fg-prose-block-delimiter "#3c2728") (bg-prose-block-delimiter bg-prose-block-contents) (keyword "#4dd0e1") |