前往
大廳
主題

火狐Firefox CSS樣式:黑暗主題補強

—— | 2023-02-13 21:00:03 | 巴幣 0 | 人氣 137

火狐的黑暗主題不完美,用這個補強
放到userChrome.css
/* 加載時的黑暗模式頁面 */

#tabbrowser-tabpanels {
        background-color: rgb(23,23,23) !important;
}
.browserContainer {
        background-color: rgb(23,23,23) !important;
}


/* 黑暗模式鏈接預覽 */

#statuspanel-label {
        background-color: rgb(23,23,23) !important;
        color: rgb(225,225,225) !important;
        border-color: rgb(70,70,70) !important
}


放到userContent.css
/* 加載時的黑暗模式頁面 */

@-moz-document url("about:home"),url("about:blank"),url("about:newtab"),url("about:privatebrowsing") {
  body {
    background-color: rgb(23,23,23) !important;
}
}

創作回應

更多創作