75 lines
2.8 KiB
EmacsLisp
75 lines
2.8 KiB
EmacsLisp
;;; modus-vivendi-theme.el --- Elegant, highly legible and customizable light theme -*- lexical-binding:t -*-
|
||
|
||
;; Copyright (C) 2019-2022 Free Software Foundation, Inc.
|
||
|
||
;; Author: Protesilaos Stavrou <info@protesilaos.com>
|
||
;; Maintainer: Modus-Themes Development <~protesilaos/modus-themes@lists.sr.ht>
|
||
;; URL: https://git.sr.ht/~protesilaos/modus-themes
|
||
;; Mailing-List: https://lists.sr.ht/~protesilaos/modus-themes
|
||
;; Version: 2.6.0
|
||
;; Package-Requires: ((emacs "27.1"))
|
||
;; Keywords: faces, theme, accessibility
|
||
|
||
;; This file is part of GNU Emacs.
|
||
|
||
;; GNU Emacs 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.
|
||
;;
|
||
;; GNU Emacs 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 GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
||
|
||
;;; Commentary:
|
||
;;
|
||
;; Modus Vivendi is the dark variant of the Modus themes (Modus Operandi
|
||
;; is the light one). The themes are designed for color-contrast
|
||
;; accessibility. More specifically:
|
||
;;
|
||
;; 1. Provide a consistent minimum contrast ratio between background
|
||
;; and foreground values of 7:1 or higher. This meets the highest
|
||
;; such accessibility criterion per the guidelines of the Worldwide
|
||
;; Web Consortium's Working Group on Accessibility (WCAG AAA
|
||
;; standard).
|
||
;;
|
||
;; 2. Offer as close to full face coverage as possible. The list is
|
||
;; already quite long, with more additions to follow as part of the
|
||
;; ongoing development process.
|
||
;;
|
||
;; For a complete view of the project, also refer to the following files
|
||
;; (should be distributed in the same repository/directory as the
|
||
;; current item):
|
||
;;
|
||
;; - modus-themes.el (Main code shared between the themes)
|
||
;; - modus-operandi-theme.el (Light theme)
|
||
|
||
;;; Code:
|
||
|
||
|
||
|
||
(eval-and-compile
|
||
(unless (and (fboundp 'require-theme)
|
||
load-file-name
|
||
(equal (file-name-directory load-file-name)
|
||
(expand-file-name "themes/" data-directory))
|
||
(require-theme 'modus-themes t))
|
||
(require 'modus-themes))
|
||
|
||
(deftheme modus-vivendi
|
||
"Elegant, highly legible and customizable dark theme.
|
||
Conforms with the highest legibility standard for color contrast
|
||
between background and foreground in any given piece of text,
|
||
which corresponds to a minimum contrast in relative luminance of
|
||
7:1 (WCAG AAA standard).")
|
||
|
||
(modus-themes-theme modus-vivendi)
|
||
|
||
(provide-theme 'modus-vivendi))
|
||
|
||
;;; modus-vivendi-theme.el ends here
|