styles.less 716 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Your Stylesheet
  3. *
  4. * This stylesheet is loaded when Pulsar starts up and is reloaded automatically
  5. * when it is changed and saved.
  6. *
  7. * Add your own CSS or Less to fully customize Pulsar.
  8. * If you are unfamiliar with Less, you can read more about it here:
  9. * http://lesscss.org
  10. */
  11. /*
  12. * Examples
  13. * (To see them, uncomment and save)
  14. */
  15. // style the background color of the tree view
  16. .tree-view {
  17. // background-color: whitesmoke;
  18. }
  19. // style the background and foreground colors on the atom-text-editor-element itself
  20. atom-text-editor {
  21. // color: white;
  22. // background-color: hsl(180, 24%, 12%);
  23. }
  24. // style UI elements inside atom-text-editor
  25. atom-text-editor .cursor {
  26. // border-color: red;
  27. }