aboutsummaryrefslogtreecommitdiff
path: root/styles/sdml.scss
blob: 592a5982868c33293bfc09040c3b7cd8e34c7709 (plain)
  1. @mixin sdml {
  2. pre code.sdml {
  3. font-family: "InconsolataN",monospace;
  4. // font-size: .9em;
  5. // font-weight: 300;
  6. // line-height: 1.4;
  7. padding: .6em;
  8. border: 1px solid #e1e4e5;
  9. white-space: pre;
  10. }
  11. pre code.sdml span.comment {
  12. color: #949494;
  13. font-style: italic;
  14. }
  15. pre code.sdml span.constant-builtin {
  16. color: #5f5f00;
  17. }
  18. pre code.sdml span.error {
  19. color: #ff0000;
  20. }
  21. pre code.sdml span.function-call {
  22. color: #005fd7;
  23. }
  24. pre code.sdml span.keyword {
  25. color: #878700;
  26. }
  27. pre code.sdml span.operator {
  28. color: #4e4e4e;
  29. font-weight: bold;
  30. }
  31. pre code.sdml span.module {
  32. color: #005faf;
  33. }
  34. pre code.sdml span.module-definition {
  35. color: #0000af;
  36. }
  37. pre code.sdml span.number {
  38. color: #5f5f00;
  39. }
  40. pre code.sdml span.property {
  41. color: #d70000;
  42. }
  43. pre code.sdml span.punctuation-bracket {
  44. color: #4e4e4e;
  45. }
  46. pre code.sdml span.string {
  47. color: #5faf00;
  48. }
  49. pre code.sdml span.string-special {
  50. color: #8700d7;
  51. }
  52. pre code.sdml span.type {
  53. color: #005fff;
  54. }
  55. pre code.sdml span.type-definition {
  56. color: #0000ff;
  57. }
  58. pre code.sdml span.variable-field {
  59. color: #5f87af;
  60. }
  61. }