Skip to content

Instantly share code, notes, and snippets.

View AhmetEnesKCC's full-sized avatar
🖥️
Coding...

Ahmet Enes KCC AhmetEnesKCC

🖥️
Coding...
View GitHub Profile
@AhmetEnesKCC
AhmetEnesKCC / getSystemTheme.js
Last active March 19, 2022 13:01
get system theme
const getSystemTheme = () => {
// Check if the preferred scheme is dark
const isDarkMode = window.matchMedia("(prefers-color-scheme: dark)").matches; // Be careful! Not just parantheses and quotes, like ("()") this
const mode = isDarkmode ? "dark" : "light";
return mode;
}