Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

89 wiersze
1.0KB

  1. /* lioshi Theme */
  2. /* Original theme - https://github.com/lioshi/vscode-lioshi-theme */
  3. /* Comment */
  4. .hljs-comment {
  5. color: #8d8d8d;
  6. }
  7. /* quote */
  8. .hljs-quote {
  9. color: #b3c7d8;
  10. }
  11. /* Red */
  12. .hljs-variable,
  13. .hljs-template-variable,
  14. .hljs-tag,
  15. .hljs-name,
  16. .hljs-selector-id,
  17. .hljs-selector-class,
  18. .hljs-regexp,
  19. .hljs-deletion {
  20. color: #cc6666;
  21. }
  22. /* Orange */
  23. .hljs-number,
  24. .hljs-built_in,
  25. .hljs-builtin-name,
  26. .hljs-literal,
  27. .hljs-type,
  28. .hljs-subst
  29. .hljs-link {
  30. color: #de935f;
  31. }
  32. /* Yellow */
  33. .hljs-attribute {
  34. color: #f0c674;
  35. }
  36. /* Green */
  37. .hljs-string,
  38. .hljs-bullet,
  39. .hljs-params,
  40. .hljs-addition {
  41. color: #b5bd68;
  42. }
  43. /* Blue */
  44. .hljs-title,
  45. .hljs-meta,
  46. .hljs-section {
  47. color: #81a2be;
  48. }
  49. /* Purple */
  50. .hljs-selector-tag,
  51. .hljs-keyword,
  52. .hljs-function,
  53. .hljs-class {
  54. color: #be94bb;
  55. }
  56. /* Purple light */
  57. .hljs-symbol {
  58. color: #dbc4d9;
  59. }
  60. .hljs {
  61. display: block;
  62. overflow-x: auto;
  63. background: #303030;
  64. color: #c5c8c6;
  65. padding: 0.5em;
  66. }
  67. .hljs-emphasis {
  68. font-style: italic;
  69. }
  70. .hljs-strong {
  71. font-weight: bold;
  72. }