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.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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 {
  13. border-color: #ff2c6d;
  14. }
  15. .cm-s-panda-syntax .CodeMirror-activeline-background {
  16. background: rgba(99, 123, 156, 0.1);
  17. }
  18. .cm-s-panda-syntax .CodeMirror-selected {
  19. background: #FFF;
  20. }
  21. .cm-s-panda-syntax .cm-comment {
  22. font-style: italic;
  23. color: #676B79;
  24. }
  25. .cm-s-panda-syntax .cm-operator {
  26. color: #f3f3f3;
  27. }
  28. .cm-s-panda-syntax .cm-string {
  29. color: #19F9D8;
  30. }
  31. .cm-s-panda-syntax .cm-string-2 {
  32. color: #FFB86C;
  33. }
  34. .cm-s-panda-syntax .cm-tag {
  35. color: #ff2c6d;
  36. }
  37. .cm-s-panda-syntax .cm-meta {
  38. color: #b084eb;
  39. }
  40. .cm-s-panda-syntax .cm-number {
  41. color: #FFB86C;
  42. }
  43. .cm-s-panda-syntax .cm-atom {
  44. color: #ff2c6d;
  45. }
  46. .cm-s-panda-syntax .cm-keyword {
  47. color: #FF75B5;
  48. }
  49. .cm-s-panda-syntax .cm-variable {
  50. color: #ffb86c;
  51. }
  52. .cm-s-panda-syntax .cm-variable-2 {
  53. color: #ff9ac1;
  54. }
  55. .cm-s-panda-syntax .cm-variable-3, .cm-s-panda-syntax .cm-type {
  56. color: #ff9ac1;
  57. }
  58. .cm-s-panda-syntax .cm-def {
  59. color: #e6e6e6;
  60. }
  61. .cm-s-panda-syntax .cm-property {
  62. color: #f3f3f3;
  63. }
  64. .cm-s-panda-syntax .cm-unit {
  65. color: #ffb86c;
  66. }
  67. .cm-s-panda-syntax .cm-attribute {
  68. color: #ffb86c;
  69. }
  70. .cm-s-panda-syntax .CodeMirror-matchingbracket {
  71. border-bottom: 1px dotted #19F9D8;
  72. padding-bottom: 2px;
  73. color: #e6e6e6;
  74. }
  75. .cm-s-panda-syntax .CodeMirror-gutters {
  76. background: #292a2b;
  77. border-right-color: rgba(255, 255, 255, 0.1);
  78. }
  79. .cm-s-panda-syntax .CodeMirror-linenumber {
  80. color: #e6e6e6;
  81. opacity: 0.6;
  82. }