NoteOnMe博客平台搭建
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

101 lignes
1.4 KiB

il y a 4 ans
  1. /* a11y-light theme */
  2. /* Based on the Tomorrow Night Eighties theme: https://github.com/isagalaev/highlight.js/blob/master/src/styles/tomorrow-night-eighties.css */
  3. /* @author: ericwbailey */
  4. /* Comment */
  5. .hljs-comment,
  6. .hljs-quote {
  7. color: #696969;
  8. }
  9. /* Red */
  10. .hljs-variable,
  11. .hljs-template-variable,
  12. .hljs-tag,
  13. .hljs-name,
  14. .hljs-selector-id,
  15. .hljs-selector-class,
  16. .hljs-regexp,
  17. .hljs-deletion {
  18. color: #d91e18;
  19. }
  20. code{
  21. text-align:left!important;
  22. }
  23. /* Orange */
  24. .hljs-number,
  25. .hljs-built_in,
  26. .hljs-builtin-name,
  27. .hljs-literal,
  28. .hljs-type,
  29. .hljs-params,
  30. .hljs-meta,
  31. .hljs-link {
  32. color: #aa5d00;
  33. }
  34. /* Yellow */
  35. .hljs-attribute {
  36. color: #aa5d00;
  37. }
  38. /* Green */
  39. .hljs-string,
  40. .hljs-symbol,
  41. .hljs-bullet,
  42. .hljs-addition {
  43. color: #008000;
  44. }
  45. /* Blue */
  46. .hljs-title,
  47. .hljs-section {
  48. color: #007faa;
  49. }
  50. /* Purple */
  51. .hljs-keyword,
  52. .hljs-selector-tag {
  53. color: #7928a1;
  54. }
  55. .hljs {
  56. display: block;
  57. overflow-x: auto;
  58. background: #fefefe;
  59. color: #545454;
  60. padding: 0.5em;
  61. }
  62. .hljs-emphasis {
  63. font-style: italic;
  64. }
  65. .hljs-strong {
  66. font-weight: bold;
  67. }
  68. @media screen and (-ms-high-contrast: active) {
  69. .hljs-addition,
  70. .hljs-attribute,
  71. .hljs-built_in,
  72. .hljs-builtin-name,
  73. .hljs-bullet,
  74. .hljs-comment,
  75. .hljs-link,
  76. .hljs-literal,
  77. .hljs-meta,
  78. .hljs-number,
  79. .hljs-params,
  80. .hljs-string,
  81. .hljs-symbol,
  82. .hljs-type,
  83. .hljs-quote {
  84. color: highlight;
  85. }
  86. .hljs-keyword,
  87. .hljs-selector-tag {
  88. font-weight: bold;
  89. }
  90. }