Last active
October 3, 2018 20:29
-
-
Save R3V1Z3/181f9a085d8c625c45bac0f328f3e8f8 to your computer and use it in GitHub Desktop.
CSS selector to target light syntax themes in Atom editor. Used here: https://atom.io/themes/cityscape-ui
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
// should result in blue editor background if a theme with keyword "dark" is used | |
atom-workspace[class*="-light"] atom-text-editor { | |
background-color: blue !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment