72 lines
2.2 KiB
EmacsLisp
72 lines
2.2 KiB
EmacsLisp
;;; config.el --- Theming Layer configuration File for Spacemacs
|
|
;;
|
|
;; Copyright (c) 2012-2021 Sylvain Benner & Contributors
|
|
;;
|
|
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
|
|
;; URL: https://github.com/syl20bnr/spacemacs
|
|
;;
|
|
;; This file is not part of GNU Emacs.
|
|
;;
|
|
;; 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 3 of the License, 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. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
(defvar theming-modifications '()
|
|
"An alist of theme modifications. Each element should
|
|
be on the form (THEME . SPEC), where THEME is a symbol
|
|
representing a theme, and SPEC is an alist mapping faces
|
|
to face specs (see `defface').")
|
|
|
|
(defvar theming-headings-inherit-from-default '()
|
|
"A list of themes where all headings should inherit
|
|
from the default face, or the symbol `all'.")
|
|
|
|
(defvar theming-headings-same-size '()
|
|
"A list of themes where all headings should have the
|
|
same size, or the symbol `all'.")
|
|
|
|
(defvar theming-headings-bold '()
|
|
"A list of themes where all headings should be bold,
|
|
or the symbol `all'.")
|
|
|
|
(defvar spacemacs--theming-modified-faces '())
|
|
|
|
(defvar spacemacs--theming-header-faces
|
|
'(font-latex-sectioning-0-face
|
|
font-latex-sectioning-1-face
|
|
font-latex-sectioning-2-face
|
|
font-latex-sectioning-3-face
|
|
font-latex-sectioning-4-face
|
|
font-latex-sectioning-5-face
|
|
font-latex-slide-title-face
|
|
info-title-1
|
|
info-title-2
|
|
info-title-3
|
|
info-title-4
|
|
markdown-header-face
|
|
markdown-header-face-1
|
|
markdown-header-face-2
|
|
markdown-header-face-3
|
|
markdown-header-face-4
|
|
markdown-header-face-5
|
|
markdown-header-face-6
|
|
org-document-title
|
|
org-level-1
|
|
org-level-2
|
|
org-level-3
|
|
org-level-4
|
|
org-level-5
|
|
org-level-6
|
|
org-level-7
|
|
org-level-8)
|
|
"List of header faces.")
|