summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--JS/cookies.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/JS/cookies.js b/JS/cookies.js
index ca71e56..f0a9bba 100644
--- a/JS/cookies.js
+++ b/JS/cookies.js
@@ -22,7 +22,7 @@ function getCookie(cname) {
function checkCookie() {
var theme=getCookie("theme");
if(theme == ""){
- setCookie("theme","GreenAndWhite",365);
+ setCookie("theme","PurpleAndDark",365);
window.location.reload(false);
}else if(theme == "GreenAndWhite"){
document.getElementById("cssFile").href = "CSS/main.css";
@@ -33,4 +33,4 @@ function checkCookie() {
}else if(theme == "PurpleAndDark"){
document.getElementById("cssFile").href = "CSS/PurpleAndDark.css";
}
-} \ No newline at end of file
+}