aboutsummaryrefslogtreecommitdiffstats
path: root/elpa/doom-themes-20220504.1557/doom-rouge-theme.el
diff options
context:
space:
mode:
Diffstat (limited to 'elpa/doom-themes-20220504.1557/doom-rouge-theme.el')
-rw-r--r--elpa/doom-themes-20220504.1557/doom-rouge-theme.el191
1 files changed, 191 insertions, 0 deletions
diff --git a/elpa/doom-themes-20220504.1557/doom-rouge-theme.el b/elpa/doom-themes-20220504.1557/doom-rouge-theme.el
new file mode 100644
index 0000000..aa0aa96
--- /dev/null
+++ b/elpa/doom-themes-20220504.1557/doom-rouge-theme.el
@@ -0,0 +1,191 @@
+;;; doom-rouge-theme.el --- ported from Rouge Theme -*- lexical-binding: t; no-byte-compile: t; -*-
+(require 'doom-themes)
+
+;;
+(defgroup doom-rouge-theme nil
+ "Options for the `doom-rouge' theme."
+ :group 'doom-themes)
+
+(defcustom doom-rouge-brighter-comments nil
+ "If non-nil, comments will be highlighted in more vivid colors."
+ :group 'doom-rouge-theme
+ :type 'boolean)
+
+(defcustom doom-rouge-brighter-tabs t
+ "If non-nil, tabs will a more vivid background color."
+ :group 'doom-rouge-theme
+ :type 'boolean)
+
+(defcustom doom-rouge-comment-bg doom-rouge-brighter-comments
+ "If non-nil, comments will have a subtle, darker background. Enhancing their
+legibility."
+ :group 'doom-rouge-theme
+ :type 'boolean)
+
+(defcustom doom-rouge-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-rouge-theme
+ :type '(choice integer boolean))
+
+;;
+(def-doom-theme doom-rouge
+ "A dark theme ported from VS Code's Rouge."
+
+ ;; name default 256 16
+ ((bg '("#172030" nil nil )) ;; modified
+ (bg-alt '("#172030" nil nil ))
+ (base0 '("#070A0E" "black" "black" ))
+ (base1 '("#0E131D" "#1e1e1e" "brightblack" ))
+ (base2 '("#151D2B" "#2e2e2e" "brightblack" ))
+ (base3 '("#1F2A3F" "#262626" "brightblack" ))
+ (base4 '("#5D636E" "#3f3f3f" "brightblack" ))
+ (base5 '("#64727d" "#64727d" "brightblack" ))
+ (base6 '("#B16E75" "#6b6b6b" "brightblack" ))
+ (base7 '("#E8E9EB" "#979797" "brightblack" ))
+ (base8 '("#F0F4FC" "#dfdfdf" "white" ))
+ (fg '("#FAFFF6" "#bbb" "white" ))
+ (fg-alt '("#A7ACB9" "#bfbfbf" "brightwhite" ))
+
+ (grey base5)
+ (red '("#c6797e" "#c6797e" "red" ))
+ (light-red '("#DB6E8F" "#DB6E8F" "red" ))
+ (orange '("#eabe9a" "#eabe9a" "brightred" ))
+ (green '("#A3B09A" "#A3B9A4" "green" ))
+ (teal '("#7ea9a9" "#7ea9a9" "brightgreen" ))
+ (yellow '("#F7E3AF" "#F7E3AF" "yellow" ))
+ (blue '("#6e94b9" "#6e94b9" "brightblue" ))
+ (dark-blue '("#1E6378" "#1E6378" "blue" ))
+ (magenta '("#b18bb1" "#b18bb1" "magenta" ))
+ (salmon '("#F9B5AC" "#F9B5AC" "orange" ))
+ (violet '("#5D80AE" "#5D80AE" "brightmagenta"))
+ (cyan '("#88C0D0" "#88C0D0" "brightcyan" ))
+ (dark-cyan '("#507681" "#507681" "cyan" ))
+
+ ;; face categories -- required for all themes
+ (highlight base6)
+ (vertical-bar (doom-darken base1 0.2))
+ (selection base4)
+ (builtin light-red)
+ (comments grey)
+ (doc-comments green)
+ (constants red)
+ (functions salmon)
+ (keywords magenta)
+ (methods light-red)
+ (operators magenta)
+ (type red)
+ (strings green)
+ (variables red)
+ (numbers orange)
+ (region base4)
+ (error red)
+ (warning yellow)
+ (success green)
+ (vc-modified orange)
+ (vc-added green)
+ (vc-deleted red)
+
+ ;; custom categories
+ (hidden `(,(car bg) "black" "black"))
+ (-modeline-pad
+ (when doom-rouge-padded-modeline
+ (if (integerp doom-rouge-padded-modeline) doom-rouge-padded-modeline 4)))
+
+ (tabs-bg (if doom-rouge-brighter-tabs base6 bg))
+ (tabs-fg (if doom-rouge-brighter-tabs base8 fg))
+ (tabs-bar-bg (if doom-rouge-brighter-tabs bg red))
+ (tabs-marker (if doom-rouge-brighter-tabs base8 highlight))
+
+ (modeline-fg nil)
+ (modeline-fg-alt base6)
+ (modeline-bg base1)
+ (modeline-bg-l `(,(doom-darken (car bg) 0.1) ,@(cdr base0)))
+ (modeline-bg-inactive (doom-darken bg 0.1))
+ (modeline-bg-inactive-l `(,(car bg) ,@(cdr base1))))
+
+
+ ;;;; Base theme face overrides
+ (((font-lock-comment-face &override) :slant 'italic)
+ ((font-lock-keyword-face &override) :slant 'italic)
+ (font-lock-preprocessor-face :foreground magenta :slant 'italic)
+ (lazy-highlight :background base4)
+ ((line-number &override) :foreground (doom-lighten 'base5 0.2))
+ ((line-number-current-line &override) :foreground base7)
+ (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-alt
+ :box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg-inactive)))
+ (mode-line-emphasis :foreground highlight)
+ (tooltip :background base3 :foreground fg-alt)
+ (vertical-border :foreground base6)
+
+ ;;;; centuar-tabs
+ (centaur-tabs-selected :foreground tabs-fg :background tabs-bg)
+ (centaur-tabs-selected-modified :foreground tabs-fg :background tabs-bg)
+ (centaur-tabs-unselected-modified :foreground tabs-fg :background bg)
+ (centaur-tabs-active-bar-face :background tabs-bar-bg)
+ (centaur-tabs-modified-marker-selected :inherit 'centaur-tabs-selected :foreground tabs-marker)
+ (centaur-tabs-modified-marker-unselected :inherit 'centaur-tabs-unselected :foreground tabs-marker)
+ ;;;; css-mode <built-in> / scss-mode
+ (css-proprietary-property :foreground orange)
+ (css-property :foreground green)
+ (css-selector :foreground blue)
+ ;;;; doom-modeline
+ (doom-modeline-project-root-dir :foreground base6)
+ ;;;; doom-themes
+ (doom-themes-treemacs-root-face :foreground highlight :weight 'ultra-bold :height 1.2)
+ (doom-themes-treemacs-file-face :foreground highlight)
+ ;;;; ediff <built-in>
+ (ediff-fine-diff-A :background (doom-darken violet 0.4) :weight 'bold)
+ (ediff-current-diff-A :background (doom-darken base0 0.25))
+ ;;;; elscreen
+ (elscreen-tab-other-screen-face :background "#353a42" :foreground "#1e2022")
+ ;;;; highlight-symbol
+ (highlight-symbol-face :background region :distant-foreground fg-alt)
+ ;;;; highlight-thing
+ (highlight-thing :background region :distant-foreground fg-alt)
+ ;;;; ivy
+ (ivy-current-match :background base3)
+ (ivy-minibuffer-match-face-2 :foreground highlight :weight 'extra-bold)
+ ;;;; ivy-posframe
+ (ivy-posframe :background bg-alt)
+ (ivy-posframe-border :background highlight)
+ ;;;; magit
+ (magit-diff-hunk-heading :foreground bg :background (doom-blend highlight bg 0.3) :extend t)
+ (magit-diff-hunk-heading-highlight :foreground bg :background highlight :weight 'bold :extend t)
+ (magit-section-heading :foreground highlight)
+ ;;;; markdown-mode
+ (markdown-markup-face :foreground base5)
+ (markdown-header-face :inherit 'bold :foreground red)
+ ((markdown-code-face &override) :background (doom-lighten base3 0.05))
+ ;;;; mic-paren
+ ((paren-face-match &override) :foreground red :background base3 :weight 'ultra-bold)
+ ((paren-face-mismatch &override) :foreground base3 :background red :weight 'ultra-bold)
+ ;;;; neotree
+ (neo-root-dir-face :foreground red)
+ ;;;; org <built-in>
+ (org-hide :foreground hidden)
+ ;;;; solaire-mode
+ (solaire-mode-line-face
+ :inherit 'mode-line
+ :background modeline-bg-l
+ :box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg-l)))
+ (solaire-mode-line-inactive-face
+ :inherit 'mode-line-inactive
+ :background modeline-bg-inactive-l
+ :box (if -modeline-pad `(:line-width ,-modeline-pad :color ,modeline-bg-inactive-l)))
+ (solaire-hl-line-face :background base3)
+ ;;;; treemacs
+ (treemacs-root-face :foreground highlight :weight 'ultra-bold :height 1.2)
+ (treemacs-directory-face :foreground highlight)
+ ;;;; vimish-fold
+ ((vimish-fold-overlay &override) :inherit 'font-lock-comment-face :background base3 :weight 'light)
+ ((vimish-fold-fringe &override) :foreground teal))
+
+ ;;;; Base theme variable overrides-
+ ())
+
+;;; doom-rouge-theme.el ends here