Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

vibrant-ink.css 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. /* Taken from the popular Visual Studio Vibrant Ink Schema */
  2. .cm-s-vibrant-ink.CodeMirror {
  3. background: black;
  4. color: white;
  5. }
  6. .cm-s-vibrant-ink div.CodeMirror-selected {
  7. background: #35493c;
  8. }
  9. .cm-s-vibrant-ink .CodeMirror-line::selection, .cm-s-vibrant-ink .CodeMirror-line > span::selection, .cm-s-vibrant-ink .CodeMirror-line > span > span::selection {
  10. background: rgba(53, 73, 60, 0.99);
  11. }
  12. .cm-s-vibrant-ink .CodeMirror-line::-moz-selection, .cm-s-vibrant-ink .CodeMirror-line > span::-moz-selection, .cm-s-vibrant-ink .CodeMirror-line > span > span::-moz-selection {
  13. background: rgba(53, 73, 60, 0.99);
  14. }
  15. .cm-s-vibrant-ink .CodeMirror-gutters {
  16. background: #002240;
  17. border-right: 1px solid #aaa;
  18. }
  19. .cm-s-vibrant-ink .CodeMirror-guttermarker {
  20. color: white;
  21. }
  22. .cm-s-vibrant-ink .CodeMirror-guttermarker-subtle {
  23. color: #d0d0d0;
  24. }
  25. .cm-s-vibrant-ink .CodeMirror-linenumber {
  26. color: #d0d0d0;
  27. }
  28. .cm-s-vibrant-ink .CodeMirror-cursor {
  29. border-left: 1px solid white;
  30. }
  31. .cm-s-vibrant-ink .cm-keyword {
  32. color: #CC7832;
  33. }
  34. .cm-s-vibrant-ink .cm-atom {
  35. color: #FC0;
  36. }
  37. .cm-s-vibrant-ink .cm-number {
  38. color: #FFEE98;
  39. }
  40. .cm-s-vibrant-ink .cm-def {
  41. color: #8DA6CE;
  42. }
  43. .cm-s-vibrant-ink span.cm-variable-2, .cm-s-vibrant span.cm-tag {
  44. color: #FFC66D;
  45. }
  46. .cm-s-vibrant-ink span.cm-variable-3, .cm-s-vibrant span.cm-def, .cm-s-vibrant span.cm-type {
  47. color: #FFC66D;
  48. }
  49. .cm-s-vibrant-ink .cm-operator {
  50. color: #888;
  51. }
  52. .cm-s-vibrant-ink .cm-comment {
  53. color: gray;
  54. font-weight: bold;
  55. }
  56. .cm-s-vibrant-ink .cm-string {
  57. color: #A5C25C;
  58. }
  59. .cm-s-vibrant-ink .cm-string-2 {
  60. color: red;
  61. }
  62. .cm-s-vibrant-ink .cm-meta {
  63. color: #D8FA3C;
  64. }
  65. .cm-s-vibrant-ink .cm-builtin {
  66. color: #8DA6CE;
  67. }
  68. .cm-s-vibrant-ink .cm-tag {
  69. color: #8DA6CE;
  70. }
  71. .cm-s-vibrant-ink .cm-attribute {
  72. color: #8DA6CE;
  73. }
  74. .cm-s-vibrant-ink .cm-header {
  75. color: #FF6400;
  76. }
  77. .cm-s-vibrant-ink .cm-hr {
  78. color: #AEAEAE;
  79. }
  80. .cm-s-vibrant-ink .cm-link {
  81. color: #5656F3;
  82. }
  83. .cm-s-vibrant-ink .cm-error {
  84. border-bottom: 1px solid red;
  85. }
  86. .cm-s-vibrant-ink .CodeMirror-activeline-background {
  87. background: #27282E;
  88. }
  89. .cm-s-vibrant-ink .CodeMirror-matchingbracket {
  90. outline: 1px solid grey;
  91. color: white !important;
  92. }