Created
August 29, 2019 16:20
-
-
Save Arty2/d017dfef10034c39e8a97fbc1df7e4d6 to your computer and use it in GitHub Desktop.
User Style for airtable.com that introduces a Dark theme and other visual tweaks. To be used with Stylus or similar extention
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
/* | |
Makes text a bit blurry due to ClearType being disabled when CSS Filters are used. Should probably use a less *naive* way. | |
*/ | |
#hyperbaseContainer { | |
filter: invert(100%); | |
} | |
#hyperbaseContainer img, | |
#hyperbaseContainer button { /* revert images back to normal */ | |
filter: invert(100%); | |
} | |
#hyperbaseContainer .white { | |
filter: invert(100%); | |
background: #222; | |
} | |
#hyperbaseContainer .pill, | |
#hyperbaseContainer .colorOption { /* revert back to normal */ | |
filter: invert(100%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you :)