KXStudio Website https://kx.studio/
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.

110 lines
2.0KB

  1. /*
  2. * GeSHi CSS Inspired by TextMate
  3. * Theme KXStudio
  4. *
  5. * Copyright 2008 Mark Story
  6. * Copyright 2011 Filipe Coelho
  7. *
  8. * This work is licensed under the Creative Commons Attribution-Share Alike 2.5 Canada License.
  9. * To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/2.5/ca/
  10. * or send a letter to Creative Commons, 171 Second Street, Suite 300, San Francisco, California, 94105, USA
  11. *
  12. * @filesource
  13. * @copyright Copyright 2008, Mark Story.
  14. * @link http://mark-story.com
  15. * @license http://creativecommons.org/licenses/by-sa/2.5/ca/
  16. *
  17. * This file has been modified by Filipe Coelho (aka 'falkTX'), to match KXStudio's theme
  18. */
  19. /*
  20. * Global geshi styles
  21. **********************/
  22. #main pre {
  23. line-height: 1.5em;
  24. font-size: 10px;
  25. white-space: normal;
  26. padding: 0;
  27. border: 1px solid;
  28. }
  29. pre ol {
  30. list-style: decimal;
  31. list-style-position: outside;
  32. padding: 0;
  33. margin: 0;
  34. }
  35. #main pre ol li {
  36. margin: 0 0 0 35px;
  37. padding: 0;
  38. color: rgb(240,240,240);
  39. clear: none;
  40. }
  41. pre ol li div {
  42. color: rgb(240,240,240);
  43. }
  44. /* comments */
  45. .co0, .co1,
  46. .coMULTI {
  47. color: rgb(100,100,100);
  48. }
  49. /* brackets */
  50. .br0 {
  51. color: rgb(230,230,230);
  52. }
  53. /* strings */
  54. .st0, .st_h {
  55. color: rgb(230,100,100);
  56. }
  57. /* keywords */
  58. .kw1 {
  59. color: rgb(240,240,240);
  60. font-weight: 700;
  61. }
  62. .kw2 {
  63. color: rgb(100,230,100);
  64. }
  65. .kw3 {
  66. color: rgb(100,100,230);
  67. }
  68. /* numbers */
  69. .nu0 {
  70. color: rgb(230,230,100);
  71. }
  72. /* vars */
  73. .re0, .re1, .re2 {
  74. color: rgb(100,230,100);
  75. }
  76. /*
  77. * CSS selectors
  78. *****************/
  79. /* classnames */
  80. [lang=css] .kw2,
  81. .css .kw2 {
  82. color: rgb(240,240,240);
  83. font-weight: 700;
  84. }
  85. .re1 {
  86. color: rgb(240,240,240);
  87. font-weight: 700;
  88. }
  89. /* css px */
  90. .re3 {
  91. color: rgb(230,230,100);
  92. }
  93. /*
  94. * Javascript
  95. ****************/
  96. [lang=javascript] .me1,
  97. .javascript .me1 {
  98. color: rgb(100,100,230);
  99. }