From 9af6e891612f54e4b4a99249a882041b10bad9b1 Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Mon, 19 Dec 2022 19:21:24 -0500 Subject: [PATCH] Allow use of true colors when loaded by daemon --- adwaita-dark-theme.el | 1 + 1 file changed, 1 insertion(+) diff --git a/adwaita-dark-theme.el b/adwaita-dark-theme.el index 10a8fbd..827aff7 100644 --- a/adwaita-dark-theme.el +++ b/adwaita-dark-theme.el @@ -83,6 +83,7 @@ (defun adwaita-dark-theme--true-color-p () "Return 't' if the frame is capable of displaying true colors." (or + (daemonp) (display-graphic-p) (>= (tty-display-color-cells) 16777216)))