mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-01 21:30:54 -08:00
3b8dda6c90Add safety check in x_menu_showe1fb731393Tweak x_connection_closed when I/O error595e506c82* lisp/erc/erc.el (erc-user-mode): Set "+i" by default.d00f3d4c05Port unused decls to C2x317eb2d5b5Improve structure of TODOc0793cd9deDon't use some obsolete names in documentation87153cc915Tweak x_hide_tip for consistency7e871dcd27Remove encode_terminal_code UNINITs2a00634880Port pdumper.c maybe_unused to C2x6d9b3c0eaaPort systhreads.h to C2xfd274d7d24Pacify -Wanalyzer-null-argument in lisp_malloccc3fc94f09Pacify gcc 11.2.1 -Wanalyzer-null-argumentd3a832a61aSimplify hack-read-symbol-shorthands again (bug#50946)4831426158Fix recipe for 'native-lisp' directory0bb42ef803; * lisp/time-stamp.el (time-stamp-format): Doc string.732c70a0d9Simplify socket symlink-attack checkingfc32a3bd95; * doc/lispref/files.texi (Reading from Files): Fix wording.3cc77aa976Clarify (elisp) insert-file-contents with BEG or END not o...5deeb0947d* src/Makefile.in: Simplify conditionals.121a5abeaeMove context-menu selection items Defun/List/Symbol to pro...0c341e6e84* lisp/tab-bar.el (tab-bar-detach-tab): Handle frame selec...931a7276c0* lisp/tab-line.el (tab-line-format): Add face-modified to...3863919a00Fix unmounting in Tramp7a6d34cd1f* etc/themes/light-blue-theme.el: Add "Maintainer: emacs-d...c1b1e1f545Define HAVE_NATIVE_COMP in src/Makefile.in137fa2d716Rename elisp-shorthands to read-symbol-shorthandse6fbc45b7bFont-lock shorthands in elisp-mode for quick visual recogn...17e6f3bee5; Fix last change in tramp-sshfs.el3dae1e33d1Suppress superfluous error messages in Trampb228ec9fabFix reading the tail of a file in shorthands.el7fb2789509Fix substitution of pretty quotes in code in easy-mmodeb47d7ce1b8Fix agent directory deletionb1a8a66fb0; * etc/TODO: Fix previous commit; delete the right thing.6c01a21365Clarify the purpose of internal--format-docstring-line55dadbc57e* lisp/net/dictionary.el (context-menu-dictionary): Move m...bb209cd5abUpdate to Org 9.5-30-g10dc9d4341e79a5fRemove bogus ":safe t" custom propertiesb6f6b593c6Fix 'apropos-compact-layout'62d6cecfcdRemove bogus ":safe nil" custom propertiesf9111d8784The safe-local-variable property is a function (bug#50944)3dc094abee; Some minor tweaks to TODOa5b4356d37Revert "; * etc/TODO: Move elpa.gnu.org items to the end."7bc0cee115Revert "* etc/TODO: Rearrange to start with "Simple tasks"."3489471417Fix selection of fonts for Arabic on Posix platforms13e5943386; Fix a typo in a doc stringbd60fca2faFix ox-koma-letter compilation warnings340e527bedPreload paren.ela9052248daImprove documentation of 'shift-select-mode'd505971894; Standardize some license headers9307889d68Simplify shorthand injection (bug#50946)5c77cc9584; * admin/release-branch.txt: Tweak previous. # Conflicts: # etc/NEWS # test/lisp/subr-tests.el
67 lines
3 KiB
EmacsLisp
67 lines
3 KiB
EmacsLisp
;;; light-blue-theme.el --- Custom theme for faces -*- lexical-binding:t -*-
|
|
|
|
;; Copyright (C) 2011-2021 Free Software Foundation, Inc.
|
|
|
|
;; Author: Drew Adams <drew.adams@oracle.com>
|
|
;; Maintainer: emacs-devel@gnu.org
|
|
|
|
;; 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:
|
|
|
|
;; Extracted from the settings in oneonone.el by Drew Adams.
|
|
|
|
;;; Code:
|
|
|
|
(deftheme light-blue
|
|
"Face colors utilizing a light blue background.")
|
|
|
|
(make-obsolete 'light-blue nil "29.1")
|
|
|
|
(let ((class '((class color) (min-colors 89))))
|
|
(custom-theme-set-faces
|
|
'light-blue
|
|
`(default ((,class (:background "LightBlue" :foreground "black"))))
|
|
`(cursor ((,class (:background "red"))))
|
|
`(fringe ((,class (:background "gray85"))))
|
|
;; Highlighting faces
|
|
`(highlight ((,class (:background "cyan"))))
|
|
`(region ((,class (:background "MediumAquamarine"))))
|
|
`(secondary-selection ((,class (:background "white" :foreground "black"))))
|
|
`(isearch ((,class (:background "green" :foreground "Black"))))
|
|
`(lazy-highlight ((,class (:background "dark turquoise"))))
|
|
`(query-replace ((,class (:inherit isearch :background "white" :foreground "black"))))
|
|
`(match ((,class (:background "SkyBlue"))))
|
|
;; Mode line faces
|
|
`(mode-line ((,class (:background "PaleGoldenrod" :foreground "black" :box (:line-width -1 :style released-button)))))
|
|
`(mode-line-buffer-id ((,class (:overline "red" :underline "red"))))
|
|
`(mode-line-inactive ((,class (:inherit mode-line :background "LightGray" :foreground "grey20" :box (:line-width -1 :color "grey75") :weight light))))
|
|
;; Escape and prompt faces
|
|
`(escape-glyph ((,class (:background "gold" :foreground "blue" :box (:line-width 1 :color "blue" :style released-button)))))
|
|
`(homoglyph ((,class (:background "gold" :foreground "blue" :box (:line-width 1 :color "blue" :style released-button)))))
|
|
;; Font lock faces
|
|
`(font-lock-builtin-face ((,class (:foreground "#b35caf"))))
|
|
`(font-lock-constant-face ((,class (:foreground "#00006DE06DE0"))))
|
|
`(font-lock-function-name-face ((,class (:foreground "red"))))
|
|
`(font-lock-keyword-face ((,class (:foreground "Blue3"))))
|
|
`(font-lock-string-face ((,class (:foreground "Magenta4"))))
|
|
`(font-lock-warning-face ((,class (:foreground "orange red" :weight bold))))
|
|
;; Compilation faces
|
|
`(next-error ((,class (:inherit region :background "SkyBlue"))))))
|
|
|
|
(provide-theme 'light-blue)
|
|
|
|
;;; light-blue-theme.el ends here
|