Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Declaro color scheme #48

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
119 changes: 119 additions & 0 deletions colorschemes/declaro.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
# Copyright 2016 Gerhard Großmann <gerhard.grossmann(at)yahoo(dot)de>
#
# 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. For more details
# see the GNU General Public License at <http://www.gnu.org/licenses/>.
#
# 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.

[theme_info]
name=Declaro
description=A light color scheme with twelve clear colors.
version=1.0
author=Gerhard Großmann (@charakterziffer)
url=

[named_colors]
black=#222
darkgrey=#666
grey=#ddd
lightgrey=#f4f4f4
white=#fff

lightyellow=#fffccc
red=#c33
green=#392
brown=#940
blue=#179
purple=#b53366
violett=#759

[named_styles]
default=black;white;false;false
error=red

# Editor Styles --------------------------------------------------------
selection=;grey;false;false
current_line=;lightgrey;true;false
brace_good=white;green;true;false
brace_bad=white;red;true;false
margin_line_number=darkgrey;lightgrey;false;true
margin_folding=darkgrey
fold_symbol_highlight=white
indent_guide=grey
caret=darkgrey
marker_line=;lightyellow
marker_search=;purple;true;false
marker_mark=;lightyellow
call_tips=grey;;false;false
white_space=darkgrey;;true;false

# Programming languages ------------------------------------------------
comment=darkgrey;;false;true
comment_doc=darkgrey
comment_line=darkgrey
comment_line_doc=darkgrey
comment_doc_keyword=darkgrey;;true;false
comment_doc_keyword_error=darkgrey;;true;false

number=green
number_1=brown
number_2=brown

type=violett;;true
class=violett;;true
function=blue;;false;false
parameter=darkgrey

keyword=brown;;true;false
keyword_1=purple;;false;false
keyword_2=brown;;false;false
keyword_3=green;;false;false
keyword_4=brown;;false;true

identifier=green;;false;false
identifier_1=green;;false;false
identifier_2=green;;false;false
identifier_3=blue;;true;false
identifier_4=purple;;false;false

string=brown
string_1=green
string_2=green
string_3=blue;;true;false
string_4=green;;false;true
string_eol=purple;;false;true

character=string_1
backtick=violett
here_doc=violett
scalar=violett
label=darkgrey;;true;false
preprocessor=blue;;true;false
regex=number_1
operator=darkgrey;;false;false
decorator=blue;;false;false
other=red

# Markup-type languages ------------------------------------------------
tag=violett;;true;false
tag_unknown=red;;true;false
tag_end=violett;;false;false
attribute=brown;;false;false
attribute_unknown=green;;false;false
value=blue
entity=violett

# Diff -----------------------------------------------------------------
line_added=green
line_removed=red
line_changed=blue
Loading