branch: externals/aircon-theme commit e32293992a8acc987e756e10b8db10cd3eb9cb35 Author: Gregory Chamberlain <g...@cosine.blue> Commit: Gregory Chamberlain <g...@cosine.blue>
Package aircon-theme.el and add README --- README | 26 ++++++++++++++++++++++++++ aircon-theme.el | 22 ++++++++++++++++++++-- 2 files changed, 46 insertions(+), 2 deletions(-) diff --git a/README b/README new file mode 100644 index 0000000000..47350ccd2d --- /dev/null +++ b/README @@ -0,0 +1,26 @@ +Aircon theme +============ + +Aircon is a clean and high contrast custom theme for Emacs. It +consists of a white (#ffffff) background and mostly blues, purples and +greens. Highlights are subtle but easily visible. The active mode-line +is white on blue to distinguish it from inactive mode-lines which are +dark blue on light grey. + +Copying +======= + +Copyright (C) 2022 Gregory Chamberlain + +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 <https://www.gnu.org/licenses/>. diff --git a/aircon-theme.el b/aircon-theme.el index 1f62e3cebd..2fb2b31960 100644 --- a/aircon-theme.el +++ b/aircon-theme.el @@ -1,8 +1,12 @@ -;;; aircon-theme.el --- Cool and legible light theme +;;; aircon-theme.el --- Cool and legible light theme -*- lexical-binding: t; -*- -;; Copyright (C) 2021 Gregory Chamberlain. +;; Copyright (C) 2022 Gregory Chamberlain. +;; Version: 0.0.1 ;; Author: Gregory Chamberlain <g...@cosine.blue> +;; URL: https://git.sr.ht/~chambln/aircon-theme.el +;; Keywords: faces +;; Package-Requires: ((emacs "24.4")) ;; This file is NOT part of GNU Emacs. @@ -19,6 +23,14 @@ ;; You should have received a copy of the GNU General Public License ;; along with this program. If not, see <https://www.gnu.org/licenses/>. +;;; Commentary: + +;; Aircon is a clean and high contrast custom theme for Emacs. It +;; consists of a white (#ffffff) background and mostly blues, purples +;; and greens. Highlights are subtle but easily visible. The active +;; mode-line is white on blue to distinguish it from inactive +;; mode-lines which are dark blue on light grey. + ;;; Code: (deftheme aircon @@ -122,6 +134,12 @@ '(ansi-color-names-vector ["#ffffff" "#9a2d71" "#327038" "#18566e" "#2e4d98" "#5f4f93" "#533a09" "#243867"])) +;;;###autoload +(when load-file-name + (add-to-list 'custom-theme-load-path + (file-name-as-directory (file-name-directory load-file-name)))) + (provide-theme 'aircon) +(provide 'aircon-theme) ;;; aircon-theme.el ends here