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.

77 lines
1.6 KiB

2 years ago
  1. /*
  2. Atom One Dark With support for ReasonML by Gidi Morris, based off work by Daniel Gamage
  3. Original One Dark Syntax theme from https://github.com/atom/one-dark-syntax
  4. */
  5. .hljs {
  6. display: block;
  7. overflow-x: auto;
  8. padding: 0.5em;
  9. line-height: 1.3em;
  10. color: #abb2bf;
  11. background: #282c34;
  12. border-radius: 5px;
  13. }
  14. .hljs-keyword, .hljs-operator {
  15. color: #F92672;
  16. }
  17. .hljs-pattern-match {
  18. color: #F92672;
  19. }
  20. .hljs-pattern-match .hljs-constructor {
  21. color: #61aeee;
  22. }
  23. .hljs-function {
  24. color: #61aeee;
  25. }
  26. .hljs-function .hljs-params {
  27. color: #A6E22E;
  28. }
  29. .hljs-function .hljs-params .hljs-typing {
  30. color: #FD971F;
  31. }
  32. .hljs-module-access .hljs-module {
  33. color: #7e57c2;
  34. }
  35. .hljs-constructor {
  36. color: #e2b93d;
  37. }
  38. .hljs-constructor .hljs-string {
  39. color: #9CCC65;
  40. }
  41. .hljs-comment, .hljs-quote {
  42. color: #b18eb1;
  43. font-style: italic;
  44. }
  45. .hljs-doctag, .hljs-formula {
  46. color: #c678dd;
  47. }
  48. .hljs-section, .hljs-name, .hljs-selector-tag, .hljs-deletion, .hljs-subst {
  49. color: #e06c75;
  50. }
  51. .hljs-literal {
  52. color: #56b6c2;
  53. }
  54. .hljs-string, .hljs-regexp, .hljs-addition, .hljs-attribute, .hljs-meta-string {
  55. color: #98c379;
  56. }
  57. .hljs-built_in, .hljs-class .hljs-title {
  58. color: #e6c07b;
  59. }
  60. .hljs-attr, .hljs-variable, .hljs-template-variable, .hljs-type, .hljs-selector-class, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-number {
  61. color: #d19a66;
  62. }
  63. .hljs-symbol, .hljs-bullet, .hljs-link, .hljs-meta, .hljs-selector-id, .hljs-title {
  64. color: #61aeee;
  65. }
  66. .hljs-emphasis {
  67. font-style: italic;
  68. }
  69. .hljs-strong {
  70. font-weight: bold;
  71. }
  72. .hljs-link {
  73. text-decoration: underline;
  74. }