diff options
| author | Protesilaos Stavrou <info@protesilaos.com> | 2023-05-16 18:40:39 +0300 |
|---|---|---|
| committer | Protesilaos Stavrou <info@protesilaos.com> | 2023-05-16 18:40:39 +0300 |
| commit | 23c7ec8afd3f1880fa7290819212d777ce0030bb (patch) | |
| tree | a764227220b8d800de7867848643b21bbf35ca17 /ef-trio-light-theme.el | |
| parent | 443d37bbee0ca819e87b1d72fc1a57d0eb850dd8 (diff) | |
Convert all palette override variables into user options
Diffstat (limited to 'ef-trio-light-theme.el')
| -rw-r--r-- | ef-trio-light-theme.el | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/ef-trio-light-theme.el b/ef-trio-light-theme.el index d7eb5bd..c0a6596 100644 --- a/ef-trio-light-theme.el +++ b/ef-trio-light-theme.el @@ -250,14 +250,22 @@ Semantic color mappings have the form (MAPPING-NAME COLOR-NAME) with both as symbols. The latter is a color that already exists in the palette and is associated with a HEX-VALUE.") - (defvar ef-trio-light-palette-overrides nil + (defcustom ef-trio-light-palette-overrides nil "Overrides for `ef-trio-light-palette'. Mirror the elements of the aforementioned palette, overriding their value. For overrides that are shared across all of the Ef themes, -refer to `ef-themes-common-palette-overrides'.") +refer to `ef-themes-common-palette-overrides'. + +To preview the palette entries, use `ef-themes-preview-colors' or +`ef-themes-preview-colors-current' (read the documentation for +further details)." + :group 'ef-themes + :package-version '(ef-themes . "1.0.0") + :type '(repeat (list symbol (choice symbol string))) + :link '(info-link "(ef-themes) Palette overrides")) (ef-themes-theme ef-trio-light ef-trio-light-palette ef-trio-light-palette-overrides) |
