vs.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>
  3. */
  4. pre code {
  5. display: block; padding: 0.5em;
  6. }
  7. pre .comment,
  8. pre .annotation,
  9. pre .template_comment,
  10. pre .diff .header,
  11. pre .chunk,
  12. pre .apache .cbracket {
  13. color: rgb(0, 128, 0);
  14. }
  15. pre .keyword,
  16. pre .id,
  17. pre .built_in,
  18. pre .smalltalk .class,
  19. pre .winutils,
  20. pre .bash .variable,
  21. pre .tex .command,
  22. pre .request,
  23. pre .status,
  24. pre .nginx .title,
  25. pre .xml .tag,
  26. pre .xml .tag .value {
  27. color: rgb(0, 0, 255);
  28. }
  29. pre .string,
  30. pre .title,
  31. pre .parent,
  32. pre .tag .value,
  33. pre .rules .value,
  34. pre .rules .value .number,
  35. pre .ruby .symbol,
  36. pre .ruby .symbol .string,
  37. pre .aggregate,
  38. pre .template_tag,
  39. pre .django .variable,
  40. pre .addition,
  41. pre .flow,
  42. pre .stream,
  43. pre .apache .tag,
  44. pre .date,
  45. pre .tex .formula {
  46. color: rgb(163, 21, 21);
  47. }
  48. pre .ruby .string,
  49. pre .decorator,
  50. pre .filter .argument,
  51. pre .localvars,
  52. pre .array,
  53. pre .attr_selector,
  54. pre .pseudo,
  55. pre .pi,
  56. pre .doctype,
  57. pre .deletion,
  58. pre .envvar,
  59. pre .shebang,
  60. pre .preprocessor,
  61. pre .userType,
  62. pre .apache .sqbracket,
  63. pre .nginx .built_in,
  64. pre .tex .special,
  65. pre .prompt {
  66. color: rgb(43, 145, 175);
  67. }
  68. pre .phpdoc,
  69. pre .javadoc,
  70. pre .xmlDocTag {
  71. color: rgb(128, 128, 128);
  72. }
  73. pre .vhdl .typename { font-weight: bold; }
  74. pre .vhdl .string { color: #666666; }
  75. pre .vhdl .literal { color: rgb(163, 21, 21); }
  76. pre .vhdl .attribute { color: #00B0E8; }
  77. pre .xml .attribute { color: rgb(255, 0, 0); }