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.

97 lines
1.2KB

  1. /*
  2. Atom One Dark by Daniel Gamage
  3. Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax
  4. base: #282c34
  5. mono-1: #abb2bf
  6. mono-2: #818896
  7. mono-3: #5c6370
  8. hue-1: #56b6c2
  9. hue-2: #61aeee
  10. hue-3: #c678dd
  11. hue-4: #98c379
  12. hue-5: #e06c75
  13. hue-5-2: #be5046
  14. hue-6: #d19a66
  15. hue-6-2: #e6c07b
  16. */
  17. .hljs {
  18. display: block;
  19. overflow-x: auto;
  20. padding: 0.5em;
  21. color: #abb2bf;
  22. background: #282c34;
  23. }
  24. .hljs-comment,
  25. .hljs-quote {
  26. color: #5c6370;
  27. font-style: italic;
  28. }
  29. .hljs-doctag,
  30. .hljs-keyword,
  31. .hljs-formula {
  32. color: #c678dd;
  33. }
  34. .hljs-section,
  35. .hljs-name,
  36. .hljs-selector-tag,
  37. .hljs-deletion,
  38. .hljs-subst {
  39. color: #e06c75;
  40. }
  41. .hljs-literal {
  42. color: #56b6c2;
  43. }
  44. .hljs-string,
  45. .hljs-regexp,
  46. .hljs-addition,
  47. .hljs-attribute,
  48. .hljs-meta-string {
  49. color: #98c379;
  50. }
  51. .hljs-built_in,
  52. .hljs-class .hljs-title {
  53. color: #e6c07b;
  54. }
  55. .hljs-attr,
  56. .hljs-variable,
  57. .hljs-template-variable,
  58. .hljs-type,
  59. .hljs-selector-class,
  60. .hljs-selector-attr,
  61. .hljs-selector-pseudo,
  62. .hljs-number {
  63. color: #d19a66;
  64. }
  65. .hljs-symbol,
  66. .hljs-bullet,
  67. .hljs-link,
  68. .hljs-meta,
  69. .hljs-selector-id,
  70. .hljs-title {
  71. color: #61aeee;
  72. }
  73. .hljs-emphasis {
  74. font-style: italic;
  75. }
  76. .hljs-strong {
  77. font-weight: bold;
  78. }
  79. .hljs-link {
  80. text-decoration: underline;
  81. }