_prism.scss 610 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .token.comment,
  2. .token.prolog,
  3. .token.doctype,
  4. .token.cdata,
  5. .token.punctuation {
  6. color: $textColorLight;
  7. }
  8. .namespace {
  9. opacity: .7;
  10. }
  11. .token.property,
  12. .token.tag,
  13. .token.boolean,
  14. .token.number {
  15. color: #905;
  16. }
  17. .token.selector,
  18. .token.attr-name,
  19. .token.string {
  20. color: #5e8e01;
  21. }
  22. .token.operator,
  23. .token.entity,
  24. .token.url,
  25. .language-css .token.string,
  26. .style .token.string {
  27. color: #a67f59;
  28. }
  29. .token.atrule,
  30. .token.attr-value,
  31. .token.keyword {
  32. color: #0070a3;
  33. }
  34. .token.regex,
  35. .token.important {
  36. color: #e90;
  37. }
  38. .token.important {
  39. font-weight: bold;
  40. }
  41. .token.entity {
  42. cursor: help;
  43. }