Created
December 14, 2020 23:36
-
-
Save RuanAragao/b7d7143a976c897924de0fbb709409c7 to your computer and use it in GitHub Desktop.
Toggle GitHub color mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function getHoursNow() { | |
var date = new Date(); | |
var hours = date.getHours(); | |
return hours; | |
} | |
const colorToggleButtom = document.querySelector(".profile-color-modes-toggle"); | |
let hours = getHoursNow() | |
if (hours >= 18 && !colorToggleButtom.ariaChecked) { | |
colorToggleButtom.click() | |
} | |
if (hours < 18 && colorToggleButtom.ariaChecked) { | |
colorToggleButtom.click() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment