styles.less 675 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * Your Stylesheet
  3. *
  4. * This stylesheet is loaded when Atom starts up and is reloaded automatically
  5. * when it is changed.
  6. *
  7. * If you are unfamiliar with LESS, you can read more about it here:
  8. * http://www.lesscss.org
  9. */
  10. .tree-view {
  11. }
  12. // style the background and foreground colors on the atom-text-editor-element
  13. // itself
  14. atom-text-editor {
  15. }
  16. // To style other content in the text editor's shadow DOM, use the ::shadow
  17. // expression
  18. atom-text-editor::shadow .cursor {
  19. }
  20. atom-ternjs-type {
  21. background: rgba(42, 63, 75, 0.9);
  22. }
  23. .term2 .terminal {
  24. font-family: Inconsolata, Monaco, Consolas, 'Courier New', Courier;
  25. -webkit-font-smoothing: none;
  26. }