mirror of
https://github.com/KrstlSkll69/vc-snippets.git
synced 2025-04-19 20:55:22 +02:00
36 lines
1.2 KiB
CSS
36 lines
1.2 KiB
CSS
/**
|
|
* @name Private Channel recolor
|
|
* @author krystalskullofficial
|
|
* @description Recolors the icon for Private channels so they are easier to see/notice.
|
|
* @version 6.0.0
|
|
* @authorId 929208515883569182
|
|
* @website https://krstlskll69.github.io/
|
|
* @source https://github.com/KrstlSkll69/vc-snippets?tab=readme-ov-file#3rd-private-channel-recolor-
|
|
*/
|
|
|
|
/*---Lock Icon Channel List Recolor---*/
|
|
[class^=icon__] path[d^="M16 4h.5v"] {
|
|
fill: var(--yellow-200)!important;
|
|
border: 1px solid rebeccapurple !important; }
|
|
|
|
/*---Stages Lock Icon Channel List Recolor (since they use a differnt lock for some reason)----*/
|
|
[class^=icon__] path[d^="M16.5 18H16a1"] {
|
|
fill : var(--yellow-200) !important;
|
|
border: 1px solid rebeccapurple !important;
|
|
}
|
|
|
|
/*--- Chat Lock Icon Recolor ---*/
|
|
/*--- Lock Icon Message Bar Channels ---*/
|
|
[class^=icon__] path[d^="M16 4h.5v"] {
|
|
fill: var(--yellow-200) !important;
|
|
}
|
|
|
|
/*--- Lock Thread Icon Message Bar Icon Recolor ---*/
|
|
[class^=icon__] path[d^="M16 18h.5v"] {
|
|
fill: var(--yellow-200) !important;
|
|
}
|
|
|
|
/*--- Vencord's UserVoiceShow Icon Recolor ---*/
|
|
.vc-uvs-speaker path[d^="M16 4h.5v"] {
|
|
fill: var(--yellow-200) !important;
|
|
}
|