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.

107 lines
1.3KB

  1. /**
  2. * nnfx dark - a theme inspired by Netscape Navigator/Firefox
  3. *
  4. * @version 1.0.0
  5. * @author (c) 2020 Jim Mason <jmason@ibinx.com>
  6. * @license https://creativecommons.org/licenses/by-sa/4.0 CC BY-SA 4.0
  7. */
  8. .hljs {
  9. display: block;
  10. overflow-x: auto;
  11. padding: 0.5em;
  12. background: #333;
  13. color: #fff;
  14. }
  15. .xml .hljs-meta {
  16. font-weight: bold;
  17. font-style: italic;
  18. color: #69f;
  19. }
  20. .hljs-comment,
  21. .hljs-quote {
  22. font-style: italic;
  23. color: #9c6;
  24. }
  25. .hljs-name,
  26. .hljs-keyword {
  27. color: #a7a;
  28. }
  29. .hljs-name,
  30. .hljs-attr {
  31. font-weight: bold;
  32. }
  33. .hljs-string {
  34. font-weight: normal;
  35. }
  36. .hljs-variable,
  37. .hljs-template-variable {
  38. color: #588;
  39. }
  40. .hljs-code,
  41. .hljs-string,
  42. .hljs-meta-string,
  43. .hljs-number,
  44. .hljs-regexp,
  45. .hljs-link {
  46. color: #bce;
  47. }
  48. .hljs-title,
  49. .hljs-symbol,
  50. .hljs-bullet,
  51. .hljs-built_in,
  52. .hljs-builtin-name {
  53. color: #d40;
  54. }
  55. .hljs-section,
  56. .hljs-meta {
  57. color: #a85;
  58. }
  59. .hljs-class .hljs-title,
  60. .hljs-type {
  61. color: #96c;
  62. }
  63. .hljs-function .hljs-title,
  64. .hljs-attr,
  65. .hljs-subst {
  66. color: #fff;
  67. }
  68. .hljs-formula {
  69. background-color: #eee;
  70. font-style: italic;
  71. }
  72. .hljs-addition {
  73. background-color: #797;
  74. }
  75. .hljs-deletion {
  76. background-color: #c99;
  77. }
  78. .hljs-selector-id,
  79. .hljs-selector-class {
  80. color: #964;
  81. }
  82. .hljs-doctag,
  83. .hljs-strong {
  84. font-weight: bold;
  85. }
  86. .hljs-emphasis {
  87. font-style: italic;
  88. }