NoteOnMe博客平台搭建
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.

108 lines
1.2 KiB

3 years ago
  1. /*
  2. highlight.js style for Microtik RouterOS script
  3. */
  4. .hljs {
  5. display: block;
  6. overflow-x: auto;
  7. padding: 0.5em;
  8. background: #F0F0F0;
  9. }
  10. /* Base color: saturation 0; */
  11. .hljs,
  12. .hljs-subst {
  13. color: #444;
  14. }
  15. .hljs-comment {
  16. color: #888888;
  17. }
  18. .hljs-keyword,
  19. .hljs-selector-tag,
  20. .hljs-meta-keyword,
  21. .hljs-doctag,
  22. .hljs-name {
  23. font-weight: bold;
  24. }
  25. .hljs-attribute {
  26. color: #0E9A00;
  27. }
  28. .hljs-function {
  29. color: #99069A;
  30. }
  31. .hljs-builtin-name {
  32. color: #99069A;
  33. }
  34. /* User color: hue: 0 */
  35. .hljs-type,
  36. .hljs-string,
  37. .hljs-number,
  38. .hljs-selector-id,
  39. .hljs-selector-class,
  40. .hljs-quote,
  41. .hljs-template-tag,
  42. .hljs-deletion {
  43. color: #880000;
  44. }
  45. .hljs-title,
  46. .hljs-section {
  47. color: #880000;
  48. font-weight: bold;
  49. }
  50. .hljs-regexp,
  51. .hljs-symbol,
  52. .hljs-variable,
  53. .hljs-template-variable,
  54. .hljs-link,
  55. .hljs-selector-attr,
  56. .hljs-selector-pseudo {
  57. color: #BC6060;
  58. }
  59. /* Language color: hue: 90; */
  60. .hljs-literal {
  61. color: #78A960;
  62. }
  63. .hljs-built_in,
  64. .hljs-bullet,
  65. .hljs-code,
  66. .hljs-addition {
  67. color: #0C9A9A;
  68. }
  69. /* Meta color: hue: 200 */
  70. .hljs-meta {
  71. color: #1f7199;
  72. }
  73. .hljs-meta-string {
  74. color: #4d99bf;
  75. }
  76. /* Misc effects */
  77. .hljs-emphasis {
  78. font-style: italic;
  79. }
  80. .hljs-strong {
  81. font-weight: bold;
  82. }