overhaul, light theme support

This commit is contained in:
Vozer
2023-03-13 16:12:51 -05:00
committed by GitHub
parent 5c4c521224
commit 024207d042
+23 -5
View File
@@ -26,18 +26,36 @@
/* ---------- Samfundev plugins ------------ */
/* ChannelTabs */
.theme-light .channelTabs-tab.channelTabs-selected {
border-radius: 1px;
border-bottom: solid 1px black;
border-top: 0px solid white;
box-shadow: inset 0px 0px 0px 0px black;
background: rgb(225,225,225) !important;
}
.theme-light .channelTabs-tab {
background: rgba(172, 172, 172, 0.354) !important;
box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.492);
border-top: 1px solid rgb(141, 141, 141);
border-bottom: solid 1px rgb(141, 141, 141);
border-right: solid .1px rgb(141, 141, 141);
}
.theme-dark .channelTabs-tab.channelTabs-selected {
border-radius: 1px;
border-bottom: solid 1px black;
border-top: solid 0px black;
background: var(--surCordBackground2) !important;
border-top: 0px solid white;
box-shadow: inset 0px 0px 0px 0px black;
background: var(--surCordBackground2)) !important;
}
.theme-dark .channelTabs-tab {
background: var(--surCordBackground) !important;
border-bottom: solid 1px black;
border-top: solid 1px black;
border-right: solid .1px rgba(199, 199, 199, 0.236);
box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.492);
border-top: 1px solid rgb(0, 0, 0);
border-bottom: solid 1px rgb(0, 0, 0);
border-right: solid .1px rgb(0, 0, 0);
}
/* ---------- Cumcord plugins ------------ */