#```css

1 messages · Page 1 of 1 (latest)

jagged obsidian
#

Is this the code to get the circle emojis. bc mine doesnt work..

tight echo
#

no, it's to replace these with these

jagged obsidian
#

also how do i activate the emoji experiment

#

oh ok

nocturne dagger
jagged obsidian
#

How do i get thme emojis?

nocturne dagger
#

wait why is your support thing an ambulance

#

mine is a hospital emoji

tight echo
#

same

jagged obsidian
#

nah its from a ss

tight echo
jagged obsidian
#

Yk the emoji in the circle you have in ur ss

#

These

nocturne dagger
#

turn on experiments plugin

jagged obsidian
#

i did

nocturne dagger
#

and find the channel emoji experiment

jagged obsidian
nocturne dagger
#

in the experiments tab

#

go to user settings

jagged obsidian
#

yh

nocturne dagger
#

yh 👍

jagged obsidian
#

and what code do i use

#

bc i got it up but no change

nocturne dagger
#

try going to a different server

#

it only updates when it reloads channels

jagged obsidian
#

there go it

#

how come it doesnt work for all emojis?#

nocturne dagger
#

it's based on the channel name

last stream
#

aria labels are different in every language so here's an edit of it for polish

/* poprawia discorda */

div {
    --ch-text: green;
    --ch-text-limited: green;
    --ch-text-threads: green;
    --ch-text-nsfw: red;
    --ch-announcements: pink;
    --ch-announcements-limited: pink;
    --ch-rules: purple;
    --ch-voice: yellow;
    --ch-voice-limited: yellow;
    --ch-voice-locked: black;
    --ch-forum: blue;
    --ch-forum-limited: blue;
    --ch-stage: lightblue;
}

[class*="mainContentWithChannelEmoji-"] [aria-label="Ogłoszenia"] { background-color: var(--ch-announcements); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Ogłoszenia (ograniczony)"] { background-color: var(--ch-announcements-limited); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Tekstowy"] { background-color: var(--ch-text) }
[class*="mainContentWithChannelEmoji-"] [aria-label="Tekstowy (ograniczony)"] { background-color: var(--ch-text-limited) }
[class*="mainContentWithChannelEmoji-"] [aria-label="Tekstowy (aktywne wÄ…tki)"] { background-color: var(--ch-text-threads) }
[class*="mainContentWithChannelEmoji-"] [aria-label="Tekst (z ograniczeniami wiekowymi)"] { background-color: var(--ch-text-nsfw); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Głosowy"] { background-color: var(--ch-voice); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Głosowy (ograniczony)"] { background-color: var(--ch-voice-limited); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Głosowy (zablokowany)"] { background-color:  var(--ch-voice-locked); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Zasady"] { background-color: var(--ch-rules); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Forum"] { background-color: var(--ch-forum); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Forum (ograniczony)"] { background-color: var(--ch-forum-limited); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Podium"] { background-color: var(--ch-stage); }
[class*="mainContentWithChannelEmoji-"] [aria-label="Podium (ograniczone)"] { background-color: var(--ch-stage); }

[class*="channelName-"] [aria-label="Ogłoszenia"] { background-color: var(--ch-announcements); }
[class*="channelName-"] [aria-label="Ogłoszenia (ograniczony)"] { background-color: var(--ch-announcements-limited); }
[class*="channelName-"] [aria-label="Tekstowy"] { background-color: var(--ch-text) }
[class*="channelName-"] [aria-label="Tekstowy (ograniczony)"] { background-color: var(--ch-text-limited) }
[class*="channelName-"] [aria-label="Tekstowy (aktywne wÄ…tki)"] { background-color: var(--ch-text-threads) }
[class*="channelName-"] [aria-label="Tekst (z ograniczeniami wiekowymi)"] { background-color: var(--ch-text-nsfw); }
[class*="channelName-"] [aria-label="Głosowy"] { background-color: var(--ch-voice); }
[class*="channelName-"] [aria-label="Głosowy (ograniczony)"] { background-color: var(--ch-voice-limited); }
[class*="channelName-"] [aria-label="Głosowy (zablokowany)"] { background-color: var(--ch-voice-limited); }
[class*="channelName-"] [aria-label="Zasady"] { background-color: var(--ch-rules); }
[class*="channelName-"] [aria-label="Forum"] { background-color: var(--ch-forum); }
[class*="channelName-"] [aria-label="Forum (ograniczony)"] { background-color: var(--ch-forum-limited); }
[class*="channelName-"] [aria-label="Podium"] { background-color: var(--ch-stage); }
[class*="channelName-"] [aria-label="Podium (ograniczone)"] { background-color: var(--ch-stage); }```