#Better channel highlighter and thread
1 messages · Page 1 of 1 (latest)
red
the same code but in red
`#app-mount .containerDefault-YUSmu3.selected-2TbFuo .content-1gYQeQ {
background: #00000025;
border: 2px solid #8b0202;
}
.icon-2W8DHg {
width: 15px;
height: 15px;
}
[aria-label="Channels"] [class^="content"],
[class^="popout-"] [class^="row-"]
{
border-style: solid;
border-width: 2px;
border-color: transparent;
background-color: transparent;
}
[aria-label="Channels"] [class^="content"]:hover,
[class^="popout-"] [class^="row-"]:hover
{
border-color: #b00b69 !important;
}
.unread-36eUEm {
display: none;
}
.modeUnread-3Cxepe .icon-2W8DHg,
#app-mount .containerDefault-YUSmu3.selected-2TbFuo .content-1gYQeQ .icon-2W8DHg,
#app-mount .containerDefault-YUSmu3:hover .content-1gYQeQ .icon-2W8DHg
{
color: #a10a0a !important;
}`
I mean ... you can change the color to anything you like
how can i change the color?
i want cyan pls...
oh should i just change the hex on the bottom...
got it
change the first 6 characters of the hex to something else, the latter two (on certain lines) represents the opacity
i just changed the hex and it works fine thanks 
same but with a gradient :3
/* channel outlines and highlighted icons (Original code from hadeanMachine and ArjixWasTaken) */
#app-mount .containerDefault-YUSmu3.selected-2TbFuo .content-1gYQeQ {
background: linear-gradient(145deg, #653a86a4 45%, #31a3a7ad);
border: 1px solid #4fb0b5;
}
.icon-2W8DHg {
width: 17px;
height: 17px;
}
[aria-label="Channels"] [class^="content"],
[class^="popout-"] [class^="row-"]
{
border-style: solid;
border-width: 0px;
border-color: transparent;
background-color: transparent;
}
[aria-label="Channels"] [class^="content"]:hover,
[class^="popout-"] [class^="row-"]:hover
{ border-color: #4fb0b5 !important; }
.modeUnread-3Cxepe .icon-2W8DHg,
#app-mount .containerDefault-YUSmu3.selected-2TbFuo .content-1gYQeQ .icon-2W8DHg,
#app-mount .containerDefault-YUSmu3:hover .content-1gYQeQ .icon-2W8DHg
{ color: #4fb0b5 !important; }```
looks very nice, thank you 
i thought its already in there
omg i love this
#app-mount .containerDefault-YUSmu3.selected-2TbFuo .content-1gYQeQ {
background: linear-gradient(90deg,
#5BCEFA 20%,
#F5A9B8 20%,#F5A9B8 40%,
#ffffff 40%,#ffffff 60%,
#F5A9B8 60%,#F5A9B8 80%,
#5BCEFA 80%
)
}
🫡 🏳️⚧️
the gradient on this isn't working for me, is there something else i need?
checked- it isnt because of any themes
it is also broken for me, no clue why
not just the gradient, the whole snippet stopped working
yeah ;-; it was working earlier
i think it's because it uses hardcoded class names, which changed in the last discord update
the aeiou at the end of .something-aeiou
Yeah hard coded classes changed
Working on a fix
I am changing them to attribute selectors
🙏
hell yeah tysm
I think I have found a fix
@peak falcon @lavish mica
:root {
--channel-bg: #b00b6925;
--channel-border: #b00b69ff;
--channel-curve: 0.75rem;
--channel-border-thickness: 2px;
}
:not([class*=container-]) > ul > [class*=containerDefault-][class*=selected-] > div > div > [class*=link],
[class*=container-] > ul > [class*=containerDefault-][class*=selected-] > [class*=wrapper-] > [class*=link-],
[class*=modeSelected-] > div > [class*=link-]
{
background: var(--channel-bg);
border: var(--channel-border-thickness) solid var(--channel-border);
border-radius: var(--channel-curve);
}
[class*=containerDefault] > div > div > a > div > div > svg { width: 15px; height: 15px; }
:not([class*=container-]) > ul > [class*=containerDefault-] > div > div > [class*=link],
[class*=container-] > ul > [class*=containerDefault-] > [class*=wrapper-] > [class*=link-],
[class*=modeConnected-] > div > [class*=link-],
[class*=containerDefault-] > [class*=list-] > div > div > div
{
border: var(--channel-border-thickness) solid transparent;
background-color: transparent;
border-radius: var(--channel-curve);
}
:not([class*=container-]) > ul > [class*=containerDefault-]:hover > div > div > [class*=link],
[class*=container-] > ul > [class*=containerDefault-]:hover > [class*=wrapper-] > [class*=link-],
[class*=modeConnected-]:hover > div > [class*=link-],
[class*=containerDefault-] > [class*=list-]:hover > div > div > div
{
border-color: var(--channel-border) !important;
}
[class*=unread-] { display: none; }
[class*=modeUnread] [class*=icon-],
[class*=containerDefault-][class*=selected-] [class*=icon-], [class*=modeSelected-] [class*=icon-],
[class*=containerDefault-]:hover [class*=icon-] { color: var(--channel-border) !important; }
doesn't work for vc's 
the little icon lights up at least
true
it works for me!!! tyvm
hmm lemme see
okay fixed, load the new snippet again
hell yeah tysm
how can i make borders curved like that?
mine looks solid
add border-radius after you have defined the border width
broken with newest update D:
Deprecated, I don't maintain it anymore
fair
works for me thou... i just updated classes...
tyvm!
hmmm that doesn't seem to work.... can u please provide the syntax?
just
.element {
border: 3px solid salmon;
border-radius: 8px
}
.element being whatever you want to target
whereabouts can i find the classes to change/what to change them to?
nevermind, found a tool and did it all :)
This one gets the job done faster, just place the file inside and classes will get automatically changed
ohm sick
Ig ur done!... 
Okk ty!
am i doing something wrong?
Yes, change all "-" to "_"
oh okk other all ok?
hmm that doesn't seem to work either...
No, you have already set the color to salmon, remove also the border-color: transparent line