styles.less 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * Your Stylesheet
  3. *
  4. * This stylesheet is loaded when Atom starts up and is reloaded automatically
  5. * when it is changed and saved.
  6. *
  7. * Add your own CSS or Less to fully customize Atom.
  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. // To style other content in the text editor's shadow DOM, use the ::shadow expression
  25. atom-text-editor::shadow .cursor {
  26. // border-color: red;
  27. }
  28. atom-ternjs-type {
  29. border: 1px solid rgba(116, 124, 128, 0.9);
  30. // background: rgba(240, 248, 252, 0.9); // for light themes
  31. background: rgba(42, 63, 75, 0.9); // for dark themes
  32. }
  33. .term2 .terminal {
  34. font-family: Inconsolata, Monaco, Consolas, 'Courier New', Courier;
  35. -webkit-font-smoothing: none;
  36. background: rgba(0, 0, 0, 0.9);
  37. }
  38. atom-notifications {
  39. opacity: 0.7;
  40. }
  41. atom-notifications:hover {
  42. opacity: 1.0;
  43. }