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.

94 lines
1.2 KiB

  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. color: #383a42;
  19. background: #fafafa;
  20. }
  21. .hljs-comment,
  22. .hljs-quote {
  23. color: #a0a1a7;
  24. font-style: italic;
  25. }
  26. .hljs-doctag,
  27. .hljs-keyword,
  28. .hljs-formula {
  29. color: #a626a4;
  30. }
  31. .hljs-section,
  32. .hljs-name,
  33. .hljs-selector-tag,
  34. .hljs-deletion,
  35. .hljs-subst {
  36. color: #e45649;
  37. }
  38. .hljs-literal {
  39. color: #0184bb;
  40. }
  41. .hljs-string,
  42. .hljs-regexp,
  43. .hljs-addition,
  44. .hljs-attribute,
  45. .hljs-meta .hljs-string {
  46. color: #50a14f;
  47. }
  48. .hljs-attr,
  49. .hljs-variable,
  50. .hljs-template-variable,
  51. .hljs-type,
  52. .hljs-selector-class,
  53. .hljs-selector-attr,
  54. .hljs-selector-pseudo,
  55. .hljs-number {
  56. color: #986801;
  57. }
  58. .hljs-symbol,
  59. .hljs-bullet,
  60. .hljs-link,
  61. .hljs-meta,
  62. .hljs-selector-id,
  63. .hljs-title {
  64. color: #4078f2;
  65. }
  66. .hljs-built_in,
  67. .hljs-title.class_,
  68. .hljs-class .hljs-title {
  69. color: #c18401;
  70. }
  71. .hljs-emphasis {
  72. font-style: italic;
  73. }
  74. .hljs-strong {
  75. font-weight: bold;
  76. }
  77. .hljs-link {
  78. text-decoration: underline;
  79. }