哪咤自定义主题

目录

[TOC]


一、JackieSung DayNight

<style>
/* 暗黑模式框里线条颜色 */
body[data-theme=dark] .info-body ul li {
  border-bottom: none !important;
}
/*白昼模式框里线条颜色*/
body[data-theme=light] .info-body ul li {
  border-bottom: none !important;
}

/* 暗黑模式框里前面的粗体颜色 */
body[data-theme=dark] .info-body ul li:nth-child(n+4)::before {
  color: #ffffff !important;
}
/*白昼模式框里前面的粗体颜色*/
body[data-theme=light] .info-body ul li:nth-child(n+4)::before {
  color: #000000 !important;
}

/* 暗黑模式框 */
body[data-theme=dark] .server-info-container {
  background-color: rgba(30, 30, 30, 0.5) !important;
  /* 50%透明度的黑色 */
  color: #ffffff !important;
  /*框里字体颜色*/
  border: 1px solid rgba(255, 255, 255, .1) !important;
  box-shadow: 0 2px 10px rgba(255, 255, 255, .1) !important;
}
/*白昼模式框*/
body[data-theme=light] .server-info-container {
  background-color: rgba(255, 255, 255, 0.5) !important;
  /* 50%透明度的白色 */
  color: #000000 !important;
  /*框里字体颜色*/
  border: 1px solid rgba(0, 0, 0, .1) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .1) !important;
}

/* 暗黑模式框里字体颜色 */
body[data-theme=dark] #app {
  background-color: transparent;
  background-image: none;
}
/*白昼模式框里字体颜色*/
body[data-theme=light] #app {
  background-color: transparent;
  background-image: none;
}


/* 背景图片 */
body {
  content: " ";
  background: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(https://bing.biturl.top/?resolution=1920&format=image&index=0&mkt=zh-CN);
}
/*忘记是干啥的了,啥线条的颜色*/
.ui.fine.progress>.progress-bar {
  background-color: #00a7d0 !important;
}
</style>

<script>
window.onload = function(){
var avatar=document.querySelector("img")
var footer=document.querySelector("div.footer-container")
footer.innerHTML="Copyright © 2023 - Dean"
footer.style.visibility="visible"
avatar.src="https://pic.xxx.xx/i/647a1deb4548f.png"
avatar.style.visibility="visible"
}
</script>

二、SeverStatus

去除最下方的广告

<style>
  p {
    display: none;
  }
</style>
Last modification:December 17, 2023
V50%看看实力