Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
mithril-security/blind_chat
AIlexDev
/
blind_chat
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
9485b21
blind_chat
/
src
/
lib
/
switchTheme.ts
lauro1
updates
d54ea4b
over 1 year 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"
;
}