2022-12-13 09:50:40 +00:00
|
|
|
;;; adwaita-dark-theme.el --- A dark color scheme inspired by Adwaita -*- lexical-binding: t; -*-
|
2022-12-30 00:23:50 +00:00
|
|
|
;;
|
2022-12-11 20:24:03 +00:00
|
|
|
;; Author: Jessie Hildebrandt <jessieh.net>
|
2022-12-13 09:10:27 +00:00
|
|
|
;; Homepage: https://gitlab.com/jessieh/adwaita-dark-theme
|
2022-12-11 20:24:03 +00:00
|
|
|
;; Keywords: mode-line faces
|
2022-12-22 12:15:20 +00:00
|
|
|
;; Version: 1.1.0
|
2022-12-13 08:05:59 +00:00
|
|
|
;; Package-Requires: ((emacs "27.1"))
|
2022-12-30 00:23:50 +00:00
|
|
|
;;
|
2022-12-11 20:24:03 +00:00
|
|
|
;; This file is not part of GNU Emacs.
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
;;
|
2022-12-13 09:10:27 +00:00
|
|
|
;; adwaita-dark is a dark color scheme that aims to replicate the
|
2022-12-11 20:24:03 +00:00
|
|
|
;; appearance and colors of GTK4 "libadwaita" applications.
|
|
|
|
;;
|
|
|
|
;; Features offered:
|
|
|
|
;; * Beautiful dark color scheme inspired by Adwaita
|
2022-12-13 08:05:59 +00:00
|
|
|
;; * Automatic 256-color mode support
|
2022-12-11 20:24:03 +00:00
|
|
|
;; * Custom fringe bitmaps for line continuations, visual-line-mode, diff-hl, flycheck, and flymake
|
|
|
|
;; * Custom configuration for neotree
|
|
|
|
;; * Lightweight with no dependencies
|
|
|
|
;;
|
|
|
|
;; To replace default line continuation/line wrap fringe bitmaps:
|
2022-12-13 09:10:27 +00:00
|
|
|
;; (adwaita-dark-theme-arrow-fringe-bmp-enable)
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
|
|
|
;; To enable custom configuration for `neotree':
|
2022-12-13 09:10:27 +00:00
|
|
|
;; (eval-after-load 'neotree #'adwaita-dark-theme-neotree-configuration-enable)
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
|
|
|
;; To enable custom fringe bitmaps for `diff-hl':
|
2022-12-20 00:20:19 +00:00
|
|
|
;; (eval-after-load 'diff-hl #'adwaita-dark-theme-diff-hl-fringe-bmp-enable)
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
|
|
|
;; To enable custom fringe bitmaps for `flycheck':
|
2022-12-13 09:10:27 +00:00
|
|
|
;; (eval-after-load 'flycheck #'adwaita-dark-theme-flycheck-fringe-bmp-enable)
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
|
|
|
;; To enable custom fringe bitmaps for `flymake':
|
2022-12-13 09:10:27 +00:00
|
|
|
;; (eval-after-load 'flymake #'adwaita-dark-theme-flymake-fringe-bmp-enable)
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;;; License:
|
|
|
|
;;
|
|
|
|
;; 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 2, 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; see the file COPYING. If not, write to
|
|
|
|
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
|
|
|
|
;; Floor, Boston, MA 02110-1301, USA.
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
2022-12-13 10:20:11 +00:00
|
|
|
;;
|
2022-12-20 01:23:45 +00:00
|
|
|
;; Byte-compiler declarations
|
2022-12-13 10:20:11 +00:00
|
|
|
;;
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
2022-12-13 10:20:11 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; External variable defs
|
|
|
|
;; ---------------------------------- ;;
|
2022-12-13 10:20:11 +00:00
|
|
|
|
2022-12-20 00:26:02 +00:00
|
|
|
(defvar diff-hl-fringe-bmp-function)
|
|
|
|
|
|
|
|
(defvar flymake-error-bitmap)
|
|
|
|
(defvar flymake-warning-bitmap)
|
|
|
|
(defvar flymake-note-bitmap)
|
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
(defvar neo-global--window)
|
|
|
|
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; External function decls
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
|
|
|
(declare-function flycheck-redefine-standard-error-levels "flycheck" (&optional margin-str fringe-bitmap))
|
2022-12-13 10:20:11 +00:00
|
|
|
|
2022-12-30 05:57:49 +00:00
|
|
|
(declare-function neo-open-dir "neotree" (full-path &optional arg))
|
|
|
|
(declare-function neo-open-file "neotree" (full-path &optional arg))
|
|
|
|
(declare-function neo-filepath-hidden-p "neotree" (node))
|
2022-12-13 10:20:11 +00:00
|
|
|
(declare-function neo-path--file-short-name "neotree" (file))
|
2022-12-30 05:57:49 +00:00
|
|
|
(declare-function neo-global--create-window "neotree" ())
|
2022-12-13 10:20:11 +00:00
|
|
|
(declare-function neo-buffer--newline-and-begin "neotree" ())
|
2022-12-30 05:57:49 +00:00
|
|
|
(declare-function neo-buffer--node-list-set "neotree" (line-num path))
|
2022-12-13 10:20:11 +00:00
|
|
|
(declare-function neo-buffer--insert-root-entry "neotree" (node))
|
|
|
|
(declare-function neo-buffer--insert-dir-entry "neotree" (node depth expanded))
|
|
|
|
(declare-function neo-buffer--insert-file-entry "neotree" (node depth))
|
2022-12-30 05:57:49 +00:00
|
|
|
(declare-function neotree-hidden-file-toggle "neotree" ())
|
|
|
|
(declare-function neotree-select-up-node "neotree" ())
|
|
|
|
(declare-function neotree-change-root "neotree" ())
|
2022-12-13 10:20:11 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
2022-12-22 10:38:24 +00:00
|
|
|
;; Custom definitions
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-22 10:38:24 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Theme definition
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
2022-12-13 09:10:27 +00:00
|
|
|
(deftheme adwaita-dark
|
2022-12-30 01:11:15 +00:00
|
|
|
"A dark color scheme inspired by Adwaita.")
|
2022-12-13 08:05:59 +00:00
|
|
|
|
2022-12-22 10:38:24 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Group definition
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
|
|
|
(defgroup adwaita-dark-theme nil
|
|
|
|
"A dark color scheme inspired by Adwaita."
|
|
|
|
:group 'faces)
|
|
|
|
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Variable definitions
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
2022-12-30 01:11:57 +00:00
|
|
|
(defcustom adwaita-dark-theme-no-completions-first-difference nil
|
|
|
|
"When non-nil, `completions-first-difference' will be set to an empty face."
|
|
|
|
:group 'adwaita-dark-theme
|
|
|
|
:type 'boolean)
|
|
|
|
|
2022-12-30 01:16:41 +00:00
|
|
|
(defcustom adwaita-dark-theme-bold-vertico-current nil
|
|
|
|
"When non-nil, `vertico-current' will be bolded to increase contrast."
|
|
|
|
:group 'adwaita-dark-theme
|
|
|
|
:type 'boolean)
|
|
|
|
|
2022-12-22 10:38:24 +00:00
|
|
|
(defcustom adwaita-dark-theme-gray-rainbow-delimiters nil
|
|
|
|
"When non-nil, `rainbow-delimiters-mode' faces will be the same shade of gray."
|
|
|
|
:group 'adwaita-dark-theme
|
|
|
|
:type 'boolean)
|
|
|
|
|
|
|
|
;; -------------------------------------------------------------------------- ;;
|
|
|
|
;;
|
|
|
|
;; Theme code
|
|
|
|
;;
|
|
|
|
;; -------------------------------------------------------------------------- ;;
|
|
|
|
|
2022-12-20 01:37:28 +00:00
|
|
|
(let* ((class '((class color) (min-colors 256)))
|
|
|
|
|
2022-12-20 04:35:27 +00:00
|
|
|
;; Layout/sizing
|
2022-12-20 01:37:28 +00:00
|
|
|
(mode-line-padding 10)
|
|
|
|
|
|
|
|
;; Feature availability
|
|
|
|
(flat-button-available-p (version<= "28.1" emacs-version))
|
|
|
|
(true-color-available-p (or (daemonp)
|
|
|
|
(display-graphic-p)
|
|
|
|
(>= (tty-display-color-cells) 16777216)))
|
|
|
|
|
|
|
|
;; Background colors
|
|
|
|
;; [True color | 256-compatible]
|
2023-02-15 20:27:21 +00:00
|
|
|
(bg (if true-color-available-p "#1c1c1c" "gray11")) ; #1c1c1c
|
2022-12-30 19:20:29 +00:00
|
|
|
(bg-alt (if true-color-available-p "#242424" "gray14")) ; #242424
|
2023-02-12 21:58:01 +00:00
|
|
|
(bg-osd (if true-color-available-p "#101010" "gray6")) ; #0f0f0f
|
2022-12-30 19:20:29 +00:00
|
|
|
(base-0 (if true-color-available-p "#202020" "gray13")) ; #212121
|
|
|
|
(base-1 (if true-color-available-p "#262626" "gray15")) ; #262626
|
|
|
|
(base-2 (if true-color-available-p "#292929" "gray16")) ; #292929
|
|
|
|
(base-3 (if true-color-available-p "#303030" "gray19")) ; #303030
|
|
|
|
(base-4 (if true-color-available-p "#454545" "gray27")) ; #454545
|
|
|
|
(base-5 (if true-color-available-p "#656565" "gray40")) ; #666666
|
|
|
|
(base-6 (if true-color-available-p "#7b7b7b" "gray48")) ; #7a7a7a
|
|
|
|
(base-7 (if true-color-available-p "#a5a5a5" "gray65")) ; #a6a6a6
|
|
|
|
(base-8 (if true-color-available-p "#dfdfdf" "gray87")) ; #dedede
|
2022-12-20 01:37:28 +00:00
|
|
|
|
|
|
|
;; Foreground colors
|
|
|
|
;; [True color | 256-compatible]
|
2022-12-30 19:20:29 +00:00
|
|
|
(fg (if true-color-available-p "#deddda" "gray86")) ; #dbdbdb
|
|
|
|
(fg-alt (if true-color-available-p "#77767b" "gray47")) ; #787878
|
|
|
|
(gray (if true-color-available-p "#3d3846" "gray23")) ; #3b3b3b
|
|
|
|
(red (if true-color-available-p "#ff6c6b" "indianred2")) ; #ee6363
|
|
|
|
(orange (if true-color-available-p "#ffa348" "orange2")) ; #ee9a00
|
|
|
|
(dark-orange (if true-color-available-p "#db6b1a" "darkorange3")) ; #cd6600
|
|
|
|
(green (if true-color-available-p "#54d18c" "seagreen3")) ; #43cd80
|
|
|
|
(teal (if true-color-available-p "#5bc8af" "mediumaquamarine")) ; #66cdaa
|
|
|
|
(yellow (if true-color-available-p "#f8e45c" "gold2")) ; #eec900
|
|
|
|
(blue (if true-color-available-p "#64a6f4" "steelblue2")) ; #5cacee
|
|
|
|
(dark-blue (if true-color-available-p "#1a5fb4" "dodgerblue4")) ; #104e8b
|
|
|
|
(magenta (if true-color-available-p "#dd80de" "orchid3")) ; #cd69c9
|
|
|
|
(pink (if true-color-available-p "#edb8ee" "plum")) ; #dda0dd
|
|
|
|
(violet (if true-color-available-p "#7d8ac7" "mediumpurple3")) ; #8968cd
|
|
|
|
(cyan (if true-color-available-p "#7ee5ff" "mediumturquoise"))) ; #48d1cc
|
2022-12-20 01:23:45 +00:00
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
(custom-theme-set-faces
|
2022-12-13 09:10:27 +00:00
|
|
|
'adwaita-dark
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Core Emacs faces
|
|
|
|
;; ---------------------------------- ;;
|
2022-12-13 08:05:59 +00:00
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; default face
|
|
|
|
`(default ((,class (:background ,bg :foreground ,fg))))
|
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; Emacs faces
|
2022-12-11 20:24:03 +00:00
|
|
|
`(error ((,class (:foreground ,red))))
|
|
|
|
`(warning ((,class (:foreground ,yellow))))
|
|
|
|
`(success ((,class (:foreground ,green))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(fringe ((,class (:inherit default :foreground ,base-4))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(region ((,class (:background ,base-4 :foreground nil :distant-foreground ,fg))))
|
2022-12-22 08:50:01 +00:00
|
|
|
`(highlight ((,class (:background ,blue :foreground ,base-0 :distant-foreground ,base-8))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(lazy-highlight ((,class (:inherit highlight))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(cursor ((,class (:background ,fg))))
|
|
|
|
`(shadow ((,class (:foreground ,base-5))))
|
2022-12-14 06:45:20 +00:00
|
|
|
`(minibuffer-prompt ((,class (:foreground ,base-7))))
|
2023-02-12 21:58:01 +00:00
|
|
|
`(tooltip ((,class (:background ,bg-osd :foreground ,fg))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(secondary-selection ((,class (:background ,gray))))
|
2022-12-20 22:32:50 +00:00
|
|
|
`(fill-column-indicator ((,class (:foreground ,base-3))))
|
2022-12-22 12:01:42 +00:00
|
|
|
`(match ((,class (:foreground ,green :weight bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(trailing-whitespace ((,class (:background ,red))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(nobreak-space ((,class (:inherit default :underline t))))
|
|
|
|
`(nobreak-hyphen ((,class (:inherit nobreak-space))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(vertical-border ((,class (:background ,bg-alt :foreground ,bg-alt))))
|
|
|
|
`(link ((,class (:foreground ,blue :underline t :weight bold))))
|
2022-12-22 06:50:33 +00:00
|
|
|
`(link-visited ((,class (:foreground ,magenta :underline t :weight bold))))
|
2022-12-22 06:54:06 +00:00
|
|
|
`(escape-glyph ((,class (:foreground ,pink))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(homoglyph ((,class (:inherit escape-glyph))))
|
2022-12-13 08:02:24 +00:00
|
|
|
`(widget-single-line-field ((,class :background ,base-5)))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(widget-field ((,class (:inherit widget-single-line-field :extend t))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; font-lock
|
|
|
|
`(font-lock-builtin-face ((,class (:foreground ,violet))))
|
2022-12-30 19:20:29 +00:00
|
|
|
`(font-lock-doc-face ((,class (:foreground ,base-6))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(font-lock-comment-face ((,class (:foreground ,base-5))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(font-lock-comment-delimiter-face ((,class (:inherit font-lock-comment-face))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(font-lock-constant-face ((,class (:foreground ,violet))))
|
2022-12-30 19:20:29 +00:00
|
|
|
`(font-lock-variable-name-face ((,class (:foreground unspecified))))
|
|
|
|
`(font-lock-function-name-face ((,class (:foreground unspecified))))
|
|
|
|
`(font-lock-keyword-face ((,class (:foreground ,orange :weight bold))))
|
|
|
|
`(font-lock-type-face ((,class (:foreground ,teal :weight bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(font-lock-string-face ((,class (:foreground ,teal))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(font-lock-warning-face ((,class (:inherit warning))))
|
2022-12-30 19:20:29 +00:00
|
|
|
`(font-lock-preprocessor-face ((,class (:foreground ,dark-orange))))
|
|
|
|
`(font-lock-negation-char-face ((,class (:foreground unspecified :weight bold))))
|
|
|
|
`(font-lock-regexp-grouping-backslash ((,class (:foreground ,teal :weight bold))))
|
|
|
|
`(font-lock-regexp-grouping-construct ((,class (:foreground ,teal :weight bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; mode-line/header-line
|
2022-12-11 20:24:03 +00:00
|
|
|
`(mode-line ((,class (:background ,base-3 :foreground ,fg :box (:line-width ,mode-line-padding :color ,base-3)))))
|
|
|
|
`(mode-line-inactive ((,class (:background ,bg-alt :foreground ,base-5 :box (:line-width ,mode-line-padding :color ,bg-alt)))))
|
|
|
|
`(mode-line-emphasis ((,class (:foreground ,blue))))
|
|
|
|
`(mode-line-highlight ((,class (:foreground ,fg))))
|
|
|
|
`(mode-line-buffer-id ((,class (:foreground ,base-8 :weight bold))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(header-line ((,class (:inherit mode-line-inactive :foreground ,base-7))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Internal/built-in packages
|
|
|
|
;; ---------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-13 08:04:07 +00:00
|
|
|
;; ansi-colors
|
|
|
|
`(ansi-color-black ((,class (:foreground "#464646" :background "#464646"))))
|
|
|
|
`(ansi-color-red ((,class (:foreground "#ed333b" :background "#ed333b"))))
|
|
|
|
`(ansi-color-green ((,class (:foreground "#57e389" :background "#57e389"))))
|
|
|
|
`(ansi-color-yellow ((,class (:foreground "#ff7800" :background "#ff7800"))))
|
|
|
|
`(ansi-color-blue ((,class (:foreground "#62a0ea" :background "#62a0ea"))))
|
|
|
|
`(ansi-color-magenta ((,class (:foreground "#9141ac" :background "#9141ac"))))
|
|
|
|
`(ansi-color-cyan ((,class (:foreground "#5bc8af" :background "#5bc8af"))))
|
|
|
|
`(ansi-color-white ((,class (:foreground "#deddda" :background "#deddda"))))
|
|
|
|
`(ansi-color-bright-black ((,class (:foreground "#9a9996" :background "#9a9996"))))
|
|
|
|
`(ansi-color-bright-red ((,class (:foreground "#f66151" :background "#f66151"))))
|
|
|
|
`(ansi-color-bright-green ((,class (:foreground "#8ff0a4" :background "#8ff0a4"))))
|
|
|
|
`(ansi-color-bright-yellow ((,class (:foreground "#ffa348" :background "#ffa348"))))
|
|
|
|
`(ansi-color-bright-blue ((,class (:foreground "#99c1f1" :background "#99c1f1"))))
|
|
|
|
`(ansi-color-bright-magenta ((,class (:foreground "#dc8add" :background "#dc8add"))))
|
|
|
|
`(ansi-color-bright-cyan ((,class (:foreground "#93ddc2" :background "#93ddc2"))))
|
|
|
|
`(ansi-color-bright-white ((,class (:foreground "#f6f5f4" :background "#f6f5f4"))))
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; cperl
|
2022-12-22 07:05:21 +00:00
|
|
|
`(cperl-array-face ((,class (:inherit font-lock-variable-name-face :weight bold))))
|
|
|
|
`(cperl-hash-face ((,class (:inherit font-lock-variable-name-face :weight bold :slant italic))))
|
|
|
|
`(cperl-nonoverridable-face ((,class (:inherit font-lock-builtin-face))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-14 06:45:20 +00:00
|
|
|
;; consult
|
|
|
|
`(consult-line-number-wrapped ((,class (:foreground ,base-7))))
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; compilation
|
2022-12-22 07:05:21 +00:00
|
|
|
`(compilation-column-number ((,class (:inherit font-lock-comment-face))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(compilation-line-number ((,class (:foreground ,blue))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(compilation-error ((,class (:inherit error :weight bold))))
|
|
|
|
`(compilation-warning ((,class (:inherit warning :slant italic))))
|
|
|
|
`(compilation-info ((,class (:inherit success))))
|
|
|
|
`(compilation-mode-line-exit ((,class (:inherit compilation-info))))
|
|
|
|
`(compilation-mode-line-fail ((,class (:inherit compilation-error))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; completions
|
2022-12-22 07:05:21 +00:00
|
|
|
`(completions-annotations ((,class (:inherit shadow))))
|
2022-12-13 08:02:24 +00:00
|
|
|
`(completions-common-part ((,class (:foreground ,blue))))
|
2022-12-30 04:19:18 +00:00
|
|
|
`(completions-first-difference ((,class ,(unless adwaita-dark-theme-no-completions-first-difference '(:weight bold)))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; custom
|
|
|
|
`(custom-button ((,class (:background ,base-3 :foreground ,fg :box (:line-width 3 :color ,base-3)))))
|
|
|
|
`(custom-button-pressed ((,class (:background ,base-4 :foreground ,fg :box (:line-width 3 :color ,base-4)))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(custom-button-unraised ((,class (:inherit custom-button))))
|
|
|
|
`(custom-button-pressed-unraised ((,class (:inherit custom-button-pressed))))
|
|
|
|
`(custom-button-mouse ((,class (:inherit custom-button-pressed))))
|
|
|
|
`(custom-variable-button ((,class (:inherit link :foreground ,green))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(custom-saved ((,class (:foreground ,green :bold bold))))
|
|
|
|
`(custom-comment ((,class (:foreground ,fg :background ,dark-blue))))
|
|
|
|
`(custom-comment-tag ((,class (:foreground ,gray))))
|
|
|
|
`(custom-modified ((,class (:foreground ,blue :bold bold))))
|
2022-12-12 06:55:54 +00:00
|
|
|
`(custom-variable-tag ((,class (:foreground ,teal))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(custom-visibility ((,class (:foreground ,blue :underline nil))))
|
2022-12-12 06:55:54 +00:00
|
|
|
`(custom-group-subtitle ((,class (:foreground ,base-8 :weight bold))))
|
|
|
|
`(custom-group-tag ((,class (:foreground ,base-8 :weight bold))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(custom-group-tag-1 ((,class (:inherit custom-group-tag))))
|
2022-12-12 06:55:54 +00:00
|
|
|
`(custom-set ((,class (:foreground ,yellow))))
|
|
|
|
`(custom-themed ((,class (:foreground ,yellow))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(custom-invalid ((,class (:foreground ,red :bold bold))))
|
2022-12-12 06:55:54 +00:00
|
|
|
`(custom-variable-obsolete ((,class (:foreground ,gray))))
|
2022-12-22 12:01:42 +00:00
|
|
|
`(custom-state ((,class (:foreground ,green))))
|
2022-12-12 06:55:54 +00:00
|
|
|
`(custom-changed ((,class (:foreground ,blue))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; diff-mode
|
2022-12-22 08:50:15 +00:00
|
|
|
`(diff-added ((,class (:foreground ,teal))))
|
2022-12-22 09:49:00 +00:00
|
|
|
`(diff-changed ((,class (:foreground ,yellow))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(diff-context ((,class (:foreground ,fg-alt))))
|
2022-12-22 08:50:15 +00:00
|
|
|
`(diff-removed ((,class (:foreground ,red))))
|
2022-12-22 12:01:42 +00:00
|
|
|
`(diff-header ((,class (:foreground ,base-8 :weight bold))))
|
2022-12-22 08:50:15 +00:00
|
|
|
`(diff-file-header ((,class (:foreground ,fg))))
|
|
|
|
`(diff-hunk-header ((,class (:foreground ,base-7))))
|
|
|
|
`(diff-indicator-added ((,class (:inherit diff-added :bold t))))
|
|
|
|
`(diff-indicator-changed ((,class (:inherit diff-changed :bold t))))
|
|
|
|
`(diff-indicator-removed ((,class (:inherit diff-removed :bold t))))
|
|
|
|
`(diff-refine-added ((,class (:inherit diff-added :bold t :underline t))))
|
|
|
|
`(diff-refine-changed ((,class (:inherit diff-changed :bold t :underline t))))
|
|
|
|
`(diff-refine-removed ((,class (:inherit diff-removed :bold t :underline t))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; dired
|
|
|
|
`(dired-directory ((,class (:foreground ,magenta))))
|
|
|
|
`(dired-ignored ((,class (:foreground ,base-5))))
|
|
|
|
`(dired-flagged ((,class (:foreground ,red))))
|
|
|
|
`(dired-header ((,class (:foreground ,blue :weight bold))))
|
|
|
|
`(dired-mark ((,class (:foreground ,orange :weight bold))))
|
|
|
|
`(dired-marked ((,class (:foreground ,magenta :weight bold))))
|
|
|
|
`(dired-perm-write ((,class (:foreground ,fg :underline t))))
|
|
|
|
`(dired-symlink ((,class (:foreground ,cyan :weight bold))))
|
|
|
|
`(dired-warning ((,class (:foreground ,yellow))))
|
|
|
|
|
|
|
|
;; ediff
|
2022-12-22 12:01:22 +00:00
|
|
|
`(ediff-fine-diff-A ((,class (:background ,base-4 :weight bold))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(ediff-fine-diff-B ((,class (:inherit ediff-fine-diff-A))))
|
|
|
|
`(ediff-fine-diff-C ((,class (:inherit ediff-find-diff-A))))
|
2022-12-22 12:01:22 +00:00
|
|
|
`(ediff-current-diff-A ((,class (:background ,base-2))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(ediff-current-diff-B ((,class (:inherit ediff-current-diff-A))))
|
|
|
|
`(ediff-current-diff-C ((,class (:inherit ediff-current-diff-A))))
|
|
|
|
`(ediff-even-diff-A ((,class (:inherit hl-line))))
|
|
|
|
`(ediff-even-diff-B ((,class (:inherit ediff-even-diff-A))))
|
|
|
|
`(ediff-even-diff-C ((,class (:inherit ediff-even-diff-A))))
|
|
|
|
`(ediff-odd-diff-A ((,class (:inherit ediff-even-diff-A))))
|
|
|
|
`(ediff-odd-diff-B ((,class (:inherit ediff-odd-diff-A))))
|
|
|
|
`(ediff-odd-diff-C ((,class (:inherit ediff-odd-diff-A))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; elfeed
|
|
|
|
`(elfeed-log-debug-level-face ((,class (:foreground ,base-5))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(elfeed-log-error-level-face ((,class (:inherit error))))
|
|
|
|
`(elfeed-log-info-level-face ((,class (:inherit success))))
|
|
|
|
`(elfeed-log-warn-level-face ((,class (:inherit warning))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(elfeed-search-date-face ((,class (:foreground ,violet))))
|
|
|
|
`(elfeed-search-feed-face ((,class (:foreground ,blue))))
|
|
|
|
`(elfeed-search-tag-face ((,class (:foreground ,base-5))))
|
|
|
|
`(elfeed-search-title-face ((,class (:foreground ,base-5))))
|
|
|
|
`(elfeed-search-filter-face ((,class (:foreground ,violet))))
|
|
|
|
`(elfeed-search-unread-count-face ((,class (:foreground ,yellow))))
|
|
|
|
`(elfeed-search-unread-title-face ((,class (:foreground ,fg :Weight bold))))
|
|
|
|
|
|
|
|
;; eshell
|
2022-12-13 08:04:40 +00:00
|
|
|
`(eshell-prompt ((,class (:foreground ,teal :weight bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(eshell-ls-archive ((,class (:foreground ,magenta))))
|
2022-12-13 08:04:40 +00:00
|
|
|
`(eshell-ls-backup ((,class (:foreground ,base-7))))
|
|
|
|
`(eshell-ls-clutter ((,class (:foreground ,base-5))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(eshell-ls-directory ((,class (:foreground ,blue))))
|
|
|
|
`(eshell-ls-executable ((,class (:foreground ,green))))
|
2022-12-13 08:04:40 +00:00
|
|
|
`(eshell-ls-missing ((,class (:foreground ,base-5))))
|
|
|
|
`(eshell-ls-product ((,class (:foreground ,teal))))
|
|
|
|
`(eshell-ls-readonly ((,class (:foreground ,violet))))
|
|
|
|
`(eshell-ls-special ((,class (:foreground ,magenta))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(eshell-ls-symlink ((,class (:foreground ,cyan))))
|
|
|
|
`(eshell-ls-unreadable ((,class (:foreground ,base-5))))
|
|
|
|
|
2022-12-22 08:57:14 +00:00
|
|
|
;; flymake
|
|
|
|
`(flymake-error ((,class (:underline (:color ,red)))))
|
|
|
|
`(flymake-note ((,class (:underline (:color ,green)))))
|
|
|
|
`(flymake-warning ((,class (:underline (:color ,orange)))))
|
|
|
|
|
|
|
|
;; flyspell
|
|
|
|
`(flyspell-incorrect ((,class (:inherit unspecified :underline (:color ,red)))))
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; gdb
|
|
|
|
`(breakpoint-enabled ((,class (:foreground ,red))))
|
|
|
|
`(breakpoint-disabled ((,class (:foreground ,base-5))))
|
|
|
|
|
|
|
|
;; help
|
2022-12-14 06:45:20 +00:00
|
|
|
`(help-key-binding ((,class (:foreground ,blue))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; hi-lock
|
|
|
|
`(hi-yellow ((,class (:foreground ,yellow :inverse-video t))))
|
|
|
|
`(hi-pink ((,class (:foreground ,pink :inverse-video t))))
|
|
|
|
`(hi-green ((,class (:foreground ,green :inverse-video t))))
|
|
|
|
`(hi-blue ((,class (:foreground ,blue :inverse-video t))))
|
|
|
|
`(hi-salmon ((,class (:foreground ,orange :inverse-video t))))
|
|
|
|
`(hi-aquamarine ((,class (:foreground ,teal :inverse-video t))))
|
|
|
|
|
|
|
|
;; hl-line
|
|
|
|
`(hl-line ((,class (:background ,bg-alt :extend t))))
|
|
|
|
|
|
|
|
;; ido
|
|
|
|
`(ido-first-match ((,class (:foreground ,orange))))
|
|
|
|
`(ido-indicator ((,class (:background ,bg :foreground ,red))))
|
|
|
|
`(ido-only-match ((,class (:foreground ,green))))
|
|
|
|
`(ido-subdir ((,class (:foreground ,violet))))
|
|
|
|
`(ido-virtual ((,class (:foreground ,base-5))))
|
|
|
|
|
|
|
|
;; isearch
|
2022-12-22 07:05:21 +00:00
|
|
|
`(isearch ((,class (:inherit highlight))))
|
|
|
|
`(isearch-fail ((,class (:foreground ,base-7 :strike-through t))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; line-number
|
2023-02-12 21:57:06 +00:00
|
|
|
`(line-number ((,class (:inherit default :foreground ,base-5))))
|
2023-02-12 22:04:32 +00:00
|
|
|
`(line-number-current-line ((,class (:inherit (hl-line default) :foreground ,base-7))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; linum
|
2022-12-22 07:05:21 +00:00
|
|
|
`(linum ((,class (:inherit line-number))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; make-file-*-mode
|
|
|
|
`(makefile-targets ((,class (:foreground ,blue))))
|
|
|
|
|
|
|
|
;; message
|
|
|
|
`(message-header-name ((,class (:foreground ,green))))
|
|
|
|
`(message-header-subject ((,class (:foreground ,blue :weight bold))))
|
|
|
|
`(message-header-to ((,class (:foreground ,blue :weight bold))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(message-header-cc ((,class (:inherit message-header-to :foreground ,dark-blue))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(message-header-other ((,class (:foreground ,violet))))
|
|
|
|
`(message-header-newsgroups ((,class (:foreground ,yellow))))
|
|
|
|
`(message-header-xheader ((,class (:foreground ,base-6))))
|
|
|
|
`(message-separator ((,class (:foreground ,base-5))))
|
|
|
|
`(message-mml ((,class (:foreground ,base-5 :slant italic))))
|
|
|
|
`(message-cited-text ((,class (:foreground ,magenta))))
|
|
|
|
|
2022-12-13 08:04:58 +00:00
|
|
|
;; outline
|
|
|
|
`(outline-1 ((,class (:foreground ,base-6 :weight bold))))
|
|
|
|
`(outline-2 ((,class (:foreground ,base-7 :weight bold))))
|
|
|
|
`(outline-3 ((,class (:foreground ,base-6 :weight bold))))
|
|
|
|
`(outline-4 ((,class (:foreground ,base-5 :weight bold))))
|
|
|
|
`(outline-5 ((,class (:foreground ,base-6 :weight bold))))
|
|
|
|
`(outline-6 ((,class (:foreground ,base-7 :weight bold))))
|
|
|
|
`(outline-7 ((,class (:foreground ,base-6 :weight bold))))
|
|
|
|
`(outline-8 ((,class (:foreground ,base-5 :weight bold))))
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; pulse
|
|
|
|
`(pulse-highlight-start-face ((,class (:background ,base-5 :extend t))))
|
|
|
|
|
2022-12-22 08:57:14 +00:00
|
|
|
;; re-builder
|
|
|
|
`(reb-match-0 ((,class (:foreground ,orange :inverse-video t))))
|
|
|
|
`(reb-match-1 ((,class (:foreground ,magenta :inverse-video t))))
|
|
|
|
`(reb-match-2 ((,class (:foreground ,green :inverse-video t))))
|
|
|
|
`(reb-match-3 ((,class (:foreground ,yellow :inverse-video t))))
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; show-paren
|
2022-12-22 09:49:08 +00:00
|
|
|
`(show-paren-match ((,class (:foreground ,base-8 :weight ultra-bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(show-paren-mismatch ((,class (:foreground ,red :weight ultra-bold))))
|
|
|
|
|
2022-12-14 05:33:21 +00:00
|
|
|
;; tab-line
|
2022-12-11 20:24:03 +00:00
|
|
|
`(tab-line ((,class (:background ,bg-alt))))
|
|
|
|
`(tab-line-tab ((,class (:background ,bg :foreground ,fg :box (:line-width ,mode-line-padding :color ,bg)))))
|
|
|
|
`(tab-line-tab-inactive ((,class (:background ,bg-alt :foreground ,fg-alt :box (:line-width ,mode-line-padding :color ,bg-alt)))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(tab-line-tab-current ((,class (:inherit tab-line-tab))))
|
|
|
|
`(tab-line-highlight ((,class (:inherit tab-line-tab))))
|
2022-12-14 05:33:21 +00:00
|
|
|
|
|
|
|
;; tab-bar
|
|
|
|
`(tab-bar ((,class (:background ,bg-alt))))
|
|
|
|
`(tab-bar-tab ((,class (:background ,bg :foreground ,fg :box (:line-width ,mode-line-padding :color ,bg)))))
|
|
|
|
`(tab-bar-tab-inactive ((,class (:background ,bg-alt :foreground ,fg-alt :box (:line-width ,mode-line-padding :color ,bg-alt)))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-22 08:57:14 +00:00
|
|
|
;; which-func
|
|
|
|
`(which-func ((,class (:inherit font-lock-function-name-face))))
|
|
|
|
|
|
|
|
;; whitespace
|
|
|
|
`(whitespace-empty ((,class (:background ,base-2))))
|
|
|
|
`(whitespace-hspace ((,class (:foreground ,base-4))))
|
|
|
|
`(whitespace-space ((,class (:foreground ,base-4))))
|
|
|
|
`(whitespace-tab ((,class (:foreground ,base-4))))
|
|
|
|
`(whitespace-newline ((,class (:foreground ,base-4))))
|
|
|
|
`(whitespace-line ((,class (:underline (:color ,base-4)))))
|
|
|
|
`(whitespace-trailing ((,class (:inherit trailing-whitespace))))
|
|
|
|
`(whitespace-indentation ((,class (:background ,base-3 :foreground ,base-0))))
|
|
|
|
`(whitespace-space-after-tab ((,class (:background ,yellow :foreground ,base-0))))
|
|
|
|
`(whitespace-space-before-tab ((,class (:inherit whitespace-space-after-tab))))
|
|
|
|
`(whitespace-missing-newline-at-eof ((,class (:inherit whitespace-space-after-tab))))
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; window-divider
|
2022-12-22 07:05:21 +00:00
|
|
|
`(window-divider ((,class (:inherit vertical-border))))
|
|
|
|
`(window-divider-first-pixel ((,class (:inherit window-divider))))
|
|
|
|
`(window-divider-last-pixel ((,class (:inherit window-divider))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; External packages
|
|
|
|
;; ---------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; anzu
|
|
|
|
`(anzu-mode-line ((,class (:foreground ,blue))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(anzu-replace-highlight ((,class (:foreground ,red :weight bold :strike-through t))))
|
|
|
|
`(anzu-replace-to ((,class (:foreground ,green :weight bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; avy
|
|
|
|
`(avy-background-face ((,class (:foreground ,base-5))))
|
|
|
|
`(avy-lead-face ((,class (:background ,blue :foreground ,bg :distant-foreground ,fg :weight bold))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(avy-lead-face-0 ((,class (:inherit avy-lead-face))))
|
|
|
|
`(avy-lead-face-1 ((,class (:inherit avy-lead-face))))
|
|
|
|
`(avy-lead-face-2 ((,class (:inherit avy-lead-face))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-13 08:05:15 +00:00
|
|
|
;; bufler
|
2022-12-22 07:05:21 +00:00
|
|
|
`(bufler-path ((,class (:inherit font-lock-string-face))))
|
|
|
|
`(bufler-buffer-special ((,class (:inherit font-lock-builtin-face))))
|
2022-12-13 08:05:15 +00:00
|
|
|
|
2023-02-12 22:00:33 +00:00
|
|
|
;; cider
|
|
|
|
`(cider-fringe-good-face ((,class (:foreground ,green))))
|
|
|
|
`(cider-result-overlay-face ((,class (:foreground ,base-4))))
|
|
|
|
`(cider-error-overlay-face ((,class (:foreground ,red))))
|
|
|
|
`(cider-error-highlight-face ((,class (:underline (:color ,red)))))
|
|
|
|
`(cider-warning-highlight-face ((,class (:underline (:color ,yellow)))))
|
|
|
|
`(cider-deprecated-face ((,class (:inherit shadow :strike-through t))))
|
|
|
|
`(cider-repl-stdout-face ((,class (:inherit font-lock-doc-face))))
|
|
|
|
`(cider-repl-stderr-face ((,class (:inherit error))))
|
|
|
|
`(cider-test-error-face ((,class (:foreground ,dark-orange))))
|
|
|
|
`(cider-test-failure-face ((,class (:foreground ,red))))
|
|
|
|
`(cider-test-success-face ((,class (:foreground ,green))))
|
|
|
|
`(cider-stacktrace-fn-face ((,class (:foreground ,fg :weight bold))))
|
|
|
|
`(cider-stacktrace-error-class-face ((,class (:foreground ,red :weight bold))))
|
|
|
|
`(cider-stacktrace-error-message-face ((,class (:foreground ,fg))))
|
|
|
|
`(cider-stacktrace-filter-active-face ((,class (:inherit link))))
|
|
|
|
`(cider-stacktrace-filter-inactive-face ((,class (:inherit (shadow link)))))
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; company
|
2023-02-12 21:58:01 +00:00
|
|
|
`(company-tooltip ((,class (:background ,base-3 :foreground ,base-8))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(company-tooltip-common ((,class (:foreground ,blue :distant-foreground ,base-0 :weight bold))))
|
|
|
|
`(company-tooltip-search ((,class (:background ,blue :foreground ,bg :distant-foreground ,fg :weight bold))))
|
2022-12-22 10:00:47 +00:00
|
|
|
`(company-tooltip-search-selection ((,class (:background ,cyan :weight bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(company-tooltip-selection ((,class (:background ,dark-blue :weight bold))))
|
|
|
|
`(company-tooltip-mouse ((,class (:background ,magenta :foreground ,bg :distant-foreground ,fg))))
|
|
|
|
`(company-tooltip-annotation ((,class (:foreground ,violet :distant-foreground ,bg))))
|
2023-02-12 21:58:01 +00:00
|
|
|
`(company-scrollbar-bg ((,class (:background ,base-3))))
|
|
|
|
`(company-scrollbar-fg ((,class (:background ,base-5))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(company-preview ((,class (:foreground ,base-5))))
|
|
|
|
`(company-preview-common ((,class (:background ,base-3 :foreground ,blue))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(company-preview-search ((,class (:inherit company-tooltip-search))))
|
|
|
|
`(company-template-field ((,class (:inherit match))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; company-box
|
|
|
|
`(company-box-candidate ((,class (:foreground ,fg))))
|
|
|
|
|
|
|
|
;; corfu
|
2022-12-13 08:02:24 +00:00
|
|
|
`(corfu-default ((,class (:background ,base-3 :foreground ,base-8))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(corfu-current ((,class (:background ,base-4))))
|
2022-12-13 08:02:24 +00:00
|
|
|
`(corfu-bar ((,class (:background ,base-5))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(corfu-border ((,class (:background ,base-3))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(corfu-echo ((,class (:inherit font-lock-doc-face))))
|
|
|
|
`(corfu-popupinfo ((,class (:inherit corfu-default))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; diff-hl
|
|
|
|
`(diff-hl-change ((,class (:foreground ,orange))))
|
|
|
|
`(diff-hl-delete ((,class (:foreground ,red))))
|
|
|
|
`(diff-hl-insert ((,class (:foreground ,green))))
|
|
|
|
|
|
|
|
;; fic-mode
|
2022-12-22 08:57:48 +00:00
|
|
|
`(fic-face ((,class (:foreground ,yellow :weight bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; flx-ido
|
|
|
|
`(flx-highlight-face ((,class (:foreground ,yellow :weight bold :underline nil))))
|
|
|
|
|
|
|
|
;; flycheck
|
|
|
|
`(flycheck-error ((,class (:underline (:color ,red)))))
|
|
|
|
`(flycheck-warning ((,class (:underline (:color ,yellow)))))
|
|
|
|
`(flycheck-info ((,class (:underline (:color ,green)))))
|
|
|
|
`(flycheck-error-list-highlight ((,class (:inherit hl-line :weight bold))))
|
2022-12-14 05:34:52 +00:00
|
|
|
`(flycheck-error-list-id-with-explainer ((,class (:inherit (flycheck-error-list-id button)))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(flycheck-verify-select-checker ((,class (:inherit button))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; flycheck-posframe
|
2022-12-22 07:05:21 +00:00
|
|
|
`(flycheck-posframe-face ((,class (:inherit default))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(flycheck-posframe-background-face ((,class (:background ,bg-alt))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(flycheck-posframe-error-face ((,class (:inherit flycheck-posframe-face :foreground ,red))))
|
|
|
|
`(flycheck-posframe-info-face ((,class (:inherit flycheck-posframe-face :foreground ,fg))))
|
|
|
|
`(flycheck-posframe-warning-face ((,class (:inherit flycheck-posframe-face :foreground ,yellow))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; git-gutter
|
|
|
|
`(git-gutter:modified ((,class (:foreground ,orange))))
|
|
|
|
`(git-gutter:added ((,class (:foreground ,green))))
|
|
|
|
`(git-gutter:deleted ((,class (:foreground ,red))))
|
|
|
|
|
|
|
|
;; git-gutter+
|
|
|
|
`(git-gutter+-modified ((,class (:background nil :foreground ,orange))))
|
|
|
|
`(git-gutter+-added ((,class (:background nil :foreground ,green))))
|
|
|
|
`(git-gutter+-deleted ((,class (:background nil :foreground ,red))))
|
|
|
|
|
|
|
|
;; git-gutter-fringe
|
2022-12-22 07:05:21 +00:00
|
|
|
`(git-gutter-fr:modified ((,class (:inherit git-gutter:modified))))
|
|
|
|
`(git-gutter-fr:added ((,class (:inherit git-gutter:added))))
|
|
|
|
`(git-gutter-fr:deleted ((,class (:inherit git-gutter:deleted))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; helm
|
2022-12-22 07:05:21 +00:00
|
|
|
`(helm-selection ((,class (:inherit bold :background ,dark-blue :distant-foreground ,blue))))
|
|
|
|
`(helm-match ((,class (:inherit bold :foreground ,blue :distant-foreground ,base-8))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(helm-source-header ((,class (:background ,base-2 :foreground ,base-5))))
|
|
|
|
`(helm-swoop-target-line-face ((,class (:foreground ,blue :inverse-video t))))
|
|
|
|
`(helm-visible-mark ((,class (:inherit (bold highlight)))))
|
|
|
|
`(helm-ff-file ((,class (:foreground ,fg))))
|
|
|
|
`(helm-ff-prefix ((,class (:foreground ,blue))))
|
|
|
|
`(helm-ff-dotted-directory ((,class (:foreground ,gray))))
|
|
|
|
`(helm-ff-directory ((,class (:foreground ,pink))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(helm-ff-executable ((,class (:inherit italic :foreground ,base-8))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(helm-grep-match ((,class (:foreground ,blue :distant-foreground ,red))))
|
|
|
|
`(helm-grep-file ((,class (:foreground ,cyan))))
|
|
|
|
`(helm-grep-lineno ((,class (:foreground ,base-5))))
|
|
|
|
`(helm-grep-finish ((,class (:foreground ,green))))
|
|
|
|
`(helm-swoop-target-line-face ((,class (:foreground ,blue :inverse-video t))))
|
|
|
|
`(helm-swoop-target-line-block-face ((,class (:foreground ,yellow))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(helm-swoop-target-word-face ((,class (:inherit bold :foreground ,green))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(helm-swoop-target-number-face ((,class (:foreground ,base-5))))
|
|
|
|
|
2022-12-22 08:58:17 +00:00
|
|
|
;; highlight-indentation
|
2022-12-22 07:05:21 +00:00
|
|
|
`(highlight-indentation-face ((,class (:inherit hl-line))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(highlight-indentation-current-column-face ((,class (:background ,base-1))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(highlight-indentation-guides-odd-face ((,class (:inherit highlight-indentation-face))))
|
|
|
|
`(highlight-indentation-guides-even-face ((,class (:inherit highlight-indentation-face))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; hl-todo
|
|
|
|
`(hl-todo ((,class (:foreground ,yellow :weight bold))))
|
|
|
|
|
|
|
|
;; hydra
|
|
|
|
`(hydra-face-red ((,class (:foreground ,red :weight bold))))
|
|
|
|
`(hydra-face-blue ((,class (:foreground ,blue :weight bold))))
|
|
|
|
`(hydra-face-amaranth ((,class (:foreground ,magenta :weight bold))))
|
|
|
|
`(hydra-face-pink ((,class (:foreground ,violet :weight bold))))
|
|
|
|
`(hydra-face-teal ((,class (:foreground ,teal :weight bold))))
|
|
|
|
|
|
|
|
;; ido-vertical-mode
|
|
|
|
`(ido-vertical-match-face ((,class (:foreground ,blue :underline nil))))
|
|
|
|
|
|
|
|
;; ivy
|
|
|
|
`(ivy-current-match ((,class (:background ,base-4 :distant-foreground nil))))
|
|
|
|
`(ivy-minibuffer-match-face-1 ((,class (:background nil :foreground ,gray :weight light))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(ivy-minibuffer-match-face-2 ((,class (:inherit ivy-minibuffer-match-face-1 :background ,base-1 :foreground ,magenta :weight semi-bold))))
|
|
|
|
`(ivy-minibuffer-match-face-3 ((,class (:inherit ivy-minibuffer-match-face-2 :foreground ,green :weight semi-bold))))
|
|
|
|
`(ivy-minibuffer-match-face-4 ((,class (:inherit ivy-minibuffer-match-face-2 :foreground ,yellow :weight semi-bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(ivy-minibuffer-match-highlight ((,class (:foreground ,teal))))
|
|
|
|
`(ivy-highlight-face ((,class (:foreground ,teal))))
|
|
|
|
`(ivy-confirm-face ((,class (:foreground ,green))))
|
|
|
|
`(ivy-match-required-face ((,class (:foreground ,red))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(ivy-virtual ((,class (:inherit italic :foreground ,base-5))))
|
|
|
|
`(ivy-modified-buffer ((,class (:inherit bold :foreground ,orange))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; ivy-posframe
|
|
|
|
`(ivy-posframe ((,class (:background ,bg-alt))))
|
|
|
|
|
|
|
|
;; linum-relative
|
2022-12-22 07:05:21 +00:00
|
|
|
`(linum-relative-current-face ((,class (:inherit line-number-current-line))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; lsp
|
|
|
|
`(lsp-face-highlight-textual ((,class (:background ,base-4 :distant-foreground ,base-0))))
|
|
|
|
`(lsp-face-highlight-read ((,class (:background ,base-4 :distant-foreground ,base-0))))
|
|
|
|
`(lsp-face-highlight-write ((,class (:background ,base-4 :distant-foreground ,base-0))))
|
|
|
|
|
|
|
|
;; lsp-ui-doc
|
|
|
|
`(lsp-ui-doc-background ((,class (:background ,base-3))))
|
|
|
|
`(lsp-ui-doc-header ((,class (:background ,base-0 :bold bold :box (:line-width 5 :color ,base-0)))))
|
|
|
|
|
|
|
|
;; lsp-ui-peek
|
2022-12-22 07:05:21 +00:00
|
|
|
`(lsp-ui-peek-filename ((,class (:inherit mode-line-buffer-id))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(lsp-ui-peek-header ((,class (:background ,base-0 :foreground ,fg :bold bold :box (:line-width 5 :color ,base-0)))))
|
|
|
|
`(lsp-ui-peek-footer ((,class (:background ,base-3))))
|
|
|
|
`(lsp-ui-peek-selection ((,class (:background ,blue :foreground ,bg :bold bold))))
|
|
|
|
`(lsp-ui-peek-list ((,class (:background ,base-3))))
|
|
|
|
`(lsp-ui-peek-peek ((,class (:background ,base-3))))
|
|
|
|
`(lsp-ui-peek-highlight ((,class (:background ,orange :foreground ,base-0))))
|
|
|
|
`(lsp-ui-peek-line-number ((,class (:foreground ,base-5))))
|
|
|
|
|
|
|
|
;; lsp-ui-sideline
|
|
|
|
`(lsp-ui-sideline ((,class (:foreground ,yellow))))
|
|
|
|
|
|
|
|
;; magit
|
|
|
|
`(magit-bisect-bad ((,class (:foreground ,red))))
|
|
|
|
`(magit-bisect-good ((,class (:foreground ,green))))
|
|
|
|
`(magit-bisect-skip ((,class (:foreground ,orange))))
|
2022-12-14 06:45:48 +00:00
|
|
|
`(magit-blame-date ((,class (:foreground ,blue))))
|
|
|
|
`(magit-blame-heading ((,class (:foreground ,base-7 :underline (:color ,base-3) :extend t :box ,(when flat-button-available-p '(:line-width 4 :style flat-button))))))
|
|
|
|
`(magit-branch-current ((,class (:foreground ,orange))))
|
2022-12-11 21:26:31 +00:00
|
|
|
`(magit-branch-local ((,class (:foreground ,blue))))
|
2022-12-14 06:45:48 +00:00
|
|
|
`(magit-branch-remote ((,class (:foreground ,blue))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(magit-cherry-equivalent ((,class (:foreground ,violet))))
|
|
|
|
`(magit-cherry-unmatched ((,class (:foreground ,cyan))))
|
2022-12-22 11:10:01 +00:00
|
|
|
`(magit-diff-added ((,class (:background ,base-0 :foreground ,teal))))
|
|
|
|
`(magit-diff-removed ((,class (:background ,base-0 :foreground ,red))))
|
|
|
|
`(magit-diff-base ((,class (:background ,base-0 :foreground ,yellow))))
|
|
|
|
`(magit-diff-added-highlight ((,class (:background ,base-2 :inherit magit-diff-added))))
|
|
|
|
`(magit-diff-removed-highlight ((,class (:background ,base-2 :inherit magit-diff-removed))))
|
|
|
|
`(magit-diff-base-highlight ((,class (:background ,base-2 :inherit magit-diff-base))))
|
2022-12-14 06:45:48 +00:00
|
|
|
`(magit-diff-context ((,class (:foreground ,fg-alt))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(magit-diff-context-highlight ((,class (:inherit hl-line :foreground ,base-6))))
|
2022-12-20 00:23:53 +00:00
|
|
|
`(magit-diff-file-heading ((,class (:foreground ,fg :extend t :box ,(when flat-button-available-p '(:line-width 2 :style flat-button))))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(magit-diff-file-heading-highlight ((,class (:inherit hl-line))))
|
|
|
|
`(magit-diff-file-heading-selection ((,class (:inherit hl-line :foreground ,blue :weight bold))))
|
2022-12-14 06:45:48 +00:00
|
|
|
`(magit-diff-hunk-heading ((,class (:background ,base-3 :foreground ,base-7 :extend t :box ,(when flat-button-available-p '(:line-width 1 :style flat-button))))))
|
|
|
|
`(magit-diff-hunk-heading-highlight ((,class (:background ,base-4 :foreground ,fg))))
|
|
|
|
`(magit-diff-hunk-heading-selection ((,class (:background ,base-4 :foreground ,blue :weight bold))))
|
|
|
|
`(magit-diff-lines-boundary ((,class (:background ,blue))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(magit-diff-lines-heading ((,class (:inherit magit-diff-hunk-heading-highlight))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(magit-diffstat-added ((,class (:foreground ,green))))
|
|
|
|
`(magit-diffstat-removed ((,class (:foreground ,red))))
|
|
|
|
`(magit-dimmed ((,class (:foreground ,base-5))))
|
|
|
|
`(magit-hash ((,class (:foreground ,base-5))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(magit-header-line ((,class (:inherit header-line))))
|
2022-12-13 09:07:21 +00:00
|
|
|
`(magit-log-author ((,class (:foreground ,blue))))
|
|
|
|
`(magit-log-date ((,class (:foreground ,base-5))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(magit-log-graph ((,class (:foreground ,base-5))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(magit-process-ng ((,class (:inherit error))))
|
|
|
|
`(magit-process-ok ((,class (:inherit success))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(magit-reflog-amend ((,class (:foreground ,magenta))))
|
|
|
|
`(magit-reflog-checkout ((,class (:foreground ,blue))))
|
|
|
|
`(magit-reflog-cherry-pick ((,class (:foreground ,green))))
|
|
|
|
`(magit-reflog-commit ((,class (:foreground ,green))))
|
|
|
|
`(magit-reflog-merge ((,class (:foreground ,green))))
|
|
|
|
`(magit-reflog-other ((,class (:foreground ,cyan))))
|
|
|
|
`(magit-reflog-rebase ((,class (:foreground ,magenta))))
|
|
|
|
`(magit-reflog-remote ((,class (:foreground ,cyan))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(magit-reflog-reset ((,class (:inherit error))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(magit-refname ((,class (:foreground ,base-5))))
|
2022-12-22 12:01:42 +00:00
|
|
|
`(magit-section-heading ((,class (:foreground ,base-8 :weight bold :box ,(when flat-button-available-p '(:line-width 4 :style flat-button))))))
|
2022-12-11 21:26:31 +00:00
|
|
|
`(magit-section-heading-selection ((,class (:foreground ,base-8 :weight bold))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(magit-section-highlight ((,class (:inherit hl-line))))
|
2022-12-22 12:03:27 +00:00
|
|
|
`(magit-section-secondary-heading ((,class (:foreground ,base-7 :weight bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(magit-sequence-drop ((,class (:foreground ,red))))
|
|
|
|
`(magit-sequence-head ((,class (:foreground ,blue))))
|
|
|
|
`(magit-sequence-part ((,class (:foreground ,orange))))
|
|
|
|
`(magit-sequence-stop ((,class (:foreground ,green))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(magit-signature-bad ((,class (:inherit error))))
|
|
|
|
`(magit-signature-error ((,class (:inherit error))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(magit-signature-expired ((,class (:foreground ,orange))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(magit-signature-good ((,class (:inherit success))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(magit-signature-revoked ((,class (:foreground ,magenta))))
|
|
|
|
`(magit-signature-untrusted ((,class (:foreground ,yellow))))
|
2022-12-14 07:22:13 +00:00
|
|
|
`(magit-tag ((,class (:foreground ,fg-alt))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(magit-filename ((,class (:foreground ,violet))))
|
2022-12-22 12:03:27 +00:00
|
|
|
`(git-commit-summary ((,class (:foreground ,base-8))))
|
|
|
|
`(git-commit-overlong-summary ((,class (:foreground ,base-7 :strike-through t))))
|
2022-12-14 04:29:47 +00:00
|
|
|
`(git-commit-nonempty-second-line ((,class (:foreground ,base-7 :strike-through t))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(git-commit-known-pseudo-header ((,class (:inherit git-commit-pseudo-header))))
|
2022-12-13 08:49:33 +00:00
|
|
|
`(git-commit-comment-heading ((,class (:foreground ,base-7))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(git-commit-comment-branch-local ((,class (:inherit magit-branch-local))))
|
|
|
|
`(git-commit-comment-branch-remote ((,class (:inherit magit-branch-remote))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 00:23:12 +00:00
|
|
|
;; marginalia
|
2022-12-22 07:05:21 +00:00
|
|
|
`(marginalia-key ((,class (:inherit help-key-binding))))
|
2022-12-20 00:23:12 +00:00
|
|
|
`(marginalia-value ((,class (:foreground ,base-7))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(marginalia-size ((,class (:inherit font-lock-doc-face))))
|
|
|
|
`(marginalia-date ((,class (:inherit font-lock-comment-face))))
|
2022-12-20 00:23:12 +00:00
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; mic-paren
|
2022-12-22 07:05:21 +00:00
|
|
|
`(paren-face-match ((,class (:inherit show-paren-match))))
|
|
|
|
`(paren-face-mismatch ((,class (:inherit show-paren-mismatch))))
|
|
|
|
`(paren-face-no-match ((,class (:inherit show-paren-mismatch))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-13 08:05:15 +00:00
|
|
|
;; mood-line
|
2022-12-29 06:32:25 +00:00
|
|
|
`(mood-line-buffer-status-narrowed ((,class (:foreground ,base-7))))
|
2022-12-13 08:05:15 +00:00
|
|
|
`(mood-line-status-info ((,class (:foreground ,teal))))
|
2023-01-26 10:50:58 +00:00
|
|
|
`(mood-line-unimportant ((,class (:foreground ,base-5))))
|
2022-12-13 08:05:15 +00:00
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; multiple-cursors
|
2022-12-22 07:05:21 +00:00
|
|
|
`(mc/cursor-face ((,class (:inherit cursor :background ,fg-alt))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; nav-flash
|
|
|
|
`(nav-flash-face ((,class (:background ,dark-blue :foreground ,base-8 :weight bold))))
|
|
|
|
|
|
|
|
;; neotree
|
2022-12-22 12:00:16 +00:00
|
|
|
`(neo-root-dir-face ((,class (:foreground ,base-8 :weight bold))))
|
2022-12-30 04:20:26 +00:00
|
|
|
`(neo-dir-link-face ((,class (:foreground ,base-7))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(neo-file-link-face ((,class (:foreground ,fg))))
|
2022-12-30 04:20:26 +00:00
|
|
|
`(neo-expand-btn-face ((,class (:foreground ,base-4))))
|
|
|
|
`(neo-vc-edited-face ((,class (:foreground ,orange))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(neo-vc-added-face ((,class (:foreground ,green))))
|
|
|
|
`(neo-vc-removed-face ((,class (:foreground ,red :strike-through t))))
|
2022-12-30 04:20:26 +00:00
|
|
|
`(neo-vc-ignored-face ((,class (:foreground ,base-6))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; nlinum
|
2022-12-22 07:05:21 +00:00
|
|
|
`(nlinum-current-line ((,class (:inherit line-number-current-line))))
|
|
|
|
`(nlinum-hl-face ((,class (:inherit line-number-current-line))))
|
|
|
|
`(nlinum-relative-current-face ((,class (:inherit line-number-current-line))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; popup
|
2023-02-12 21:58:01 +00:00
|
|
|
`(popup-face ((,class (:background ,base-3 :foreground ,base-8))))
|
|
|
|
`(popup-tip-face ((,class (:inherit tooltip))))
|
2022-12-30 00:24:16 +00:00
|
|
|
`(popup-selection-face ((,class (:background ,base-4))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; rainbow-delimiters
|
2022-12-22 10:38:24 +00:00
|
|
|
`(rainbow-delimiters-depth-1-face ((,class (:foreground ,(if adwaita-dark-theme-gray-rainbow-delimiters base-7 blue)))))
|
|
|
|
`(rainbow-delimiters-depth-2-face ((,class (:foreground ,(if adwaita-dark-theme-gray-rainbow-delimiters base-7 magenta)))))
|
|
|
|
`(rainbow-delimiters-depth-3-face ((,class (:foreground ,(if adwaita-dark-theme-gray-rainbow-delimiters base-7 green)))))
|
|
|
|
`(rainbow-delimiters-depth-4-face ((,class (:foreground ,(if adwaita-dark-theme-gray-rainbow-delimiters base-7 violet)))))
|
|
|
|
`(rainbow-delimiters-depth-5-face ((,class (:foreground ,(if adwaita-dark-theme-gray-rainbow-delimiters base-7 teal)))))
|
|
|
|
`(rainbow-delimiters-depth-6-face ((,class (:foreground ,(if adwaita-dark-theme-gray-rainbow-delimiters base-7 blue)))))
|
|
|
|
`(rainbow-delimiters-depth-7-face ((,class (:foreground ,(if adwaita-dark-theme-gray-rainbow-delimiters base-7 magenta)))))
|
|
|
|
`(rainbow-delimiters-depth-8-face ((,class (:foreground ,(if adwaita-dark-theme-gray-rainbow-delimiters base-7 green)))))
|
|
|
|
`(rainbow-delimiters-depth-9-face ((,class (:foreground ,(if adwaita-dark-theme-gray-rainbow-delimiters base-7 violet)))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(rainbow-delimiters-unmatched-face ((,class (:foreground ,red :weight ultra-bold))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(rainbow-delimiters-mismatched-face ((,class (:inherit rainbow-delimiters-unmatched-face))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2023-02-03 01:43:07 +00:00
|
|
|
;; sly
|
|
|
|
`(sly-action-face ((,class (:inherit link))))
|
|
|
|
`(sly-mrepl-prompt-face ((,class (:inherit font-lock-type-face))))
|
|
|
|
`(sly-mrepl-output-face ((,class (:inherit font-lock-doc-face))))
|
|
|
|
`(sly-mrepl-note-face ((,class (:inherit font-lock-comment-face))))
|
|
|
|
`(sly-db-section-face ((,class (:foreground ,base-8 :weight bold :box ,(when flat-button-available-p '(:line-width 4 :style flat-button))))))
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; smartparens
|
|
|
|
`(sp-pair-overlay-face ((,class (:background ,base-4))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(sp-show-pair-match-face ((,class (:inherit show-paren-match))))
|
|
|
|
`(sp-show-pair-mismatch-face ((,class (:inherit show-paren-mismatch))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; solaire-mode
|
2022-12-22 07:05:21 +00:00
|
|
|
`(solaire-default-face ((,class (:inherit default :background ,bg-alt))))
|
2022-12-30 00:24:24 +00:00
|
|
|
`(solaire-hl-line-face ((,class (:inherit hl-line :background ,base-3))))
|
2022-12-30 04:19:40 +00:00
|
|
|
`(solaire-fringe-face ((,class (:inherit solaire-default-face))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; swiper
|
|
|
|
`(swiper-line-face ((,class (:background ,blue :foreground ,base-0))))
|
2022-12-22 08:58:28 +00:00
|
|
|
`(swiper-match-face-1 ((,class (:background ,base-0 :foreground ,base-5))))
|
|
|
|
`(swiper-match-face-2 ((,class (:background ,orange :foreground ,base-0 :weight bold))))
|
|
|
|
`(swiper-match-face-3 ((,class (:background ,magenta :foreground ,base-0 :weight bold))))
|
|
|
|
`(swiper-match-face-4 ((,class (:background ,green :foreground ,base-0 :weight bold))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-12 06:55:27 +00:00
|
|
|
;; transient
|
2022-12-12 20:10:26 +00:00
|
|
|
`(transient-heading ((,class (:foreground ,base-8 :weight bold))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(transient-key ((,class (:inherit help-key-binding))))
|
|
|
|
`(transient-argument ((,class (:inherit success))))
|
|
|
|
`(transient-blue ((,class (:inherit transient-key :foreground ,blue))))
|
|
|
|
`(transient-pink ((,class (:inherit transient-key :foreground ,pink))))
|
|
|
|
`(transient-purple ((,class (:inherit transient-key :foreground ,magenta))))
|
|
|
|
`(transient-red ((,class (:inherit transient-key :foreground ,red))))
|
|
|
|
`(transient-teal ((,class (:inherit transient-key :foreground ,teal))))
|
2022-12-11 21:26:23 +00:00
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; treemacs
|
2022-12-22 07:05:21 +00:00
|
|
|
`(treemacs-root-face ((,class (:inherit font-lock-string-face))))
|
2022-12-11 20:24:03 +00:00
|
|
|
`(treemacs-file-face ((,class (:foreground ,fg))))
|
|
|
|
`(treemacs-directory-face ((,class (:foreground ,blue))))
|
|
|
|
`(treemacs-tags-face ((,class (:foreground ,blue))))
|
|
|
|
`(treemacs-git-modified-face ((,class (:foreground ,violet))))
|
|
|
|
`(treemacs-git-added-face ((,class (:foreground ,green))))
|
|
|
|
`(treemacs-git-conflict-face ((,class (:foreground ,red))))
|
2022-12-22 07:05:21 +00:00
|
|
|
`(treemacs-git-untracked-face ((,class (:inherit font-lock-doc-face))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;; undo-tree
|
|
|
|
`(undo-tree-visualizer-default-face ((,class (:foreground ,base-5))))
|
|
|
|
`(undo-tree-visualizer-current-face ((,class (:foreground ,green :weight bold))))
|
|
|
|
`(undo-tree-visualizer-unmodified-face ((,class (:foreground ,base-5))))
|
|
|
|
`(undo-tree-visualizer-active-branch-face ((,class (:foreground ,blue))))
|
|
|
|
`(undo-tree-visualizer-register-face ((,class (:foreground ,yellow))))
|
|
|
|
|
|
|
|
;; vertico
|
2022-12-30 01:16:41 +00:00
|
|
|
`(vertico-current ((,class (:background ,base-3 :bold ,(when adwaita-dark-theme-bold-vertico-current 'bold)))))
|
2022-12-30 01:16:31 +00:00
|
|
|
`(vertico-multiline ((,class (:foreground ,base-6))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 23:20:26 +00:00
|
|
|
;; vundo
|
|
|
|
`(vundo-default ((,class (:background ,bg-alt))))
|
|
|
|
`(vundo-stem ((,class (:foreground ,base-5))))
|
|
|
|
`(vundo-node ((,class (:foreground ,base-6))))
|
|
|
|
`(vundo-highlight ((,class (:foreground ,blue))))
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;; which-key
|
|
|
|
`(which-key-key-face ((,class (:foreground ,green))))
|
|
|
|
`(which-key-group-description-face ((,class (:foreground ,violet))))
|
|
|
|
`(which-key-command-description-face ((,class (:foreground ,blue))))
|
|
|
|
`(which-key-local-map-description-face ((,class (:foreground ,magenta))))
|
|
|
|
|
|
|
|
;; yasnippet
|
2022-12-22 07:05:21 +00:00
|
|
|
`(yas-field-highlight-face ((,class (:inherit match))))))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
2022-12-20 01:23:45 +00:00
|
|
|
;; NeoTree configuration
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
|
|
|
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Internal functions
|
|
|
|
;; ---------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-13 10:20:11 +00:00
|
|
|
(defun adwaita-dark-theme--neotree-insert-root (node)
|
|
|
|
"Insert root directory NODE at point."
|
2022-12-30 04:20:26 +00:00
|
|
|
(insert " ")
|
|
|
|
(insert-button (concat ""
|
|
|
|
(propertize "🖿"
|
|
|
|
'face '(:inherit (neo-root-dir-face) :height 1.5))
|
|
|
|
" "
|
|
|
|
(propertize (or (neo-path--file-short-name node) "-")
|
|
|
|
'face 'neo-root-dir-face)
|
|
|
|
(propertize " "
|
|
|
|
'display `((space :align-to (- right 0 1)))))
|
|
|
|
'face '(nil)
|
|
|
|
'follow-link t
|
2022-12-30 05:50:57 +00:00
|
|
|
'neo-full-path (directory-file-name node)
|
2022-12-30 05:57:49 +00:00
|
|
|
'keymap (let ((button-keymap (make-sparse-keymap)))
|
2022-12-30 04:20:26 +00:00
|
|
|
(define-key button-keymap [mouse-2] (lambda ()
|
|
|
|
(interactive)
|
|
|
|
(neotree-hidden-file-toggle)))
|
|
|
|
(define-key button-keymap [mouse-3] (lambda ()
|
|
|
|
(interactive)
|
|
|
|
(mouse-set-point last-input-event)
|
2022-12-30 05:50:57 +00:00
|
|
|
(neotree-select-up-node)))
|
2022-12-30 04:20:26 +00:00
|
|
|
button-keymap)
|
|
|
|
'help-echo "mouse-1: Toggle hidden files\nmouse-3: Move root up one directory")
|
|
|
|
(neo-buffer--newline-and-begin))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-13 10:20:11 +00:00
|
|
|
(defun adwaita-dark-theme--neotree-insert-dir (node depth expanded)
|
|
|
|
"Insert directory NODE with indentation level DEPTH and state EXPANDED at point."
|
2022-12-11 20:24:03 +00:00
|
|
|
(let ((short-name (neo-path--file-short-name node))
|
2022-12-30 04:20:26 +00:00
|
|
|
(is-hidden (neo-filepath-hidden-p node)))
|
|
|
|
(insert " ")
|
|
|
|
(insert-button (concat (make-string (- (* depth 2) 1) ?\s)
|
|
|
|
(propertize (concat "🖿 "
|
|
|
|
short-name)
|
|
|
|
'face (if is-hidden
|
|
|
|
'(:inherit shadow neo-dir-link-face)
|
|
|
|
'neo-dir-link-face))
|
|
|
|
(propertize " "
|
|
|
|
'display `((space :align-to (- right 0 3))))
|
|
|
|
(propertize (if expanded "◢" " ")
|
|
|
|
'face '(:inherit neo-expand-btn-face :height 1.2))
|
|
|
|
(propertize " "
|
|
|
|
'display `((space :align-to (- right 0 1)))))
|
|
|
|
'face '(nil)
|
2022-12-11 20:24:03 +00:00
|
|
|
'follow-link t
|
|
|
|
'neo-full-path node
|
2022-12-30 04:20:26 +00:00
|
|
|
'keymap (let ((button-keymap (make-sparse-keymap)))
|
|
|
|
(define-key button-keymap [mouse-2] (lambda ()
|
|
|
|
(interactive)
|
|
|
|
(let ((neo-click-changes-root nil))
|
2022-12-30 05:57:49 +00:00
|
|
|
(ignore neo-click-changes-root)
|
2022-12-30 04:20:26 +00:00
|
|
|
(neo-open-dir node))))
|
|
|
|
(define-key button-keymap [mouse-3] (lambda ()
|
|
|
|
(interactive)
|
|
|
|
(mouse-set-point last-input-event)
|
|
|
|
(neotree-change-root)))
|
|
|
|
button-keymap)
|
|
|
|
'help-echo "mouse-1: Fold/unfold directory\nmouse-3: Change root to directory")
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
(neo-buffer--node-list-set nil node)
|
|
|
|
(neo-buffer--newline-and-begin)))
|
|
|
|
|
2022-12-13 10:20:11 +00:00
|
|
|
(defun adwaita-dark-theme--neotree-insert-file (node depth)
|
|
|
|
"Insert file NODE with indentation level DEPTH at point."
|
2022-12-30 04:20:26 +00:00
|
|
|
(let* ((short-name (neo-path--file-short-name node))
|
|
|
|
(is-hidden (neo-filepath-hidden-p node)))
|
|
|
|
(insert " ")
|
|
|
|
(insert-button (concat (make-string (- (* depth 2) 1) ?\s)
|
|
|
|
short-name
|
|
|
|
(propertize " "
|
|
|
|
'display `((space :align-to (- right 0 1)))))
|
2022-12-11 20:24:03 +00:00
|
|
|
'follow-link t
|
2022-12-30 04:20:26 +00:00
|
|
|
'face (if is-hidden
|
|
|
|
'(:inherit shadow neo-file-link-face)
|
|
|
|
'neo-file-link-face)
|
2022-12-11 20:24:03 +00:00
|
|
|
'neo-full-path node
|
2022-12-30 04:20:26 +00:00
|
|
|
'keymap (let ((button-keymap (make-sparse-keymap)))
|
|
|
|
(define-key button-keymap [mouse-2] (lambda ()
|
|
|
|
(interactive)
|
|
|
|
(neo-open-file node)))
|
|
|
|
button-keymap)
|
|
|
|
'help-echo "mouse-1: Open file")
|
2022-12-11 20:24:03 +00:00
|
|
|
(neo-buffer--node-list-set nil node)
|
|
|
|
(neo-buffer--newline-and-begin)))
|
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Setup function
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;;;###autoload
|
2022-12-13 09:10:27 +00:00
|
|
|
(defun adwaita-dark-theme-neotree-configuration-enable ()
|
|
|
|
"Enable custom adwaita-dark configuration for use with neotree."
|
2022-12-30 04:20:26 +00:00
|
|
|
(advice-add #'neo-global--create-window :after (lambda ()
|
2022-12-30 00:24:04 +00:00
|
|
|
(setq-local cursor-type nil
|
|
|
|
line-spacing 0.25
|
2022-12-20 00:24:18 +00:00
|
|
|
mode-line-format nil
|
|
|
|
auto-hscroll-mode nil
|
|
|
|
buffer-display-table (make-display-table))
|
2022-12-30 04:20:26 +00:00
|
|
|
(set-display-table-slot buffer-display-table
|
|
|
|
'truncation
|
|
|
|
(make-glyph-code 8230 'fringe))
|
2022-12-20 01:23:45 +00:00
|
|
|
(set-window-fringes neo-global--window 0 0)
|
2022-12-30 04:20:26 +00:00
|
|
|
(visual-line-mode -1)))
|
2022-12-20 00:24:18 +00:00
|
|
|
(advice-add #'neo-buffer--insert-root-entry :override #'adwaita-dark-theme--neotree-insert-root)
|
|
|
|
(advice-add #'neo-buffer--insert-dir-entry :override #'adwaita-dark-theme--neotree-insert-dir)
|
|
|
|
(advice-add #'neo-buffer--insert-file-entry :override #'adwaita-dark-theme--neotree-insert-file))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
2022-12-20 01:23:45 +00:00
|
|
|
;; Arrow fringe bitmaps configuration
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
|
|
|
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Bitmap definitions
|
|
|
|
;; ---------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-13 09:10:27 +00:00
|
|
|
(defconst adwaita-dark-theme--right-arrow-bmp
|
2022-12-11 20:24:03 +00:00
|
|
|
(vector #b00000000
|
|
|
|
#b00000000
|
|
|
|
#b00110000
|
|
|
|
#b00111000
|
|
|
|
#b00111100
|
|
|
|
#b00111000
|
|
|
|
#b00110000
|
|
|
|
#b00000000)
|
|
|
|
"Bitmap used to overwrite Emacs's right line-continuation fringe bitmap.")
|
2022-12-20 01:23:45 +00:00
|
|
|
|
2022-12-13 09:10:27 +00:00
|
|
|
(defconst adwaita-dark-theme--left-arrow-bmp
|
2022-12-11 20:24:03 +00:00
|
|
|
(vector #b00000000
|
|
|
|
#b00000000
|
|
|
|
#b00001100
|
|
|
|
#b00011100
|
|
|
|
#b00111100
|
|
|
|
#b00011100
|
|
|
|
#b00001100
|
|
|
|
#b00000000)
|
|
|
|
"Bitmap used to overwrite Emacs's left line-continuation fringe bitmap.")
|
2022-12-20 01:23:45 +00:00
|
|
|
|
2022-12-13 09:10:27 +00:00
|
|
|
(defconst adwaita-dark-theme--down-arrow-bmp
|
2022-12-11 20:24:03 +00:00
|
|
|
(vector #b00000000
|
|
|
|
#b00000000
|
|
|
|
#b00000000
|
|
|
|
#b00000000
|
|
|
|
#b00000000
|
|
|
|
#b01111110
|
|
|
|
#b00111100
|
|
|
|
#b00011000)
|
|
|
|
"Bitmap used to overwrite Emac's right line-wrapping fringe bitmap.")
|
2022-12-20 01:23:45 +00:00
|
|
|
|
2022-12-13 09:10:27 +00:00
|
|
|
(defconst adwaita-dark-theme--empty-bmp
|
2022-12-11 20:24:03 +00:00
|
|
|
(vector #b0)
|
|
|
|
"Bitmap used to overwrite Emac's left line-wrapping fringe bitmap.")
|
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Setup function
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;;;###autoload
|
2022-12-13 09:10:27 +00:00
|
|
|
(defun adwaita-dark-theme-arrow-fringe-bmp-enable ()
|
2022-12-13 10:20:11 +00:00
|
|
|
"Replace the default line continuation and line wrap arrows with custom bitmaps."
|
2022-12-13 09:10:27 +00:00
|
|
|
(define-fringe-bitmap 'right-arrow adwaita-dark-theme--right-arrow-bmp)
|
|
|
|
(define-fringe-bitmap 'left-arrow adwaita-dark-theme--left-arrow-bmp)
|
|
|
|
(define-fringe-bitmap 'right-curly-arrow adwaita-dark-theme--down-arrow-bmp)
|
|
|
|
(define-fringe-bitmap 'left-curly-arrow adwaita-dark-theme--empty-bmp))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
|
|
|
;;
|
|
|
|
;; diff-hl fringe bitmaps configuration
|
|
|
|
;;
|
|
|
|
;; -------------------------------------------------------------------------- ;;
|
|
|
|
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Bitmap definitions
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
2022-12-20 00:20:19 +00:00
|
|
|
(defconst adwaita-dark-theme--diff-hl-bmp
|
2022-12-13 09:10:27 +00:00
|
|
|
(define-fringe-bitmap 'adwaita-dark-theme--diff-hl-bmp
|
2022-12-11 20:24:03 +00:00
|
|
|
(vector #b11100000)
|
|
|
|
1 8
|
|
|
|
'(center t))
|
|
|
|
"Fringe bitmap for use with `diff-hl'.")
|
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Internal functions
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
2022-12-20 00:20:19 +00:00
|
|
|
(defun adwaita-dark-theme--diff-hl-fringe-bmp-function (_type _pos)
|
2022-12-11 20:24:03 +00:00
|
|
|
"Fringe bitmap function for use as `diff-hl-fringe-bmp-function'."
|
2022-12-13 09:10:27 +00:00
|
|
|
adwaita-dark-theme--diff-hl-bmp)
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Setup function
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
2022-12-20 00:20:19 +00:00
|
|
|
;;;###autoload
|
|
|
|
(defun adwaita-dark-theme-diff-hl-fringe-bmp-enable ()
|
|
|
|
"Enable custom adwaita-dark fringe bitmaps for use with flymake."
|
|
|
|
(setq diff-hl-fringe-bmp-function #'adwaita-dark-theme--diff-hl-fringe-bmp-function))
|
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
|
|
|
;;
|
|
|
|
;; flycheck/flymake fringe bitmaps configuration
|
|
|
|
;;
|
|
|
|
;; -------------------------------------------------------------------------- ;;
|
|
|
|
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Bitmap definitions
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
|
|
|
(defconst adwaita-dark-theme--dot-bmp
|
|
|
|
(vector #b01100000
|
|
|
|
#b01100000)
|
|
|
|
"Bitmap used to overwrite flycheck's continuation fringe bitmap.")
|
|
|
|
|
2022-12-13 09:10:27 +00:00
|
|
|
(define-fringe-bitmap 'adwaita-dark-theme--marker-bmp
|
2022-12-11 20:24:03 +00:00
|
|
|
(vector #b11100000
|
|
|
|
#b11110000
|
|
|
|
#b11111000
|
|
|
|
#b11111100
|
|
|
|
#b11111000
|
|
|
|
#b11110000
|
|
|
|
#b11100000))
|
2022-12-20 01:23:45 +00:00
|
|
|
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Flycheck setup function
|
|
|
|
;; ---------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
2022-12-13 09:10:27 +00:00
|
|
|
(defun adwaita-dark-theme-flycheck-fringe-bmp-enable ()
|
|
|
|
"Enable custom adwaita-dark fringe bitmaps for use with flycheck."
|
|
|
|
(flycheck-redefine-standard-error-levels nil 'adwaita-dark-theme--marker-bmp)
|
|
|
|
(define-fringe-bitmap 'flycheck-fringe-bitmap-continuation adwaita-dark-theme--dot-bmp))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Flymake setup function
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
|
2022-12-11 20:24:03 +00:00
|
|
|
;;;###autoload
|
2022-12-13 09:10:27 +00:00
|
|
|
(defun adwaita-dark-theme-flymake-fringe-bmp-enable ()
|
|
|
|
"Enable custom adwaita-dark fringe bitmaps for use with flymake."
|
2022-12-20 00:24:18 +00:00
|
|
|
(setq flymake-error-bitmap '(adwaita-dark-theme--marker-bmp compilation-error)
|
|
|
|
flymake-warning-bitmap '(adwaita-dark-theme--marker-bmp compilation-warning)
|
|
|
|
flymake-note-bitmap '(adwaita-dark-theme--marker-bmp compilation-info)))
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
2022-12-20 01:23:45 +00:00
|
|
|
;; Provide theme
|
2022-12-11 20:24:03 +00:00
|
|
|
;;
|
2022-12-20 01:23:45 +00:00
|
|
|
;; -------------------------------------------------------------------------- ;;
|
|
|
|
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Register theme folder location
|
|
|
|
;; ---------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
|
|
|
|
;;;###autoload
|
|
|
|
(when (and (boundp 'custom-theme-load-path) load-file-name)
|
|
|
|
(add-to-list 'custom-theme-load-path
|
|
|
|
(file-name-as-directory (file-name-directory load-file-name))))
|
|
|
|
|
2022-12-20 01:23:45 +00:00
|
|
|
|
|
|
|
;; ---------------------------------- ;;
|
|
|
|
;; Provide theme/package
|
|
|
|
;; ---------------------------------- ;;
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-13 09:10:27 +00:00
|
|
|
(provide-theme 'adwaita-dark)
|
|
|
|
(provide 'adwaita-dark-theme)
|
2022-12-11 20:24:03 +00:00
|
|
|
|
2022-12-13 09:10:27 +00:00
|
|
|
;;; adwaita-dark-theme.el ends here
|