Skip to content

Instantly share code, notes, and snippets.

@fluteds
Last active May 31, 2023 16:15
Show Gist options
  • Save fluteds/b7bbf2825cc508fe70d85fc3722459de to your computer and use it in GitHub Desktop.
Save fluteds/b7bbf2825cc508fe70d85fc3722459de to your computer and use it in GitHub Desktop.
Styles the pronouns from pronouns.alejo.io to look like the pronouns from pronoundb.org on twitch.tv
@media (prefers-color-scheme: dark) {
.user-pronoun, .chat-line__message .tw-pd-x-05 {
color: #fffff;
border: 0px;
font-weight: normal;
background: #6b6b6d; /* Fix correct background */
text-transform: lowercase;
}
}
@media (prefers-color-scheme: light) {
.user-pronoun, .chat-line__message .tw-pd-x-05 {
color: #00000;
border: 0px;
font-weight: normal;
background: #f2f2f2;
text-transform: lowercase;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment