1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
This file is part of Setzer and licensed under GPL version 3 or later (see below).
Copyright (C) 2018 Robert Griesel
It is based on the Tango Scheme in GtkSourceView (LGPL license)
and the Gnome Builder Scheme (license: GPL version 3 or later):
Copyright (C) 2006-2007 GtkSourceView team
Author: Michael Monreal <michael.monreal@gmail.com>
and
Copyright (C) 2014 Christian Hergert <christian@hergert.me>
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 3 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, see <http://www.gnu.org/licenses/>
-->
<style-scheme id="default-dark" _name="default-dark" version="1.0">
<author>Robert Griesel</author>
<_description>Color scheme using Tango color palette</_description>
<color name="white" value="#ffffff"/>
<color name="chameleon2" value="#73d216"/>
<color name="chameleon3" value="#4e9a06"/>
<color name="orange1" value="#fcaf3e"/>
<color name="skyblue1" value="#729fcf"/>
<color name="plum1" value="#ad7fa8"/>
<color name="scarletred3" value="#a40000"/>
<color name="aluminium1" value="#eeeeec"/>
<color name="aluminium3" value="#babdb6"/>
<color name="aluminium4" value="#888a85"/>
<color name="aluminium6" value="#2e3436"/>
<color name="dark4" value="#3e3e3e"/>
<!-- Global Settings -->
<style name="current-line" background="dark4"/>
<style name="draw-spaces" foreground="aluminium3"/>
<style name="background-pattern" background="#f3f3f3"/>
<style name="text" foreground="white" background="#1e1e1e"/>
<!-- Bracket Matching -->
<style name="bracket-match" foreground="white" background="aluminium4" bold="true"/>
<style name="bracket-mismatch" foreground="aluminium1" background="scarletred3"/>
<!-- Right Margin -->
<style name="right-margin" foreground="aluminium6" background="aluminium6"/>
<!-- Search Matching -->
<style name="search-match" background="chameleon3" foreground="aluminium1"/>
<!-- Comments -->
<style name="def:comment" foreground="aluminium4"/>
<style name="def:shebang" foreground="aluminium4" bold="true"/>
<style name="def:doc-comment-element" italic="true"/>
<!-- Constants -->
<style name="def:constant" foreground="white"/>
<style name="def:special-char" foreground="skyblue1" bold="true"/>
<!-- Identifiers -->
<style name="def:identifier" foreground="skyblue1"/>
<!-- Statements -->
<style name="def:statement" foreground="orange1" bold="true"/>
<!-- Types -->
<style name="def:type" foreground="orange1" bold="true"/>
<!-- Others -->
<style name="def:preprocessor" foreground="orange1"/>
<style name="def:error" background="chameleon3" bold="true"/>
<style name="def:warning" background="plum1"/>
<style name="def:note" background="orange1" bold="true"/>
<style name="def:underlined" italic="true" underline="single"/>
<!-- Language specific -->
<style name="latex:command" foreground="skyblue1" bold="true"/>
<style name="latex:usepackage" foreground="skyblue1" bold="true"/>
<style name="latex:pkg-name" use-style="text"/>
<style name="latex:special-char" foreground="skyblue1" bold="true"/>
<style name="latex:display-math" foreground="chameleon2"/>
<style name="latex:math-boundary" foreground="chameleon2" bold="true"/>
<style name="latex:math-super-sub-script" foreground="chameleon2" bold="true"/>
<style name="latex:math-command" foreground="chameleon2" bold="true"/>
<style name="latex:math-special-char" foreground="chameleon2"/>
<style name="latex:begin-end-command" foreground="skyblue1" bold="true"/>
<style name="latex:env-name" foreground="orange1" bold="false"/>
<style name="latex:include" foreground="skyblue1" bold="true"/>
<style name="latex:included-file" foreground="orange1" bold="false"/>
<style name="latex:section-command" foreground="skyblue1" bold="true"/>
<style name="latex:section" foreground="orange1" bold="false"/>
<style name="latex:verbatim" foreground="chameleon2" bold="false"/>
</style-scheme>
|