textmate.xml 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Copyright (C) 2006-2007
  4. Author: Mickael Rouvier <rouvier.mickael@free.fr>
  5. This library is free software; you can redistribute it and/or
  6. modify it under the terms of the GNU Library General Public
  7. License as published by the Free Software Foundation; either
  8. version 2 of the License, or (at your option) any later version.
  9. This library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. Library General Public License for more details.
  13. You should have received a copy of the GNU Library General Public
  14. License along with this library; if not, write to the
  15. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  16. Boston, MA 02111-1307, USA.
  17. -->
  18. <style-scheme id="textmate" _name="Textmate (mac classic)" version="1.0">
  19. <author>Mickael Rouvier</author>
  20. <_description>A blue theme based on textmate</_description>
  21. <!-- The scheme tries to look like the default GVim scheme,
  22. since it is also what the hardwired GtkSourceView 1 color
  23. scheme did -->
  24. <!-- Palette -->
  25. <color name="comment" value="#0066ff"/>
  26. <color name="built-in" value="#3155ff" />
  27. <color name="variable" value="#318495" />
  28. <color name="keyword" value="#3e3eff"/>
  29. <color name="library_object" value="#6d79de" />
  30. <color name="number" value="#0000cd" />
  31. <color name="string" value="#036a07" />
  32. <color name="search" value="#b7dcff" />
  33. <color name="defined_constant" value="#c5060b" />
  34. <!-- Bracket Matching -->
  35. <style name="bracket-match" foreground="#white" background="#grey" bold="true"/>
  36. <style name="bracket-mismatch" foreground="#white" background="#red" bold="true"/>
  37. <!-- Search Matching -->
  38. <style name="search-match" background="search" />
  39. <!-- Comments -->
  40. <style name="def:comment" foreground="comment" italic="true"/>
  41. <!-- Keyword -->
  42. <style name="def:statement" foreground="keyword" bold="true"/>
  43. <style name="def:preprocessor" foreground="keyword" bold="true"/>
  44. <style name="def:keyword" foreground="keyword" bold="true"/>
  45. <!-- Number -->
  46. <style name="def:floating-point" foreground="number" />
  47. <style name="def:decimal" foreground="number" />
  48. <style name="def:base-n-integer" foreground="number" />
  49. <style name="def:base-n-integer" foreground="number" />
  50. <!-- User-defined constant -->
  51. <style name="ruby:symbol" foreground="defined_constant" bold="true" />
  52. <!-- Built-in Constant -->
  53. <style name="def:constant" foreground="built-in" bold="true" />
  54. <style name="def:boolean" foreground="built-in" bold="true" />
  55. <style name="def:special-constant" foreground="built-in" bold="true" />
  56. <!-- Variable -->
  57. <style name="def:identifier" foreground="variable"/>
  58. <!-- String -->
  59. <style name="def:string" foreground="string" />
  60. <!-- Library Object -->
  61. <style name="def:type" foreground="library_object" bold="true"/>
  62. </style-scheme>