css - Styling Atom Text Editor -


so i've opened atom stylesheets named : styles.less , made changes stylesheet looks :

tree-view {   background-color: #101; }  // style background , foreground colors on atom-text-editor-element atom-text-editor {   color: white;   background-color: #101; }  // style other content in text editor's shadow dom, use ::shadow expression atom-text-editor::shadow .cursor {   border-color: red; } 

i'm trying change colour of panels @ top , maybe few other things. there anyway can find out class/id names elements in atom me style?

one way open atom's developer tools.

on osx -> view - developer - toggle developer tools

where can inspect elements , find need.

also see how make developer tools appear?


Comments

Popular posts from this blog

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -