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 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: 0.5em;
  21. color: #383a42;
  22. background: #fafafa;
  23. }
  24. .hljs-comment,
  25. .hljs-quote {
  26. color: #a0a1a7;
  27. font-style: italic;
  28. }
  29. .hljs-doctag,
  30. .hljs-keyword,
  31. .hljs-formula {
  32. color: #a626a4;
  33. }
  34. .hljs-section,
  35. .hljs-name,
  36. .hljs-selector-tag,
  37. .hljs-deletion,
  38. .hljs-subst {
  39. color: #e45649;
  40. }
  41. .hljs-literal {
  42. color: #0184bb;
  43. }
  44. .hljs-string,
  45. .hljs-regexp,
  46. .hljs-addition,
  47. .hljs-attribute,
  48. .hljs-meta-string {
  49. color: #50a14f;
  50. }
  51. .hljs-built_in,
  52. .hljs-class .hljs-title {
  53. color: #c18401;
  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: #986801;
  64. }
  65. .hljs-symbol,
  66. .hljs-bullet,
  67. .hljs-link,
  68. .hljs-meta,
  69. .hljs-selector-id,
  70. .hljs-title {
  71. color: #4078f2;
  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. }