🎉 Show Penpot color in Safari tab bar

This commit is contained in:
Andrés Moya 2022-04-11 12:03:07 +02:00
parent c766e08027
commit 6ad06d9665
7 changed files with 17 additions and 1 deletions

View file

@ -43,6 +43,12 @@
[^string title]
(set! (.-title globals/document) title))
(defn set-html-theme-color
[^string color scheme]
(let [meta-node (.querySelector js/document "meta[name='theme-color']")]
(.setAttribute meta-node "content" color)
(.setAttribute meta-node "media" (str/format "(prefers-color-scheme: %s)" scheme))))
(defn set-page-style!
[styles]
(let [node (first (get-elements-by-tag globals/document "head"))