summaryrefslogtreecommitdiff
path: root/init.el
diff options
context:
space:
mode:
authorbh <qn+git@excalibur.computer>2026-04-07 17:04:54 +0800
committerbh <qn+git@excalibur.computer>2026-04-07 17:04:54 +0800
commitee05e6544cd350f7ef999f4fcc265ee4cd55ddad (patch)
treef80a3f0b5c6397d2231b8e436dbfae929c9c5420 /init.el
parent9354ac3a120c0945702b70db2a87defb9723c459 (diff)
Hardcode the background colour for the whitespace characters
Diffstat (limited to 'init.el')
-rw-r--r--init.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/init.el b/init.el
index f165ef9..0e97534 100644
--- a/init.el
+++ b/init.el
@@ -245,13 +245,13 @@
;; Face colors for whitespace characters
(set-face-attribute 'whitespace-tab nil
:foreground "#016868"
- :background nil)
+ :background "#003636")
(set-face-attribute 'whitespace-space nil
:foreground "#016868"
- :background nil)
+ :background "#003636")
(set-face-attribute 'whitespace-newline nil
:foreground "#016868"
- :background nil)
+ :background "#003636")
(set-face-attribute 'whitespace-trailing nil
:foreground "#d2691e"
:background "#003030"))