Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.80 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <!--
  4.  
  5. Copyright (C) 2016 Rémi Hervé
  6.  
  7. This library is free software; you can redistribute it and/or
  8. modify it under the terms of the GNU Library General Public
  9. License as published by the Free Software Foundation; either
  10. version 2 of the License, or (at your option) any later version.
  11.  
  12. This library is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. Library General Public License for more details.
  16.  
  17. You should have received a copy of the GNU Library General Public
  18. License along with this library; if not, write to the
  19. Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  20. Boston, MA 02111-1307, USA.
  21.  
  22. -->
  23.  
  24. <style-scheme id="peppermint" _name="Peppermint" version="1.0">
  25. <author>Rémi Hervé</author>
  26. <_description>Refreshing dark theme</_description>
  27.  
  28. <!-- Colors -->
  29. <color name="red" value="#ff0028"/>
  30. <color name="bright_red" value="#ff6685"/>
  31. <color name="green" value="#a6eba6"/>
  32. <color name="bright_green" value="#c5ebc5"/>
  33. <color name="blue" value="#0088ff"/>
  34. <color name="bright_blue" value="#5dc6f5"/>
  35. <color name="magenta" value="#ff8fff"/>
  36. <color name="white" value="#e6e6e6"/>
  37. <color name="bright_grey" value="#808080"/>
  38. <color name="grey" value="#404040"/>
  39. <color name="bright_black" value="#2b2b2b"/>
  40. <color name="black" value="#1b1b1b"/>
  41.  
  42. <!-- Global Settings -->
  43. <style name="text" foreground="white" background="bright_black"/>
  44. <style name="cursor" foreground="white"/>
  45. <style name="current-line" background="grey"/>
  46. <style name="line-numbers" foreground="bright_grey" background="black"/>
  47. <style name="selection" foreground="white" background="blue"/>
  48.  
  49. <!-- Bracket Matching -->
  50. <style name="bracket-match" foreground="bright_black" background="bright_blue"/>
  51. <style name="bracket-mismatch" background="red" bold="true"/>
  52. <style name="search-match" foreground="bright_black" background="magenta"/>
  53.  
  54. <!-- Base syntax colors -->
  55. <style name="def:string" foreground="green"/>
  56. <style name="def:character" foreground="green"/>
  57. <style name="def:special-char" foreground="green"/>
  58. <style name="def:number" foreground="bright_red"/>
  59. <style name="def:decimal" foreground="bright_red"/>
  60. <style name="def:floating-point" foreground="bright_red"/>
  61. <style name="def:complex" foreground="bright_red"/>
  62. <style name="def:base-n-integer" foreground="bright_red"/>
  63. <style name="def:boolean" foreground="bright_red"/>
  64.  
  65. <style name="def:builtin" foreground="bright_blue"/>
  66. <style name="def:keyword" foreground="bright_blue"/>
  67. <style name="def:function" foreground="bright_blue"/>
  68. <style name="def:type" foreground="magenta"/>
  69. <style name="def:preprocessor" foreground="bright_blue"/>
  70. <style name="def:identifier" foreground="bright_blue"/>
  71. <style name="def:operator" foreground="bright_blue"/>
  72. <style name="def:statement" foreground="bright_blue"/>
  73.  
  74. <style name="def:constant" foreground="bright_red"/>
  75. <style name="def:special-constant" foreground="bright_red"/>
  76. <style name="def:error" foreground="bright_black" background="red" bold="true"/>
  77.  
  78. <!-- Comments -->
  79. <style name="def:comment" foreground="bright_green" italic="true"/>
  80. <style name="def:shebang" foreground="bright_green" italic="true"/>
  81. <style name="def:doc-comment-element" foreground="bright_green" italic="true"/>
  82. <style name="def:note" foreground="bright_green" italic="true"/>
  83.  
  84. </style-scheme>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement