diff options
author | Thanos Apollo <[email protected]> | 2024-07-26 18:00:53 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-07-26 18:00:53 +0300 |
commit | 26a13d2b4f32bd3ecb0b2e93c91162cb619d2f00 (patch) | |
tree | 621ce2d4a39c6ad796a6c5f4c2583c407fba6d07 | |
parent | 5ee7502983a4f8d93b0d4c13630580edb9f73177 (diff) |
dashboard-header-face: Use a Tyrian Purple variant.
* Tyrian purple is a high-chroma pigment and cannot be displayed
properly on RGB screens. This variant should suffice for both dark
and light backgrounds.
* Using outline causes isssues with centering string, since many
themes use custom :height, increasing the font size.
-rw-r--r-- | gnosis-dashboard.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gnosis-dashboard.el b/gnosis-dashboard.el index c89fd20..fb7d49a 100644 --- a/gnosis-dashboard.el +++ b/gnosis-dashboard.el @@ -59,9 +59,8 @@ "Store search value.") (defface gnosis-dashboard-header-face - '((t :inherit (outline-1) :weight bold)) - "Face for the dashboard header.." - :group 'gnosis) + '((t :foreground "#ff0a6a" :weight bold)) + "My custom face for both light and dark backgrounds.") (defun gnosis-dashboard-generate-dates (&optional year) "Return a list of all dates (year month day) for YEAR." |