2018-01-28 23:22:43 +11:00
|
|
|
//テーマ適用
|
|
|
|
function themes(theme) {
|
|
|
|
if (!theme) {
|
|
|
|
var theme = localStorage.getItem("theme");
|
2018-03-13 04:41:38 +11:00
|
|
|
if(!theme){
|
|
|
|
var theme="black";
|
|
|
|
localStorage.setItem("theme","black");
|
|
|
|
}
|
2018-01-28 23:22:43 +11:00
|
|
|
}
|
2018-07-07 03:51:48 +10:00
|
|
|
$("html").removeClass("indigotheme");
|
|
|
|
$("html").removeClass("greentheme");
|
|
|
|
$("html").removeClass("browntheme");
|
|
|
|
$("html").removeClass("blacktheme");
|
|
|
|
$("html").addClass(theme+"theme");
|
2018-07-05 11:26:07 +10:00
|
|
|
var font = localStorage.getItem("font");
|
|
|
|
if(font){
|
|
|
|
$("html").css("font-family",font);
|
|
|
|
}else{
|
|
|
|
$("html").css("font-family","");
|
|
|
|
}
|
2018-01-28 23:22:43 +11:00
|
|
|
}
|
2018-03-13 04:41:38 +11:00
|
|
|
themes();
|