idle.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (C) 2006-2007 Will Farrington <wcfarrington@gmail.com>
  4. This library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public
  6. License as published by the Free Software Foundation; either
  7. version 2 of the License, or (at your option) any later version.
  8. This library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Library General Public License for more details.
  12. You should have received a copy of the GNU Library General Public
  13. License along with this library; if not, write to the
  14. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  15. Boston, MA 02111-1307, USA.
  16. -->
  17. <style-scheme id="idle" _name="IDLE" version="1.0">
  18. <author>Will Farrington</author>
  19. <_description>Color scheme used in the IDLE Python IDE</_description>
  20. <!-- Colors -->
  21. <color name="white" value="#ffffff"/>
  22. <color name="black" value="#000000"/>
  23. <color name="black_grey" value="#222222"/>
  24. <color name="dark_grey" value="#919191"/>
  25. <color name="light_grey" value="#dedede"/>
  26. <color name="steelblue3" value="#4f94cd"/>
  27. <color name="maroon" value="#800000"/>
  28. <color name="purple" value="#a535ae"/>
  29. <color name="orange" value="#ff5600"/>
  30. <color name="green" value="#00a33f"/>
  31. <color name="red" value="#e80023"/>
  32. <!-- Global Settings -->
  33. <style name="text" foreground="black" background="white"/>
  34. <style name="cursor" foreground="black"/>
  35. <style name="current-line" background="light_grey"/>
  36. <style name="line-numbers" foreground="black_grey" background="white"/>
  37. <!-- Bracket Matching -->
  38. <style name="bracket-match" background="steelblue3"/>
  39. <style name="bracket-mismatch" background="maroon" bold="true"/>
  40. <style name="search-match" foreground="white" background="steelblue3"/>
  41. <!-- Comments -->
  42. <style name="def:comment" foreground="dark_grey"/>
  43. <style name="def:shebang" foreground="dark_grey"/>
  44. <style name="def:doc-comment-element" foreground="dark_grey" bold="true"/>
  45. <!-- Constants and Variables-->
  46. <style name="def:constant" foreground="black"/>
  47. <style name="def:string" foreground="green"/>
  48. <style name="def:special-char" foreground="maroon"/>
  49. <style name="def:special-constant" foreground="purple" bold="true"/>
  50. <style name="def:boolean" foreground="purple"/>
  51. <style name="def:number" foreground="black"/>
  52. <style name="def:floating-point" foreground="black"/>
  53. <style name="def:keyword" foreground="orange"/>
  54. <style name="def:builtin" foreground="orange" bold="true"/>
  55. <style name="def:variable" foreground="black"/>
  56. <!-- Identifiers -->
  57. <style name="def:identifier" foreground="black"/>
  58. <!-- Statements -->
  59. <style name="def:statement" foreground="orange"/>
  60. <!-- Types -->
  61. <style name="def:type" foreground="purple"/>
  62. <!-- Others -->
  63. <style name="def:error" foreground="white" background="maroon" bold="true"/>
  64. <style name="def:note" foreground="red" bold="true"/>
  65. <style name="def:net-address-in-comment" foreground="steelblue3" italic="false" underline="true"/>
  66. <style name="def:preprocessor" color="maroon"/>
  67. <!-- Unknown? -->
  68. <style name="def:specials" background="orange"/>
  69. <!-- C Styles -->
  70. <style name="c:preprocessor" map-to="def:special-char"/>
  71. <!-- Diff Styles -->
  72. <style name="diff:ignore" foreground="dark_grey"/>
  73. <!-- Ruby Styles -->
  74. <style name="ruby:module-handler" foreground="purple"/>
  75. <style name="ruby:symbol" foreground="black"/>
  76. <style name="ruby:regex" foreground="green"/>
  77. <!-- SH Styles -->
  78. <style name="sh:others" map-to="text"/>
  79. <!-- XML Styles -->
  80. <style name="xml:attribute-name" foreground="purple"/>
  81. <style name="xml:element-name" foreground="maroon"/>
  82. </style-scheme>