Last active
August 11, 2021 20:35
-
-
Save trajing/44b182b9f0040d7d7b3715ba0534e8fb to your computer and use it in GitHub Desktop.
Twitter Reversion Userstyle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @-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