atom-one-dark.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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: .5em;
  21. color: #abb2bf;
  22. background: #282c34;
  23. }
  24. .hljs-comment, .hljs-quote {
  25. color: #5c6370;
  26. font-style: italic;
  27. }
  28. .hljs-doctag, .hljs-keyword, .hljs-formula {
  29. color: #c678dd;
  30. }
  31. .hljs-section, .hljs-name, .hljs-selector-tag, .hljs-deletion, .hljs-subst {
  32. color: #e06c75;
  33. }
  34. .hljs-literal {
  35. color: #56b6c2;
  36. }
  37. .hljs-string, .hljs-regexp, .hljs-addition, .hljs-attribute, .hljs-meta-string {
  38. color: #98c379;
  39. }
  40. .hljs-built_in, .hljs-class .hljs-title {
  41. color: #e6c07b;
  42. }
  43. .hljs-attr, .hljs-variable, .hljs-template-variable, .hljs-type, .hljs-selector-class, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-number {
  44. color: #d19a66;
  45. }
  46. .hljs-symbol, .hljs-bullet, .hljs-link, .hljs-meta, .hljs-selector-id, .hljs-title {
  47. color: #61aeee;
  48. }
  49. .hljs-emphasis {
  50. font-style: italic;
  51. }
  52. .hljs-strong {
  53. font-weight: bold;
  54. }
  55. .hljs-link {
  56. text-decoration: underline;
  57. }