Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

bespin.css 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. Name: Bespin
  3. Author: Mozilla / Jan T. Sott
  4. CodeMirror template by Jan T. Sott (https://github.com/idleberg/base16-codemirror)
  5. Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16)
  6. */
  7. .cm-s-bespin.CodeMirror {
  8. background: #28211c;
  9. color: #9d9b97;
  10. }
  11. .cm-s-bespin div.CodeMirror-selected {
  12. background: #36312e !important;
  13. }
  14. .cm-s-bespin .CodeMirror-gutters {
  15. background: #28211c;
  16. border-right: 0px;
  17. }
  18. .cm-s-bespin .CodeMirror-linenumber {
  19. color: #666666;
  20. }
  21. .cm-s-bespin .CodeMirror-cursor {
  22. border-left: 1px solid #797977 !important;
  23. }
  24. .cm-s-bespin span.cm-comment {
  25. color: #937121;
  26. }
  27. .cm-s-bespin span.cm-atom {
  28. color: #9b859d;
  29. }
  30. .cm-s-bespin span.cm-number {
  31. color: #9b859d;
  32. }
  33. .cm-s-bespin span.cm-property, .cm-s-bespin span.cm-attribute {
  34. color: #54be0d;
  35. }
  36. .cm-s-bespin span.cm-keyword {
  37. color: #cf6a4c;
  38. }
  39. .cm-s-bespin span.cm-string {
  40. color: #f9ee98;
  41. }
  42. .cm-s-bespin span.cm-variable {
  43. color: #54be0d;
  44. }
  45. .cm-s-bespin span.cm-variable-2 {
  46. color: #5ea6ea;
  47. }
  48. .cm-s-bespin span.cm-def {
  49. color: #cf7d34;
  50. }
  51. .cm-s-bespin span.cm-error {
  52. background: #cf6a4c;
  53. color: #797977;
  54. }
  55. .cm-s-bespin span.cm-bracket {
  56. color: #9d9b97;
  57. }
  58. .cm-s-bespin span.cm-tag {
  59. color: #cf6a4c;
  60. }
  61. .cm-s-bespin span.cm-link {
  62. color: #9b859d;
  63. }
  64. .cm-s-bespin .CodeMirror-matchingbracket {
  65. text-decoration: underline;
  66. color: white !important;
  67. }
  68. .cm-s-bespin .CodeMirror-activeline-background {
  69. background: #404040;
  70. }