Skip to content

Instantly share code, notes, and snippets.

@trajing
Last active August 11, 2021 20:35
Show Gist options
  • Select an option

  • Save trajing/44b182b9f0040d7d7b3715ba0534e8fb to your computer and use it in GitHub Desktop.

Select an option

Save trajing/44b182b9f0040d7d7b3715ba0534e8fb to your computer and use it in GitHub Desktop.
Twitter Reversion Userstyle
@-moz-document domain("twitter.com") {
:root {
--follow-text-color: white;
--accent-color: rgb(121, 75, 196);
}
* {
font-family: "Segoe UI" !important;
}
div[aria-label^="Following"] {
background-color: var(--accent-color);
}
div[aria-label^="Follow"]:not([aria-label^="Following"]) {
background-color: transparent;
color: var(--follow-text-color);
border-color: var(--accent-color);
}
div[aria-label^="Follow"]:not([aria-label^="Following"]) span {
color: var(--accent-color);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment