You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

85 lines
1.8 KiB

2 months ago
  1. /*
  2. Name: Panda Syntax
  3. Author: Siamak Mokhtari (http://github.com/siamak/)
  4. CodeMirror template by Siamak Mokhtari (https://github.com/siamak/atom-panda-syntax)
  5. */
  6. .cm-s-panda-syntax {
  7. background: #292A2B;
  8. color: #E6E6E6;
  9. line-height: 1.5;
  10. font-family: 'Operator Mono', 'Source Code Pro', Menlo, Monaco, Consolas, Courier New, monospace;
  11. }
  12. .cm-s-panda-syntax .CodeMirror-cursor { border-color: #ff2c6d; }
  13. .cm-s-panda-syntax .CodeMirror-activeline-background {
  14. background: rgba(99, 123, 156, 0.1);
  15. }
  16. .cm-s-panda-syntax .CodeMirror-selected {
  17. background: #FFF;
  18. }
  19. .cm-s-panda-syntax .cm-comment {
  20. font-style: italic;
  21. color: #676B79;
  22. }
  23. .cm-s-panda-syntax .cm-operator {
  24. color: #f3f3f3;
  25. }
  26. .cm-s-panda-syntax .cm-string {
  27. color: #19F9D8;
  28. }
  29. .cm-s-panda-syntax .cm-string-2 {
  30. color: #FFB86C;
  31. }
  32. .cm-s-panda-syntax .cm-tag {
  33. color: #ff2c6d;
  34. }
  35. .cm-s-panda-syntax .cm-meta {
  36. color: #b084eb;
  37. }
  38. .cm-s-panda-syntax .cm-number {
  39. color: #FFB86C;
  40. }
  41. .cm-s-panda-syntax .cm-atom {
  42. color: #ff2c6d;
  43. }
  44. .cm-s-panda-syntax .cm-keyword {
  45. color: #FF75B5;
  46. }
  47. .cm-s-panda-syntax .cm-variable {
  48. color: #ffb86c;
  49. }
  50. .cm-s-panda-syntax .cm-variable-2 {
  51. color: #ff9ac1;
  52. }
  53. .cm-s-panda-syntax .cm-variable-3, .cm-s-panda-syntax .cm-type {
  54. color: #ff9ac1;
  55. }
  56. .cm-s-panda-syntax .cm-def {
  57. color: #e6e6e6;
  58. }
  59. .cm-s-panda-syntax .cm-property {
  60. color: #f3f3f3;
  61. }
  62. .cm-s-panda-syntax .cm-unit {
  63. color: #ffb86c;
  64. }
  65. .cm-s-panda-syntax .cm-attribute {
  66. color: #ffb86c;
  67. }
  68. .cm-s-panda-syntax .CodeMirror-matchingbracket {
  69. border-bottom: 1px dotted #19F9D8;
  70. padding-bottom: 2px;
  71. color: #e6e6e6;
  72. }
  73. .cm-s-panda-syntax .CodeMirror-gutters {
  74. background: #292a2b;
  75. border-right-color: rgba(255, 255, 255, 0.1);
  76. }
  77. .cm-s-panda-syntax .CodeMirror-linenumber {
  78. color: #e6e6e6;
  79. opacity: 0.6;
  80. }