Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mithril-security/blind_chat
Nymbo
/
blind_chat
like
0
Sleeping
App
Files
Files
Community
d54ea4b
blind_chat
/
src
/
lib
/
switchTheme.ts
lauro1
updates
d54ea4b
12 months ago
raw
Copy download link
history
blame
Safe
158 Bytes
export
function
switchTheme
(
) {
const
{ classList } =
document
.
querySelector
(
"html"
)
as
HTMLElement
;
classList.
add
(
"dark"
);
localStorage
.
theme
=
"dark"
;
}