Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgustin Zubiaga <aguzubiaga97@gmail.com>2011-12-12 18:43:05 (GMT)
committer Agustin Zubiaga <aguzubiaga97@gmail.com>2011-12-12 18:43:05 (GMT)
commit3fb33ac32d3e54e26ee73f82f846fad7708e2bb0 (patch)
tree1e2666e10fbc8578bfd42af36992861c71a17b66
parent70291dfb8c3b3d07e300d1cd74367ecf4f8bc3ce (diff)
Add styles and MANIFEST file (Daniel Francis)
-rw-r--r--MANIFEST35
-rw-r--r--styles/README2
-rw-r--r--styles/blue_dream.xml79
-rw-r--r--styles/chela_light.xml76
-rw-r--r--styles/darkmate.xml116
-rw-r--r--styles/dreamweaver.xml66
-rw-r--r--styles/edic.xml72
-rw-r--r--styles/emacs-dark.xml76
-rw-r--r--styles/emacs.xml74
-rw-r--r--styles/expresso_libre.xml109
-rw-r--r--styles/fluffy.xml73
-rw-r--r--styles/greenscreen.xml97
-rw-r--r--styles/inkpot.xml118
-rw-r--r--styles/matrix.xml91
-rw-r--r--styles/turbo.xml62
-rwxr-xr-xstyles/vibrant.xml122
16 files changed, 1268 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
new file mode 100644
index 0000000..a4afcca
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,35 @@
+setup.py
+file_choosers.py
+activity.py
+editor.py
+pep8_check.py
+font_options.py
+icons/pep8.svg
+icons/insert-datetime.svg
+icons/cut.svg
+icons/open-from-journal.svg
+icons/search-icon.svg
+icons/show-numbers.svg
+icons/format-text.svg
+icons/new.svg
+styles/fluffy.xml
+styles/blue_dream.xml
+styles/edic.xml
+styles/matrix.xml
+styles/vibrant.xml
+styles/dreamweaver.xml
+styles/emacs-dark.xml
+styles/expresso_libre.xml
+styles/inkpot.xml
+styles/emacs.xml
+styles/turbo.xml
+styles/README
+styles/greenscreen.xml
+styles/darkmate.xml
+styles/chela_light.xml
+bin/pep8
+activity/activity-jamedit.svg
+activity/activity.info
+locale/jamedit.pot
+locale/es/jamedit.po
+locale/es/LC_MESSAGES/jamedit.mo
diff --git a/styles/README b/styles/README
new file mode 100644
index 0000000..8626c16
--- /dev/null
+++ b/styles/README
@@ -0,0 +1,2 @@
+Style Files extracted from / Archivos Style extraidos de :
+http://live.gnome.org/GtkSourceView/StyleSchemes
diff --git a/styles/blue_dream.xml b/styles/blue_dream.xml
new file mode 100644
index 0000000..cc8d7ee
--- /dev/null
+++ b/styles/blue_dream.xml
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Author: Stanko Tadić
+ stanko@mfhinc.net
+ http://stanko.mfhinc.net
+ http://www.mfhinc.net
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+<style-scheme id="blue_dream" _name="blue_dream" version="1.0">
+
+ <author>Stanko Tadić</author>
+ <_description>Clean blue theme</_description>
+
+ <!-- Tango Palette -->
+ <color name="green1" value="#339900"/>
+ <color name="blue1" value="#3333ff"/>
+ <color name="magenta1" value="#cc00cc"/>
+ <color name="white1" value="#fafafa"/>
+ <color name="orange" value="#ff9d00"/>
+ <color name="purple" value="#808080"/>
+ <color name="gray1" value="#333333"/>
+ <color name="blue5" value="#3fa2ff"/>
+
+ <!-- Global Settings -->
+ <style name="text" foreground="#black" background="white"/>
+ <style name="selection" foreground="#black" background="#gray"/>
+ <style name="cursor" foreground="#black"/>
+ <style name="current-line" background="#gray92"/>
+ <style name="line-numbers" foreground="#gray" background="#white"/>
+
+ <!-- Bracket Matching -->
+ <style name="bracket-match" foreground="#black" background="#cyan"/>
+ <style name="bracket-mismatch" foreground="#white" background="#red"/>
+
+ <!-- Comments -->
+ <style name="def:comment" foreground="green1" italic="true"/>
+ <style name="def:sheband" foreground="green1" bold="false"/>
+ <style name="def:doc-comment-element" italic="true"/>
+
+ <!-- Constants -->
+ <style name="def:constant" foreground="orange"/>
+ <style name="def:string" foreground="purple"/>
+ <style name="def:special-char" foreground="magenta1"/>
+ <style name="def:special-constant" foreground="magenta1"/>
+ <style name="def:floating-point" foreground="orange"/>
+
+ <!-- Identifiers -->
+ <style name="def:identifier" foreground="blue1" bold="true"/>
+
+ <!-- Statements -->
+ <style name="def:statement" foreground="blue1" bold="false"/>
+
+ <!-- Types -->
+ <style name="def:type" foreground="blue5" bold="false"/>
+
+ <!-- Others -->
+ <style name="def:keyword" foreground="#navy" bold="true"/>
+ <style name="def:preprocessor" foreground="blue1" bold="false"/>
+ <style name="def:error" foreground="#white" background="#red" bold="false"/>
+ <style name="def:underlined" italic="true" underline="true" bold="false"/>
+ <style name="latex:display-math" foreground="magenta1" bold="false"/>
+
+</style-scheme>
diff --git a/styles/chela_light.xml b/styles/chela_light.xml
new file mode 100644
index 0000000..2b61e31
--- /dev/null
+++ b/styles/chela_light.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Copyright (C) 2007 Pedro Gongora
+ Author: Pedro Gongora <pedro.gongora@gmail.com>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+
+<style-scheme id="chela_light" _name="chela_light" version="1.0">
+
+ <author>Pedro Gongora</author>
+ <_description>chela light color scheme from gvim</_description>
+
+ <!-- Tango Palette -->
+ <color name="green1" value="#339900"/>
+ <color name="red1" value="#dd3333"/>
+ <color name="red2" value="#ff3333"/>
+ <color name="blue1" value="#3333ff"/>
+ <color name="magenta1" value="#cc00cc"/>
+ <color name="white1" value="#fafafa"/>
+
+ <!-- Global Settings -->
+ <style name="text" foreground="#black" background="white"/>
+ <style name="selection" foreground="#black" background="#gray"/>
+ <style name="cursor" foreground="#black"/>
+ <style name="current-line" background="#gray92"/>
+ <style name="line-numbers" foreground="#gray" background="#white"/>
+
+ <!-- Bracket Matching -->
+ <style name="bracket-match" foreground="#black" background="#cyan"/>
+ <style name="bracket-mismatch" foreground="#white" background="#red"/>
+
+ <!-- Comments -->
+ <style name="def:comment" foreground="green1"/>
+ <style name="def:sheband" foreground="green1" bold="false"/>
+ <style name="def:doc-comment-element" italic="true"/>
+
+ <!-- Constants -->
+ <style name="def:constant" foreground="red1"/>
+ <style name="def:string" foreground="red1"/>
+ <style name="def:special-char" foreground="magenta1"/>
+ <style name="def:special-constant" foreground="magenta1"/>
+ <style name="def:floating-point" foreground="red1"/>
+
+ <!-- Identifiers -->
+ <style name="def:identifier" foreground="blue1" bold="false"/>
+
+ <!-- Statements -->
+ <style name="def:statement" foreground="blue1" bold="false"/>
+
+ <!-- Types -->
+ <style name="def:type" foreground="blue1" bold="false"/>
+
+ <!-- Others -->
+ <style name="def:keyword" foreground="blue1" bold="false"/>
+ <style name="def:preprocessor" foreground="blue1" bold="false"/>
+ <style name="def:error" foreground="#white" background="#red" bold="false"/>
+ <style name="def:underlined" italic="true" underline="true" bold="false"/>
+ <style name="latex:display-math" foreground="magenta1" bold="false"/>
+
+</style-scheme>
diff --git a/styles/darkmate.xml b/styles/darkmate.xml
new file mode 100644
index 0000000..b0c21a5
--- /dev/null
+++ b/styles/darkmate.xml
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Copyright (C) 2006-2007 GtkSourceView team
+ Author: Luigi Maselli <luigix_@t_gmail_com>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+<style-scheme id="darkmate" _name="Darkmate" version="1.0">
+ <author>Luigi Maselli</author>
+ <_description>Color scheme Darkmate, for dark backgrounds</_description>
+
+<!--
+ Colors from the Darkmate palette. See it in action on http://grigio.org/files/darkmate.png
+-->
+ <color name="gray" value="#bbbbbb"/>
+ <color name="white" value="#eeeeee"/>
+ <color name="yellow" value="#fce94f"/>
+ <color name="senape" value="#acc900"/>
+ <color name="lime" value="#96ff00"/>
+ <color name="green" value="#00c900"/>
+ <color name="alga" value="#00c99b"/>
+ <color name="aqua" value="#00d8ff"/>
+ <color name="cyan" value="#009cff"/>
+ <color name="violet" value="#9e91ff"/>
+ <color name="purple" value="#bb66ff"/>
+ <color name="fuchsia" value="#ff44cc"/>
+ <color name="magenta" value="#ff79d9"/>
+ <color name="red" value="#ff2f6a"/>
+ <color name="orange" value="#ff6100"/>
+ <color name="ambra" value="#ff9900"/>
+ <color name="asfalto" value="#555753"/>
+ <color name="carbon" value="#232323"/>
+
+<!--
+ GUI styles
+-->
+ <style name="text" foreground="white" background="carbon"/>
+ <style name="selection" background="asfalto"/>
+ <style name="selection-unfocused" foreground="white" background="gray"/>
+ <style name="cursor" foreground="white"/>
+ <style name="secondary-cursor" foreground="magenta"/>
+ <style name="current-line" background="#black"/>
+ <style name="line-numbers" foreground="asfalto" background="gray"/>
+ <style name="bracket-match" foreground="white" background="purple" bold="true"/>
+ <style name="bracket-mismatch" foreground="white" background="magenta" bold="true"/>
+ <style name="search-match" foreground="carbon" background="yellow"/>
+
+<!--
+ Default styles
+-->
+ <style name="def:keyword" foreground="ambra" bold="true"/>
+ <style name="def:statement" foreground="alga"/>
+ <style name="def:function" foreground="violet"/>
+ <style name="def:preprocessor" foreground="white" bold="true"/>
+ <style name="def:type" foreground="cyan"/>
+
+ <style name="def:character" foreground="ambra"/>
+
+ <style name="def:comment" foreground="purple"/>
+ <style name="def:number" foreground="alga"/>
+ <style name="def:string" foreground="lime"/>
+ <style name="def:net-address-in-comment" foreground="violet" italic="true" underline="true"/>
+ <style name="def:note" foreground="white" background="fuchsia" bold="true"/>
+ <style name="def:error" background="red" bold="true"/>
+ <style name="def:escape" foreground="violet"/>
+ <style name="def:shebang" foreground="alga" bold="true"/>
+ <style name="def:doc-comment-element" italic="true"/>
+ <style name="def:identifier" foreground="green" bold="true"/>
+
+ <style name="def:specials" foreground="white" background="magenta"/>
+
+ <style name="def:variable" foreground="cyan"/>
+ <style name="def:boolean" foreground="fuchsia" bold="true"/>
+ <style name="def:constant" foreground="yellow"/>
+ <style name="def:special-constant" foreground="fuchsia" bold="true"/>
+
+
+<!--
+ Language specific styles
+-->
+<!-- <style name="ruby:keyword" foreground="ambra" bold="true"/> -->
+ <style name="ruby:comment" foreground="magenta"/>
+ <style name="ruby:attribute-definition" foreground="white" bold="true"/>
+ <style name="ruby:module-handler" foreground="white" bold="true"/>
+ <style name="ruby:builtin" foreground="yellow" bold="true"/>
+ <style name="ruby:special-variable" foreground="fuchsia" bold="true"/>
+ <style name="ruby:predefined-variable" foreground="aqua" bold="true"/>
+<!-- <style name="ruby:variable" foreground="green" bold="true"/> -->
+ <style name="ruby:symbol" foreground="cyan"/>
+ <style name="ruby:regex" foreground="fuchsia" bold="true"/>
+ <style name="ruby:constant" foreground="yellow"/>
+<!-- <style name="ruby:nil-value" foreground="fuchsia" bold="true"/> -->
+<!-- <style name="ruby:boolean" foreground="fuchsia" bold="true"/> -->
+
+ <style name="diff:added-line" foreground="lime"/>
+ <style name="diff:removed-line" foreground="magenta"/>
+ <style name="diff:changed-line" foreground="ambra"/>
+ <style name="diff:special-case" use-style="def:string"/>
+ <style name="diff:location" use-style="def:keyword"/>
+
+</style-scheme>
diff --git a/styles/dreamweaver.xml b/styles/dreamweaver.xml
new file mode 100644
index 0000000..c494969
--- /dev/null
+++ b/styles/dreamweaver.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Copyright (C) 2006-2007 GtkSourceView team
+ Author: Fabiano Shark <fabiano@fshark.com>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+<style-scheme id="dreamweaver" _name="Dreamweaver" version="1.0">
+ <author>Fabiano Shark</author>
+ <_description>Color scheme based on Dreamweaver</_description>
+
+ <!-- Global Settings -->
+ <style name="text" foreground="#black" background="#white"/>
+ <style name="selection" foreground="#black" background="#gray"/>
+ <style name="cursor" foreground="#black"/>
+ <style name="current-line" background="#gray92"/>
+ <style name="line-numbers" foreground="#black" background="#gray"/>
+
+ <!-- Bracket Matching -->
+ <style name="bracket-match" foreground="#black" background="#cyan"/>
+ <style name="bracket-mismatch" foreground="#white" background="#red"/>
+
+ <!-- Comments -->
+ <style name="def:comment" foreground="#FF8000"/>
+ <style name="def:sheband" foreground="#gray"/>
+ <style name="def:doc-comment-element" italic="true"/>
+
+ <!-- Constants -->
+ <style name="def:constant" foreground="#F00000"/>
+ <style name="def:string" foreground="#D00000"/>
+ <style name="def:special-char" foreground="#slate blue"/>
+ <style name="def:special-constant" foreground="#slate blue"/>
+ <style name="def:floating-point" foreground="#D00000"/>
+
+ <!-- Identifiers -->
+ <style name="def:identifier" foreground="#dark blue"/>
+
+ <!-- Statements -->
+ <style name="def:statement" foreground="#0000FF" bold="false"/>
+
+ <!-- Types -->
+ <style name="def:type" foreground="#0000FF" bold="false"/>
+
+ <!-- Others -->
+ <style name="def:keyword" foreground="#007700" bold="false"/>
+ <style name="def:preprocessor" foreground="#blue"/>
+ <style name="def:error" foreground="#0000FF" background="#white" bold="false"/>
+ <style name="def:underlined" italic="true" underline="true"/>
+ <style name="latex:display-math" foreground="#slate blue" bold="false"/>
+
+</style-scheme>
diff --git a/styles/edic.xml b/styles/edic.xml
new file mode 100644
index 0000000..a6afa72
--- /dev/null
+++ b/styles/edic.xml
@@ -0,0 +1,72 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<style-scheme id="edic" _name="EdiC" version="1.0">
+
+ <author>T_i_T_i</author>
+ <_description>For all programming languages especially C, C++, Java | V 2.0</_description>
+
+<!--
+XML gEdit color configuration by T_i_T_i
+
+To read this XML document with the maximum comfort
+please open it with the default gEdit font (Monospace 10)
+
+ ()()
+ (°°)
+ °
+
+-->
+
+<color name="blanc" value="#ffffff"/> <!-- Background -->
+<color name="noir" value="#000000"/> <!-- Text -->
+<color name="bleue" value="#4c39ff"/> <!-- Keywords -->
+<color name="orange" value="#ffa200"/> <!-- preprocessor -->
+<color name="gris" value="#888888"/>
+<color name="fonce" value="#272727"/>
+<color name="median" value="#e7e7e7"/> <!-- Selection unfocused -->
+<color name="cl" value="#dcdcdc"/> <!-- Current line -->
+<color name="vert" value="#61de44"/>
+<color name="bleuecomments" value="#4e7ae8"/> <!-- Comments -->
+
+<color name="ciel" value="#c1c1c1"/> <!-- Selection -->
+<color name="rouge" value="#ff0000"/>
+<color name="ofonce" value="#ff6c00"/>
+<color name="otresfonce" value="#ff5a00"/> <!-- Special -->
+<color name="jauneclair" value="#7eff00"/>
+<color name="dore" value="#bcaa16"/>
+<color name="grisclair" value="#e5e5e5"/>
+
+<!-- BASIQUES -->
+
+<style name="text" foreground="fonce" background="blanc"/>
+<style name="selection" foreground="noir" background="ciel"/>
+<style name="selection-unfocused" foreground="noir" background="median"/>
+<style name="current-line" background="cl"/>
+<style name="draw-spaces" background="cl"/>
+<style name="bracket-match" bold="true"/>
+
+<!-- SPECIAL C -->
+
+<style name="def:keyword" foreground="bleue" bold="true"/>
+<style name="def:preprocessor" foreground="vert" bold="true"/>
+<style name="def:comment" foreground="gris" italic="true"/>
+<style name="def:escaped-character" foreground="rouge"/>
+<style name="def:included-file" foreground="vert" bold="true"/>
+<style name="def:type" foreground="orange" bold="true"/>
+<style name="def:storage-class" foreground="ofonce" bold="true"/>
+<style name="def:char" foreground="rouge"/>
+<style name="def:decimal" foreground="rouge"/>
+<style name="def:octal" foreground="rouge"/>
+<style name="def:hexadecimal" foreground="rouge"/>
+<style name="def:boolean" foreground="bleue" bold="true"/>
+<style name="def:common-defines" foreground="rouge" bold="true"/>
+<style name="c:common-defines" foreground="rouge" bold="true"/>
+
+<!-- AUTRES -->
+
+<style name="bracket-match" bold="true" foreground="bleue" background="blanc" />
+<style name="def:special-char" foreground="rouge"/>
+<style name="def:string" foreground="dore"/>
+<style name="line-numbers" foreground="fonce" background="grisclair"/>
+
+</style-scheme>
+
diff --git a/styles/emacs-dark.xml b/styles/emacs-dark.xml
new file mode 100644
index 0000000..2209e60
--- /dev/null
+++ b/styles/emacs-dark.xml
@@ -0,0 +1,76 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Copyright (C) 2007 Gustavo J. A. M. Carneiro
+ Copyright (C) 2007 GtkSourceView team
+ Author: Paolo Maggi <paolo@gnome.org>
+ Paolo Borelli <pborelli@gnome.org>
+ Gustavo Carneiro <gjc@gnome.org>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+
+<style-scheme id="emacs-darkslategray" _name="Emacs Dark" version="1.0">
+
+ <author>Gustavo Carneiro</author>
+ <_description>Dark color scheme, based on GNU Emacs, but with some modifications.</_description>
+
+ <color name="DarkSlateGray" value="#2F4F4F"/>
+ <color name="Wheat" value="#F5DEB3"/>
+ <color name="DarkBlue" value="#00008B"/>
+ <color name="Orchid" value="#DA70D6"/>
+
+
+ <!-- Global Settings -->
+ <style name="text" foreground="Wheat" background="DarkSlateGray"/>
+ <style name="selection" background="DarkBlue"/>
+ <style name="cursor" foreground="Orchid"/>
+ <style name="current-line" background="#506050"/>
+ <style name="line-numbers" foreground="#grey" background="#black"/>
+
+ <!-- Bracket Matching -->
+ <style name="bracket-match" background="#247824" bold="true"/>
+ <style name="bracket-mismatch" background="#8f4f4f" bold="true"/>
+
+ <!-- Comments -->
+ <style name="def:comment" foreground="#grey"/>
+ <style name="def:sheband" foreground="#grey" bold="true"/>
+ <style name="def:doc-comment-element" italic="true"/>
+
+ <!-- Constants -->
+ <style name="def:constant" foreground="#Aquamarine"/>
+ <style name="def:string" foreground="#LightSalmon"/>
+ <style name="def:special-char" foreground="#white"/>
+ <style name="def:special-constant" foreground="#Aquamarine"/>
+ <style name="def:floating-point" foreground="#Aquamarine"/>
+
+ <!-- Identifiers -->
+ <style name="def:identifier" foreground="#LightGoldenrod"/>
+
+ <!-- Statements -->
+ <style name="def:statement" foreground="#Cyan" bold="true"/>
+
+ <!-- Types -->
+ <style name="def:type" foreground="#PaleGreen"/>
+
+ <!-- Others -->
+ <style name="def:preprocessor" foreground="#CornFlowerBlue"/>
+ <style name="def:error" foreground="#yellow" background="#red" bold="true"/>
+<!-- <style name="def:note" background="butter1" foreground="aluminium4" bold="true"/> -->
+<!-- <style name="def:underlined" italic="true" underline="true"/> -->
+
+</style-scheme>
diff --git a/styles/emacs.xml b/styles/emacs.xml
new file mode 100644
index 0000000..9279276
--- /dev/null
+++ b/styles/emacs.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Copyright (C) 2007 Pedro Gongora
+ Author: Pedro Gongora <pedro.gongora@gmail.com>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+
+<style-scheme id="emacs" _name="emacs" version="1.0">
+
+ <author>Pedro Gongora</author>
+ <_description>Emacs-like color scheme borrowed from gvim</_description>
+
+ <!-- Tango Palette -->
+ <color name="red1" value="#ac2020"/>
+ <color name="red2" value="#c28f8f"/>
+ <color name="pink1" value="#D569D5"/>
+ <color name="pink2" value="#9C20EE"/>
+
+ <!-- Global Settings -->
+ <style name="text" foreground="#black" background="#white"/>
+ <style name="selection" foreground="#black" background="#gray"/>
+ <style name="cursor" foreground="#black"/>
+ <style name="current-line" background="#gray92"/>
+ <style name="line-numbers" foreground="red1" background="#white"/>
+
+ <!-- Bracket Matching -->
+ <style name="bracket-match" foreground="#black" background="#cyan"/>
+ <style name="bracket-mismatch" foreground="#white" background="#red"/>
+
+ <!-- Comments -->
+ <style name="def:comment" foreground="red1"/>
+ <style name="def:sheband" foreground="red1" bold="true"/>
+ <style name="def:doc-comment-element" italic="true"/>
+
+ <!-- Constants -->
+ <style name="def:constant" foreground="red2"/>
+ <style name="def:string" foreground="red2"/>
+ <style name="def:special-char" foreground="#slate blue"/>
+ <style name="def:special-constant" foreground="#slate blue"/>
+ <style name="def:floating-point" foreground="red2"/>
+
+ <!-- Identifiers -->
+ <style name="def:identifier" foreground="#dark cyan"/>
+
+ <!-- Statements -->
+ <style name="def:statement" foreground="pink2" bold="true"/>
+
+ <!-- Types -->
+ <style name="def:type" foreground="pink2" bold="true"/>
+
+ <!-- Others -->
+ <style name="def:keyword" foreground="pink2" bold="false"/>
+ <style name="def:preprocessor" foreground="pink1"/>
+ <style name="def:error" foreground="#white" background="#red" bold="true"/>
+ <style name="def:underlined" italic="true" underline="true"/>
+ <style name="latex:display-math" foreground="#slate blue" bold="false"/>
+
+</style-scheme>
diff --git a/styles/expresso_libre.xml b/styles/expresso_libre.xml
new file mode 100644
index 0000000..cc3465a
--- /dev/null
+++ b/styles/expresso_libre.xml
@@ -0,0 +1,109 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+
+This program is free software; you can redistribute it and/or
+modify it under the terms of the GNU General Public License
+as published by the Free Software Foundation; either version 2
+of the License, or (at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with this program; if not, write to the Free Software
+Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+
+Copyright (C) 2011 Kenny Gallina
+https://sourceforge.net/users/gallinascripsit
+
+-->
+
+
+<style-scheme id="pastie_espresso_libre" name="Espresso Libre" version="1.0">
+ <author>Kenny Gallina</author>
+ <description>An adaptation of the &quot;Espresso Libre&quot; theme from Pastie.org, using various nuances of brown.</description>
+
+
+ <!-- Colors of Pastie.org's Espresso Libre theme -->
+ <color name="espresso-brown" value="#2a211c"/>
+ <color name="bright-blue" value="#3da8ed"/>
+ <color name="greyish-blue" value="#308495"/>
+ <color name="lilac-blue" value="#5d79de"/>
+ <color name="green" value="#0e930e"/>
+ <color name="pale-brown" value="#bdae9d"/>
+ <color name="greyish-pink" value="#c5656b"/>
+
+ <!-- Additional colors that don't belong to Espresso Libre to make the style
+ usable for gedit -->
+ <color name="white" value="#ffffff"/>
+ <color name="red" value="#ff0404"/>
+ <color name="warm-brown" value="#c47901"/>
+ <color name="light-brown" value="#52463f"/>
+ <color name="gold" value="#d99426"/>
+ <color name="creme" value="#ffe6bb"/>
+ <color name="bright-green" value="#26b800"/>
+ <color name="orange-brown" value="#e96200"/>
+ <color name="lime-green" value="#9ae000"/>
+ <color name="rosee" value="#ffaded"/>
+ <color name="yellow" value="#ffe73c"/>
+ <!--5a4d45 b5421a a04323 c36136 934A00-->
+
+ <style name="bracket-match" background="greyish-blue" foreground="espresso-brown" bold="false"/>
+ <style name="bracket-mismatch" background="red" foreground="espresso-brown" bold="false"/>
+ <style name="current-line" background="light-brown"/>
+ <style name="line-numbers" background="espresso-brown" foreground="gold"/>
+ <style name="right-margin" background="espresso-brown" foreground="pale-brown"/>
+ <style name="search-match" background="gold" foreground="espresso-brown"/>
+ <style name="text" foreground="creme" background="espresso-brown"/>
+ <style name="selection" background="white" foreground="espresso-brown"/>
+ <style name="selection-unfocused" background="white" foreground="espresso-brown"/>
+
+
+ <style name="def:base-n-integer" foreground="rosee"/>
+ <style name="def:boolean" foreground="yellow" bold="true"/>
+ <style name="def:builtin" foreground="pale-brown"/> <!-- unsure -->
+ <style name="def:character" foreground="lime-green"/>
+ <style name="def:comment" foreground="orange-brown"/>
+ <style name="def:complex" foreground="greyish-pink"/>
+ <style name="def:constant" foreground="white"/>
+ <style name="def:decimal" foreground="rosee"/>
+ <style name="def:doc-comment-element" foreground="greyish-blue" italic="true"/> <!-- untested -->
+ <style name="def:error" background="red" foreground="espresso-brown" bold="true"/>
+ <style name="def:floating-point" foreground="greyish-pink"/>
+ <style name="def:function" foreground="bright-blue"/>
+ <style name="def:identifier" foreground="warm-brown" bold="true"/>
+ <style name="def:keyword" foreground="bright-blue" bold="true"/>
+ <style name="def:note" background="orange-brown" foreground="espresso-brown" bold="true"/>
+ <style name="def:preprocessor" foreground="warm-brown"/>
+ <style name="def:shebang" foreground="warm-brown" italic="true"/>
+ <style name="def:special-char" foreground="lime-green"/>
+ <style name="def:special-constant" foreground="red" bold="true"/>
+ <style name="def:statement" foreground="red"/>
+ <style name="def:string" foreground="bright-green"/>
+ <style name="def:type" foreground="bright-blue" bold="true"/>
+ <style name="def:underlined" underline="true"/>
+
+
+<!-- The following styles have not been tested -->
+
+ <style name="diff:added-line" foreground="green"/>
+ <style name="diff:changed-line" foreground="bright-blue"/>
+ <style name="diff:diff-file" foreground="yellow"/>
+ <style name="diff:location" foreground="warm-brown"/>
+ <style name="diff:removed-line" foreground="red"/>
+ <style name="diff:special-case" foreground="yellow"/>
+
+ <style name="latex:display-math" foreground="green"/>
+ <style name="latex:command" use-style="def:builtin"/>
+ <style name="latex:include" use-style="def:preprocessor"/>
+ <style name="latex:verbatim" use-style="def:string"/>
+
+ <style name="Others" foreground="creme"/>
+ <style name="Others 2" foreground="creme"/>
+ <style name="Others 3" foreground="creme"/>
+
+</style-scheme>
diff --git a/styles/fluffy.xml b/styles/fluffy.xml
new file mode 100644
index 0000000..3f18bf6
--- /dev/null
+++ b/styles/fluffy.xml
@@ -0,0 +1,73 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<style-scheme id="fluffy" name="Fluffy" version="1.0">
+ <author>Osmo Salomaa</author>
+ <description>A soft and downy color scheme</description>
+
+ <color name="almost-black" value="#111111"/>
+ <color name="blue" value="#0066ff"/>
+ <color name="cyan" value="#02b5d1"/>
+ <color name="dark-grey" value="#babdb6"/>
+ <color name="green" value="#00bb87"/>
+ <color name="highlight-blue" value="#abf5ff"/>
+ <color name="highlight-green" value="#c1ff9d"/>
+ <color name="highlight-yellow" value="#fce94f"/>
+ <color name="indigo" value="#b76fff"/>
+ <color name="light-grey" value="#eeeeec"/>
+ <color name="magenta" value="#ff6fff"/>
+ <color name="medium-grey" value="#d3d7cf"/>
+ <color name="red" value="#ff405a"/>
+ <color name="very-dark-grey" value="#888a85"/>
+ <color name="very-light-grey" value="#fafaf8"/>
+ <color name="white" value="#ffffff"/>
+
+ <style name="bracket-match" background="highlight-green" bold="false"/>
+ <style name="bracket-mismatch" background="red" bold="false"/>
+ <style name="current-line" background="very-light-grey"/>
+ <style name="line-numbers" background="light-grey" foreground="very-dark-grey"/>
+ <style name="right-margin" background="dark-grey" foreground="almost-black"/>
+ <style name="search-match" background="highlight-blue"/>
+ <style name="text" foreground="almost-black"/>
+ <style name="selection" background="highlight-yellow" foreground="almost-black"/>
+ <style name="selection-unfocused" background="light-grey" foreground="almost-black"/>
+
+ <style name="def:base-n-integer" foreground="magenta"/>
+ <style name="def:boolean" foreground="green"/>
+ <style name="def:builtin" foreground="indigo"/>
+ <style name="def:character" foreground="magenta"/>
+ <style name="def:comment" foreground="blue"/>
+ <style name="def:complex" foreground="magenta"/>
+ <style name="def:constant" foreground="magenta"/>
+ <style name="def:decimal" foreground="magenta"/>
+ <style name="def:doc-comment-element" foreground="blue"/>
+ <style name="def:error" foreground="red" bold="true"/>
+ <style name="def:floating-point" foreground="magenta"/>
+ <style name="def:function" foreground="indigo"/>
+ <style name="def:identifier" foreground="cyan"/>
+ <style name="def:keyword" foreground="red"/>
+ <style name="def:note" background="highlight-blue"/>
+ <style name="def:preprocessor" foreground="green"/>
+ <style name="def:shebang" foreground="blue"/>
+ <style name="def:special-char" foreground="magenta"/>
+ <style name="def:special-constant" foreground="green"/>
+ <style name="def:statement" foreground="red"/>
+ <style name="def:string" foreground="magenta"/>
+ <style name="def:type" foreground="green"/>
+ <style name="def:underlined" underline="true"/>
+
+ <style name="diff:added-line" foreground="green"/>
+ <style name="diff:changed-line" foreground="cyan"/>
+ <style name="diff:diff-file" foreground="magenta"/>
+ <style name="diff:location" foreground="indigo"/>
+ <style name="diff:removed-line" foreground="red"/>
+ <style name="diff:special-case" foreground="magenta"/>
+
+ <style name="latex:display-math" foreground="green"/>
+ <style name="latex:command" use-style="def:builtin"/>
+ <style name="latex:include" use-style="def:preprocessor"/>
+ <style name="latex:verbatim" use-style="def:string"/>
+
+ <style name="Others" foreground="red"/>
+ <style name="Others 2" foreground="green"/>
+ <style name="Others 3" foreground="blue"/>
+
+</style-scheme>
diff --git a/styles/greenscreen.xml b/styles/greenscreen.xml
new file mode 100644
index 0000000..629b841
--- /dev/null
+++ b/styles/greenscreen.xml
@@ -0,0 +1,97 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+
+ Version 2.0
+
+ Copyright (C) 2009 Holger Koch
+ Author: Holger Koch <http://www.zentralplan.de/kontakt>
+
+ This script is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License
+ as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This script is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+
+<style-scheme id="greenscreen" _name="GreenScreen" version="1.0">
+
+ <author>Holger Koch</author>
+ <_description>Good for XML/PHP at night</_description>
+
+ <color name="White" value="#FFFFFF"/>
+ <color name="BrightGrey" value="#DDDDDD"/> <!-- 221/221/221 -->
+ <color name="Grey" value="#BBBBBB"/> <!-- 187/187/187 -->
+ <color name="Black" value="#000000"/> <!-- 0/0/0 -->
+ <color name="PetrolGrey" value="#669988"/>
+ <color name="GreenBlack" value="#223322"/> <!-- 34/51/34 -->
+ <color name="GreenGrey" value="#334433"/> <!-- 51/68/51 -->
+ <color name="Green" value="#99EE00"/> <!-- 153/238/0 -->
+ <color name="GreenYellow" value="#CCFF88"/>
+ <color name="Yellow" value="#FFFF00"/>
+ <color name="DarkYellow" value="#EEEE66"/> <!-- 238/238/102 -->
+ <color name="Orange" value="#FFCC00"/> <!-- 255/204/0 -->
+ <color name="Blue" value="#99CCFF"/> <!-- 153/204/255 -->
+ <color name="Red" value="#DD2200"/> <!-- 221/34/0 -->
+ <color name="LightRed" value="#EE5533"/> <!-- 238/85/51 -->
+ <color name="BrightRed" value="#EE7766"/> <!-- 238/119/102 -->
+ <color name="Purple" value="#EE99FF"/> <!-- 238/153/255 -->
+ <color name="DeepPurple" value="#DD66EE"/>
+ <color name="unknown" value="#FF88FF"/>
+
+ <!-- General -->
+ <style name="text" foreground="White" background="GreenBlack"/> <!-- main font and canvas -->
+ <style name="selection" foreground="Black" background="Orange"/> <!-- selected text -->
+ <style name="cursor" foreground="White"/> <!-- cursor -->
+ <style name="current-line" background="Black"/> <!-- current line background -->
+ <style name="line-numbers" foreground="Black" background="Grey"/> <!-- line numbers -->
+
+ <!-- Matching -->
+ <style name="bracket-match" foreground="White" background="Red" bold="true"/> <!-- matching brackets -->
+ <style name="search-match" foreground="Black" background="Blue"/> <!-- search results -->
+
+ <!-- Comments -->
+ <style name="def:comment" foreground="BrightGrey" background="GreenGrey" italic="true"/> <!-- comments -->
+ <style name="def:note" foreground="LightRed" bold="true" italic="false"/> <!-- TODO -->
+ <style name="def:preprocessor" foreground="Purple"/> <!-- <!DOCTYPE &nbsp; -->
+ <style name="def:error" foreground="Yellow" background="Red" bold="true"/> <!-- error -->
+ <style name="def:underlined" underline="false"/>
+
+ <!-- Values -->
+ <style name="def:decimal" foreground="Purple" bold="true"/> <!-- integers -->
+ <style name="def:floating-point" foreground="Purple" bold="true"/> <!-- floats -->
+ <style name="def:boolean" foreground="Purple" bold="true"/> <!-- TRUE; FALSE -->
+ <style name="def:base-n-integer" foreground="Blue" bold="true"/> <!-- chmod 0644 -->
+ <style name="def:string" foreground="Green"/> <!-- "strings" -->
+ <style name="def:special-char" foreground="BrightRed" bold="true"/> <!-- \r\n -->
+
+ <!-- Identifiers -->
+ <style name="def:identifier" foreground="Blue"/> <!-- $var[] -->
+ <style name="def:keyword" foreground="Orange" bold="true"/> <!-- echo; while; etc. -->
+ <style name="def:type" foreground="Orange"/> <!-- array -->
+ <style name="def:statement" foreground="DarkYellow"/> <!-- !=&&(),.;+-*/<> -->
+ <style name="def:function" foreground="Blue"/> <!-- CSS :hover url() -->
+
+ <!-- Alien -->
+ <style name="def:shebang" foreground="BrightRed" bold="true"/> <!-- shebang -->
+ <style name="def:builtin" foreground="Blue" italic="true"/> <!-- pearl commands -->
+ <style name="def:constant" foreground="BrightRed" bold="true" italic="true"/> <!-- certain integers -->
+ <style name="def:special-constant" foreground="Blue" italic="true"/> <!-- gtkrc bg[NORMAL] -->
+
+ <!-- Unknown -->
+ <style name="bracket-mismatch" background="unknown" italic="true"/>
+ <style name="def:doc-comment-element" background="unknown" italic="true"/>
+ <style name="def:complex" background="unknown" italic="true"/>
+ <style name="def:character" background="unknown" italic="true"/>
+
+</style-scheme>
diff --git a/styles/inkpot.xml b/styles/inkpot.xml
new file mode 100644
index 0000000..748a317
--- /dev/null
+++ b/styles/inkpot.xml
@@ -0,0 +1,118 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Copyright (C) 2011 Campbell Barton
+ Author: Campbell Barton <ideasman42@gmail.com>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+
+<style-scheme id="inkpot" _name="InkPot" version="1.0">
+ <author>Campbell Barton (ideasman42)</author>
+ <_description>Color scheme based on vim's inkpot scheme</_description>
+
+ <!-- original colors from: https://raw.github.com/ciaranm/inkpot/master/colors/inkpot.vim -->
+
+ <!-- InkPot Palette -->
+ <color name="White" value="#ffffff"/>
+ <color name="PurpleDeep" value="#1e1e27"/>
+ <color name="PurpleMid" value="#4e4e8f"/>
+ <color name="PurpleLight" value="#8b8bff"/>
+ <color name="GreyDark" value="#2e2e2e"/>
+ <color name="GreyDark2" value="#303030"/>
+ <color name="GreyLight" value="#cfbfad"/>
+ <color name="BrownMid" value="#404040"/>
+ <color name="OrangeBright" value="#cd8b00"/>
+ <color name="OrangeLight" value="#f0ad6d"/>
+ <color name="OrangePale" value="#ffcd8b"/>
+ <color name="OrangePaleMid" value="#cd8b60"/>
+ <color name="PinkLight" value="#ff8bff"/>
+ <color name="PinkMid" value="#c080d0"/>
+ <color name="GreenDeep" value="#409090"/>
+ <color name="BlueLight" value="#808bed"/>
+ <color name="BluePale" value="#8b8bcd"/>
+ <color name="RedPale" value="#ce4e4e"/>
+ <color name="RedDeep" value="#8b0000"/>
+
+ <!-- InkPot Additions for GEdit -->
+ <!-- 5 shades lighter then PurpleDeep for current line -->
+ <color name="PurpleDeepTint" value="#272733"/>
+
+
+ <!-- Global Settings -->
+ <style name="text" foreground="GreyLight" background="PurpleDeep"/>
+ <style name="selection" foreground="#white" background="PurpleMid"/>
+ <style name="cursor" foreground="PurpleLight"/>
+ <style name="current-line" background="PurpleDeepTint"/>
+ <style name="line-numbers" foreground="BluePale" background="GreyDark"/>
+
+ <!-- Bracket Matching -->
+ <style name="bracket-match" foreground="GreyLight" background="PurpleMid"/>
+ <!-- not included in original inkpot -->
+ <style name="bracket-mismatch" foreground="GreyLight" background="RedPale"/>
+
+ <!-- Right Margin -->
+ <style name="right-margin" background="RedDeep"/>
+
+ <!-- Search Matching -->
+ <style name="search-match" foreground="GreyDark2" background="OrangePaleMid" bold="true"/>
+
+ <!-- Comments -->
+ <style name="def:comment" foreground="OrangeBright"/>
+ <!-- not bold in original inkpot -->
+ <style name="def:shebang" foreground="OrangeBright" bold="true"/>
+ <!-- not italic in original inkpot -->
+ <style name="def:doc-comment-element" italic="true"/>
+
+ <!-- Constants -->
+ <style name="def:constant" foreground="OrangeLight"/>
+ <style name="def:base-n-integer" foreground="OrangeLight"/>
+ <style name="def:complex" foreground="OrangeLight"/>
+ <style name="def:decimal" foreground="OrangeLight"/>
+
+ <style name="def:string" foreground="OrangePale" background="BrownMid"/>
+ <style name="def:special-char" foreground="PinkMid"/>
+ <style name="def:special-constant" foreground=""/>
+ <style name="def:floating-point" foreground="OrangeLight"/>
+ <style name="def:function" foreground="bright-blue"/>
+
+ <!-- Identifiers -->
+ <style name="def:identifier" foreground="PinkLight"/>
+
+ <!-- Statements -->
+ <style name="def:statement" foreground="BlueLight" bold="false"/>
+
+ <!-- Types -->
+ <style name="def:type" foreground="PinkLight" bold="false"/>
+
+ <!-- Others -->
+ <style name="def:keyword" foreground="BlueLight" bold="false"/>
+ <style name="def:preprocessor" foreground="GreenDeep"/>
+ <style name="def:error" foreground="White" background="RedPale" bold="false"/>
+ <style name="def:underlined" italic="true" underline="true"/> <!-- TODO -->
+ <style name="latex:display-math" foreground="#slate blue" bold="false"/> <!-- TODO -->
+
+ <!-- Language specific -->
+ <style name="diff:added-line" foreground="PinkLight"/>
+ <style name="diff:removed-line" foreground="OrangeBright"/> <!-- in gvim added and removed are the same, but this is not too useful, use commented color for removed lines -->
+ <style name="diff:changed-line" foreground="#00FFFF"/>
+ <style name="diff:diff-file" foreground="GreenDeep" bold="true"/>
+ <style name="diff:location" foreground="BlueLight"/>
+ <style name="diff:special-case" foreground="#FFFF00" bold="true"/>
+
+</style-scheme>
+
diff --git a/styles/matrix.xml b/styles/matrix.xml
new file mode 100644
index 0000000..ec48f0b
--- /dev/null
+++ b/styles/matrix.xml
@@ -0,0 +1,91 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+GTK Source View Matrix Color Scheme
+by Ayberk Özgür a.k.a Equilibrium - ayberkozgur.blogspot.com - equilibriumtr@gmail.com
+-->
+<style-scheme id="matrix" _name="Matrix" version="1.0">
+ <author>Equilibrium</author>
+ <_description>Matrix color scheme</_description>
+ <!-- The scheme tries to look like the Matrix consoles! -->
+
+ <!-- Palette -->
+ <color name="black" value="#000000"/>
+ <color name="vdarkgrey" value="#111111"/>
+ <color name="darkgrey" value="#222222"/>
+ <color name="grey" value="#444444"/>
+ <color name="ghost" value="#406340"/>
+ <color name="brightgreen" value="#4EED4E"/>
+ <color name="green" value="#1BE600"/>
+ <color name="darkgreen" value="#169400"/>
+ <color name="bordeaux" value="#A52A2A"/>
+ <color name="red" value="#FF0000"/>
+ <color name="white" value="#FFFFFF"/>
+ <color name="blue" value="#110080"/>
+ <color name="purple" value="#510E57"/>
+ <color name="cyan" value="#008C75"/>
+
+ <!-- Global Settings -->
+ <style name="text" foreground="green" background="black"/>
+ <style name="selection" foreground="green" background="grey"/>
+ <style name="cursor" foreground="white" background="white"/>
+ <style name="current-line" foreground="darkgrey" background="vdarkgrey"/>
+ <style name="line-numbers" foreground="white" background="darkgrey"/>
+
+ <!-- Bracket Matching -->
+ <style name="bracket-match" foreground="white" background="grey" bold="true"/>
+ <style name="bracket-mismatch" foreground="white" background="red" bold="true"/>
+
+ <!-- Search Matching -->
+ <style name="search-match" foreground="white" background="ghost"/>
+
+ <!-- Comments -->
+ <style name="def:comment" foreground="ghost"/>
+ <style name="def:shebang" foreground="blue" bold="true"/>
+ <style name="def:doc-comment-element" italic="true"/>
+
+ <!-- Constants -->
+ <style name="def:constant" foreground="bordeaux"/>
+ <style name="def:special-char" foreground="brightgreen"/>
+
+ <!-- Identifiers -->
+ <style name="def:identifier" foreground="brightgreen" bold="true"/>
+
+ <!-- Statements -->
+ <style name="def:statement" foreground="brightgreen" bold="true"/>
+
+ <!-- Types -->
+ <style name="def:type" foreground="cyan" bold="true"/>
+
+ <!-- Others -->
+ <style name="def:preprocessor" foreground="purple"/>
+ <style name="def:error" background="red" bold="true"/>
+ <style name="def:note" foreground="blue" background="yellow" bold="true"/>
+ <style name="def:underlined" italic="true" underline="true"/>
+
+ <!-- Language specific styles -->
+ <style name="diff:added-line" foreground="#008B8B"/>
+ <style name="diff:removed-line" foreground="#6A5ACD"/>
+ <style name="diff:changed-line" use-style="def:preprocessor"/>
+ <style name="diff:special-case" use-style="def:constant"/>
+ <style name="diff:location" use-style="def:statement"/>
+ <style name="diff:diff-file" use-style="def:type"/>
+
+ <style name="xml:tags" foreground="brightgreen"/>
+ <style name="xml:attribute-name" foreground="green"/>
+ <style name="xml:namespace" foreground="green" bold="true"/>
+
+ <style name="js:object" foreground="#2E8B57" bold="true"/>
+ <style name="js:constructors" foreground="#008B8B"/>
+
+ <style name="latex:display-math" foreground="#6A5ACD"/>
+ <style name="latex:command" foreground="#2E8B57" bold="true"/>
+ <style name="latex:include" use-style="def:preprocessor"/>
+
+ <style name="sh:variable" foreground="#6A5ACD"/>
+
+ <!-- legacy styles for old lang files -->
+ <style name="Others" foreground="#2E8B57" bold="true"/>
+ <style name="Others 2" foreground="#008B8B"/>
+ <style name="Others 3" foreground="#6A5ACD"/>
+
+</style-scheme>
diff --git a/styles/turbo.xml b/styles/turbo.xml
new file mode 100644
index 0000000..04a871e
--- /dev/null
+++ b/styles/turbo.xml
@@ -0,0 +1,62 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+ Copyright (C) 2007 GtkSourceView team
+ Author: Paolo Borelli <pborelli@gnome.org>
+
+ This library is free software; you can redistribute it and/or
+ modify it under the terms of the GNU Library General Public
+ License as published by the Free Software Foundation; either
+ version 2 of the License, or (at your option) any later version.
+
+ This library is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ Library General Public License for more details.
+
+ You should have received a copy of the GNU Library General Public
+ License along with this library; if not, write to the
+ Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+ Boston, MA 02111-1307, USA.
+
+-->
+
+<style-scheme id="turbo" _name="Turbo" version="1.0">
+
+ <author>Paolo Borelli</author>
+ <_description>Straight from the 80's</_description>
+
+ <!-- Global Settings -->
+ <style name="text" foreground="#yellow" background="#darkblue"/>
+ <style name="selection" foreground="#black" background="#darkcyan"/>
+ <style name="current-line" background="#blue"/>
+ <style name="line-numbers" foreground="#black" background="#darkgray"/>
+
+ <!-- Bracket Matching -->
+ <style name="bracket-match" foreground="#white" background="#gray" bold="true"/>
+ <style name="bracket-mismatch" foreground="#white" background="#red" bold="true"/>
+
+ <!-- Comments -->
+ <style name="def:comment" foreground="#gray"/>
+ <style name="def:shebang" foreground="#gray" bold="true"/>
+ <style name="def:doc-comment-element" italic="true"/>
+
+ <!-- Constants -->
+ <style name="def:constant" foreground="#magenta"/>
+
+ <!-- Identifiers -->
+ <style name="def:identifier" foreground="#white" bold="true"/>
+
+ <!-- Statements -->
+ <style name="def:statement" foreground="#white" bold="true"/>
+
+ <!-- Types -->
+ <style name="def:type" foreground="#white" bold="true"/>
+
+ <!-- Others -->
+ <style name="def:preprocessor" foreground="#green"/>
+ <style name="def:error" foreground="#white" background="#red"/>
+ <style name="def:note" background="#yellow" foreground="#black" bold="true"/>
+ <style name="def:underlined" italic="true" underline="true"/>
+
+</style-scheme>
diff --git a/styles/vibrant.xml b/styles/vibrant.xml
new file mode 100755
index 0000000..cd32278
--- /dev/null
+++ b/styles/vibrant.xml
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<style-scheme id="vibrant" _name="Vibrant" version="1.0">
+ <author>Lateef Alabi-Oki</author>
+ <_description>Vibrant colors for your viewing pleasure</_description>
+
+<!-- ubuntu palette -->
+
+ <color name="orange_highlight" value="#eec73e"/>
+ <color name="orange" value="#f0a513"/>
+ <color name="orange_base" value="#fb8b00"/>
+ <color name="orange_shadow" value="#f44800"/>
+
+ <color name="environmental_blue_highlight" value="#aaccee"/>
+ <color name="environmental_blue_medium" value="#6699cc"/>
+ <color name="environmental_blue_base" value="#336699"/>
+ <color name="environmental_blue_shadow" value="#003366"/>
+
+ <color name="accent_yellow_highlight" value="#fdff99"/>
+ <color name="yellow" value="#ffff00"/>
+ <color name="accent_yellow_base" value="#fdca01"/>
+ <color name="accent_yellow_shadow" value="#986601"/>
+
+ <color name="accent_blue_highlight" value="#b3defd"/>
+ <color name="accent_blue" value="#0197fd"/>
+ <color name="accent_blue_base" value="#0169c9"/>
+ <color name="accent_blue_shadow" value="#013397"/>
+
+ <color name="accent_orange" value="#f44800"/>
+ <color name="pure_red" value="#ff0000"/>
+ <color name="accent_red" value="#fd3301"/>
+ <color name="accent_red_base" value="#d40000"/>
+ <color name="accent_deep_red" value="#980101"/>
+
+ <color name="accent_green_highlight" value="#ccff99"/>
+ <color name="accent_green" value="#98fc66"/>
+ <color name="accent_green_base" value="#339900"/>
+ <color name="accent_green_shadow" value="#015a01"/>
+
+ <color name="human_highlight" value="#fdd99b"/>
+ <color name="human" value="#d9bb7a"/>
+ <color name="human_base" value="#816647"/>
+ <color name="environmental_shadow" value="#565248"/>
+
+ <color name="ubuntu_toner" value="#002b3d"/>
+ <color name="accent_magenta_highlight" value="#ff9bff"/>
+ <color name="accent_magenta" value="#ff00ff"/>
+ <color name="accent_dark_violet" value="#6600cc"/>
+
+ <color name="white" value="#ffffff"/>
+ <color name="black" value="#000000"/>
+ <color name="text_fg" value="#4d4d4d"/>
+ <color name="number_color" value="#0000FF"/>
+ <!--color name="comment_color" value="#7F7F7F"/-->
+ <color name="comment_color" value="#ff0000"/>
+
+<!-- Global Settings -->
+
+ <style name="text" foreground="text_fg" background="white"/>
+ <style name="cursor" foreground="accent_deep_red" bold="true"/> <!-- Does not work -->
+ <style name="current-line" background="accent_yellow_highlight"/>
+ <style name="line-numbers" foreground="text_fg" background="human_highlight"/>
+
+<!-- Bracket Matching -->
+
+ <style name="bracket-match" foreground="environmental_blue_medium" background="environmental_blue_highlight"/>
+ <style name="bracket-mismatch" background="dark_maroon" bold="true"/>
+ <style name="search-match" foreground="yellow"/>
+
+<!-- Syntax color for styles
+
+Languages: plain, python, ruby, xml, html, ada, asp, awk, boo, c,
+changelog, chdr, cmake, cpp, csharp, css, d, def, desktop, diff,
+docbook, dosbatch, dot, dpatch, dtd, eiffel, erlang, forth, fortran,
+gap, gtkrc, haddock, haskell, haskell-literate, idl, ini, java,
+javascript, latex, libtool, lua, m4, makefile, msil, nermele, nsis,
+objc, ocaml, ocl, octave, pascal, perl, php, pkgconfig, po, prolog,
+R, rpmspec, scheme, sh, sql, t2t, tcl, texinfo, vala, vbnet, verilog,
+vhdl, xslt, yacc
+
+-->
+
+ <style name="def:string" foreground="accent_blue_base"/>
+ <style name="def:character" foreground="accent_blue_base"/>
+ <style name="def:special-char" foreground="accent_blue" bold="true"/>
+ <style name="def:number" foreground="accent_yellow_shadow"/>
+ <style name="def:decimal" foreground="accent_yellow_shadow"/>
+ <style name="def:floating-point" foreground="accent_dark_violet"/>
+ <style name="def:complex" foreground="environmental_blue_base" bold="true"/>
+ <style name="def:base-n-integer" foreground="black" bold="true"/>
+ <style name="def:boolean" foreground="accent_orange" bold="true"/>
+
+ <style name="def:identifier" foreground="accent_green_base" bold="true"/>
+ <style name="def:type" foreground="ubuntu_toner" bold="true"/>
+ <style name="def:operator" foreground="ubuntu_toner" bold="true"/>
+ <style name="def:keyword" foreground="accent_deep_red" bold="true"/>
+ <style name="def:builtin" foreground="human_base" bold="true"/>
+ <style name="def:function" foreground="human_base" bold="true"/>
+ <style name="def:preprocessor" foreground="accent_dark_violet" bold="true"/>
+ <style name="def:statement" foreground="accent_red_base" bold="true" italic="true"/>
+
+ <style name="def:constant" foreground="black" bold="true"/>
+ <style name="def:special-constant" foreground="accent_orange" bold="true"/>
+ <style name="def:note" foreground="accent_magenta" bold="true"/>
+ <style name="def:error" foreground="accent_red_base" background="black" bold="true"/>
+
+
+<!-- Comments -->
+
+ <style name="def:comment" foreground="accent_red" italic="true"/>
+ <style name="def:shebang" foreground="accent_red" italic="true"/>
+ <style name="def:doc-comment-element" foreground="accent_red" italic="true"/>
+
+<!-- Python Styles -->
+
+ <style name="string-conversion" foreground="accent_blue" italic="true"/>
+
+<!-- XML/HTML Styles Override -->
+
+ <style name="xml:attribute-name" foreground="accent_deep_red" bold="true"/>
+
+</style-scheme>