atom-one-light.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. Atom One Light by Daniel Gamage
  3. Original One Light Syntax theme from https://github.com/atom/one-light-syntax
  4. base: #fafafa
  5. mono-1: #383a42
  6. mono-2: #686b77
  7. mono-3: #a0a1a7
  8. hue-1: #0184bb
  9. hue-2: #4078f2
  10. hue-3: #a626a4
  11. hue-4: #50a14f
  12. hue-5: #e45649
  13. hue-5-2: #c91243
  14. hue-6: #986801
  15. hue-6-2: #c18401
  16. */
  17. .hljs {
  18. display: block;
  19. overflow-x: auto;
  20. padding: .5em;
  21. color: #383a42;
  22. background: #fafafa;
  23. }
  24. .hljs-comment, .hljs-quote {
  25. color: #a0a1a7;
  26. font-style: italic;
  27. }
  28. .hljs-doctag, .hljs-keyword, .hljs-formula {
  29. color: #a626a4;
  30. }
  31. .hljs-section, .hljs-name, .hljs-selector-tag, .hljs-deletion, .hljs-subst {
  32. color: #e45649;
  33. }
  34. .hljs-literal {
  35. color: #0184bb;
  36. }
  37. .hljs-string, .hljs-regexp, .hljs-addition, .hljs-attribute, .hljs-meta-string {
  38. color: #50a14f;
  39. }
  40. .hljs-built_in, .hljs-class .hljs-title {
  41. color: #c18401;
  42. }
  43. .hljs-attr, .hljs-variable, .hljs-template-variable, .hljs-type, .hljs-selector-class, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-number {
  44. color: #986801;
  45. }
  46. .hljs-symbol, .hljs-bullet, .hljs-link, .hljs-meta, .hljs-selector-id, .hljs-title {
  47. color: #4078f2;
  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. }