diff options
| author | Protesilaos Stavrou <info@protesilaos.com> | 2023-10-25 12:13:40 +0300 |
|---|---|---|
| committer | Protesilaos Stavrou <info@protesilaos.com> | 2023-10-25 12:13:40 +0300 |
| commit | e4feb5f9c2dd8e69806a7d4c87bbd2f924a99284 (patch) | |
| tree | 2d793fd1a26ffc241e4b50cbb9b88ec3de457adb /ef-night-theme.el | |
| parent | 5305f6cf9c0486860022c242ee5585db4057597c (diff) | |
BREAKING: remove 'ef-themes-region' and document how to use overrides
I am introducing the new 'fg-region' entry in each theme's palette. It
is semantic colour mapping for the region's foreground. By default, it
is set to the special 'unspecified' symbol, meaning that the region's
underlying text colour is not overriden. Setting 'fg-region' to a
colour will override all underlying region foregrounds with that one.
Using palette overrides instead of hardcoded toggles gives users
maximum flexibility over the choice of colour and exact intensity they
need.
Diffstat (limited to 'ef-night-theme.el')
| -rw-r--r-- | ef-night-theme.el | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/ef-night-theme.el b/ef-night-theme.el index 74f2b10..1fc3e73 100644 --- a/ef-night-theme.el +++ b/ef-night-theme.el @@ -141,7 +141,6 @@ (bg-hover "#6f345a") (bg-hover-secondary "#493737") (bg-hl-line "#002255") - (bg-region "#222f40") (bg-paren "#664950") (bg-err "#331419") ; check with err (bg-warning "#332613") ; check with warning @@ -163,10 +162,6 @@ (bg-char-1 "#7f1f7f") (bg-char-2 "#625a00") -;;; Conditional hues - - (bg-region-intense "#3f2f60") - ;;; Mappings ;;;; General mappings @@ -182,6 +177,9 @@ (identifier magenta-faint) (prompt cyan-warmer) + (bg-region "#222f40") + (fg-region unspecified) + ;;;; Code mappings (builtin green-cooler) |
