Skip to content

Instantly share code, notes, and snippets.

@Arty2
Created August 29, 2019 16:20
Show Gist options
  • Save Arty2/d017dfef10034c39e8a97fbc1df7e4d6 to your computer and use it in GitHub Desktop.
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
/*
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%);
}
@rivailruiz
Copy link

Thank you :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment