Skip to content

Commit

Permalink
feat(vc-plugin): added support for vencord summary plugin dark mode only
Browse files Browse the repository at this point in the history
Co-authored-by: Raevv <[email protected]>
  • Loading branch information
Inmoresentum and Raevv committed Jun 21, 2024
1 parent 1b33380 commit 79b6ff6
Showing 1 changed file with 52 additions and 1 deletion.
53 changes: 52 additions & 1 deletion dark.mode.css
Original file line number Diff line number Diff line change
Expand Up @@ -3445,4 +3445,55 @@ html .channelTabs-newTab {
/* Fix for radial status shadow cropping (friend list and stuff) */
.wrapper_c51b4e.avatar_f3939d {
padding: 5px !important;
}
}

/* Adding support for Vencord summary plugin */

/* summaries container */
.theme-dark .topicsPillContainer_cf58b5 {
border-radius: 5px !important;
background-color: var(--accentcolorV2);
z-index: 5;
}

/* new unread */
.theme-dark .newTopicsBarContainer_cf58b5 {
border-radius: 5px !important;
z-index: 5;
}

.theme-dark .topicsDropdownBase_cf58b5::before {
content: "";
position: absolute;
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
inset: 0;
border-radius: 15px;
z-index: -1;
}

.theme-dark .topicsDropdownBase_cf58b5 {
background-color: rgba(15, 12, 12, 0.219);
border-radius: 15px;
padding: 15px;
position: absolute;
z-index: 5;
}

.theme-dark .topicsScroller_cf58b5 > * {
background-color: rgba(0, 0, 0, 0.6);
transition: all 0.2s ease;
border-radius: 15px;
}

.theme-dark .topicsScroller_cf58b5 > *:hover {
background-color: rgb(0, 0, 0.9);
transform: translateY(-2px);
border-radius: 15px;
}

.theme-dark .container_faef22 {
border-radius: 15px;
}

/* End of Vencord summary plugin stuff */

0 comments on commit 79b6ff6

Please sign in to comment.