Auswertung Experiment
Database tüddelei DBHanlder läuft gut für DIESE Datanbank struktur... App begonnen aber weit entfernt von gutem Stand
46
Libs/schemer/schemes/.gitattributes
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
# Auto detect text files and perform LF normalization
|
||||
* text=auto
|
||||
|
||||
#
|
||||
# The above will handle all files NOT found below
|
||||
#
|
||||
|
||||
##---------------------------------------------------
|
||||
# Common .gitattributes
|
||||
##---------------------------------------------------
|
||||
|
||||
# Documents
|
||||
# ============
|
||||
*.txt text
|
||||
*.md text
|
||||
|
||||
# Graphics
|
||||
# ============
|
||||
*.png binary
|
||||
*.jpg binary
|
||||
*.jpeg binary
|
||||
*.gif binary
|
||||
*.tif binary
|
||||
*.tiff binary
|
||||
*.ico binary
|
||||
*.svg text
|
||||
*.eps binary
|
||||
|
||||
|
||||
##---------------------------------------------------
|
||||
# Basic .gitattributes for a MATLAB repo
|
||||
##---------------------------------------------------
|
||||
|
||||
# Source files
|
||||
# ============
|
||||
*.m text
|
||||
*.prf text
|
||||
|
||||
# Binary files
|
||||
# ============
|
||||
*.p binary
|
||||
*.mex* binary
|
||||
*.fig binary
|
||||
*.mat binary
|
||||
*.mdl binary
|
||||
*.slx binary
|
||||
5
Libs/schemer/schemes/.gitignore
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
# Editor autosave files
|
||||
*~
|
||||
*.asv
|
||||
# Compiled MEX binaries (all platforms)
|
||||
*.mex*
|
||||
153
Libs/schemer/schemes/CONTRIBUTING.md
Normal file
@@ -0,0 +1,153 @@
|
||||
Contributing a colour scheme
|
||||
============================
|
||||
|
||||
Glad to hear you've made a colour scheme to use with [MATLAB Schemer]!
|
||||
Thanks for sharing this with us.
|
||||
|
||||
Please only add one colour scheme per pull request.
|
||||
If you have multiple colorschemes to add, make a pull request for each of them.
|
||||
|
||||
The Schemer README includes some
|
||||
[advice on creating a colour scheme][scheme creation advice], which you might
|
||||
find useful.
|
||||
|
||||
It is preferable to include a screenshot demonstrating an example of your new MATLAB theme.
|
||||
To make your screenshot:
|
||||
|
||||
- Load your color scheme `schemer_import('yourscheme.prf', 1)`
|
||||
- Exit MATLAB `exit();`
|
||||
- Reopen MATLAB
|
||||
- Open the [matlab-schemer/develop/sample.m] file and take a screenshot with your favourite screenshot program.
|
||||
- If not done at capture time, crop the screenshot down to the right size with your [favourite image editor].
|
||||
- Make sure the screenshot is saved in [matlab-schemes/screenshots] as `yourscheme.png`.
|
||||
|
||||
If you are on Linux, you can follow the method below to create your screenshot,
|
||||
which is mostly automated and produces the same output every time.
|
||||
|
||||
|
||||
Reproducible screenshot workflow for Linux
|
||||
------------------------------------------
|
||||
|
||||
Here is minimal-interaction workflow for Linux users, which will create the
|
||||
same screenshots every time.
|
||||
This has been tested on Ubuntu 15.10 with MATLAB 2016a, but should work on
|
||||
any *nix OS and any MATLAB version since R2012b (which introduced the
|
||||
toolstrip UI).
|
||||
|
||||
The code blocks must be run from the system shell, not at the MATLAB command
|
||||
prompt.
|
||||
|
||||
1. **Setup**
|
||||
|
||||
Define these variables appropriately.
|
||||
|
||||
```bash
|
||||
# Set this variable appropriately, without extension
|
||||
SCHEME_NAME='yourschemename'
|
||||
# Set the path to your copy of MATLAB Schemer
|
||||
PATH_TO_SCHEMER='../matlab-schemer/'
|
||||
```
|
||||
|
||||
2. **Load scheme**
|
||||
|
||||
Run this code block to load the scheme, restart MATLAB, and edit
|
||||
`sample.m`.
|
||||
|
||||
```bash
|
||||
# Remove extension, if present
|
||||
SCHEME_NAME=${SCHEME_NAME%.prf}
|
||||
echo "Making screenshot for scheme $SCHEME_NAME";
|
||||
# Load the template and restart matlab
|
||||
matlab -r "addpath(genpath('$PATH_TO_SCHEMER')); schemer_import('$SCHEME_NAME.prf',1); exit;";
|
||||
# Edit the sample.m file
|
||||
matlab -r "edit(fullfile('$PATH_TO_SCHEMER','develop','sample.m'))" &
|
||||
# What next
|
||||
echo "Now undock sample.m, and highlight middle scaleFactor";
|
||||
```
|
||||
|
||||
3. **Undock sample.m editor**
|
||||
|
||||
Either
|
||||
- in MATLAB GUI, undock `sample.m` only
|
||||
|
||||
Or
|
||||
- in MATLAB GUI, undock the Editor panel
|
||||
- move tabs to bottom, if more than one file is being editted
|
||||
|
||||
Also, make sure the MATLAB toolstrip is visible on the undocked panel.
|
||||
If it is minimised, right-click on the toolstrip and restore it.
|
||||
|
||||
4. **Highlight**
|
||||
|
||||
Highlight the middle instance of `scaleFactor` (on line 18).
|
||||
|
||||
5. **Resize window and take screenshot**
|
||||
|
||||
Run this code block to resize the editor window and take a screenshot,
|
||||
cropped with ImageMagick.
|
||||
|
||||
The crop location is correct for MATLAB 2016a.
|
||||
|
||||
```bash
|
||||
# Check for a window for the develop/sample.m file
|
||||
if wmctrl -l | grep -q develop/sample.m
|
||||
then
|
||||
WINDOW_NAME='develop/sample.m';
|
||||
else
|
||||
# If it's not there, use the Editor window
|
||||
WINDOW_NAME='Editor';
|
||||
fi
|
||||
if wmctrl -l | grep -qv "$WINDOW_NAME"
|
||||
then
|
||||
echo "Window $WINDOW_NAME is absent";
|
||||
else
|
||||
# Resize the window
|
||||
wmctrl -r "$WINDOW_NAME" -e 0,100,100,700,650;
|
||||
# Try getting screenshot with Imagemagick, and cropping it down to the
|
||||
# just the relevant section
|
||||
wmctrl -a "$WINDOW_NAME"; sleep 0.1; import -window root -crop 700x379+100+249 +repage "${SCHEME_NAME}.png";
|
||||
# Inspect the result
|
||||
xdg-open "${SCHEME_NAME}.png";
|
||||
# Is it cropped correctly?
|
||||
echo "How does it look? If no good, try one of the other options to manually crop";
|
||||
fi
|
||||
```
|
||||
|
||||
6. If screenshot cropped incorrectly, **manually crop screenshot**
|
||||
|
||||
If the ImageMagick crop is not aligned correctly,
|
||||
- Either use gnome-screenshot for the whole window, and then crop in GIMP
|
||||
```bash
|
||||
wmctrl -a "$WINDOW_NAME" \
|
||||
&& gnome-screenshot -w -f "$SCHEME_NAME.png" \
|
||||
&& gimp "$SCHEME_NAME.png";
|
||||
```
|
||||
|
||||
- Or use gnome-screenshot to select the area to use (which is likely to
|
||||
be less precise).
|
||||
```bash
|
||||
wmctrl -a "$WINDOW_NAME" && gnome-screenshot -a -f "$SCHEME_NAME.png";
|
||||
```
|
||||
|
||||
7. When you are happy, **move** the final copy into the screenshots folder
|
||||
|
||||
```bash
|
||||
mv "$SCHEME_NAME.png" screenshots/"$SCHEME_NAME.png";
|
||||
```
|
||||
|
||||
|
||||
Incorporating into MATLAB Schemer
|
||||
---------------------------------
|
||||
|
||||
Once you've added the new scheme to this repository, it will be merged into
|
||||
[MATLAB Schemer] using [git-subtree].
|
||||
If you are merging it into Schemer yourself, please consult this
|
||||
[step-by-step guide](https://github.com/scottclowe/matlab-schemer/blob/master/CONTRIBUTING.md#adding-a-new-colour-scheme).
|
||||
|
||||
|
||||
[MATLAB Schemer]: https://github.com/scottclowe/matlab-schemer
|
||||
[matlab-schemes/screenshots]: https://github.com/scottclowe/matlab-schemes/tree/master/screenshots
|
||||
[matlab-schemer/develop/sample.m]: https://github.com/scottclowe/matlab-schemer/blob/master/develop/sample.m
|
||||
[scheme creation advice]: https://github.com/scottclowe/matlab-schemer#creating-a-color-scheme-for-others-to-use
|
||||
[git-subtree]: https://github.com/git/git/blob/master/contrib/subtree/git-subtree.txt
|
||||
[favourite image editor]: https://www.gimp.org
|
||||
23
Libs/schemer/schemes/LICENSE
Normal file
@@ -0,0 +1,23 @@
|
||||
Copyright (c) 2015, Scott Lowe
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are
|
||||
met:
|
||||
* Redistributions of source code must retain the above copyright
|
||||
notice, this list of conditions and the following disclaimer.
|
||||
* Redistributions in binary form must reproduce the above copyright
|
||||
notice, this list of conditions and the following disclaimer in
|
||||
the documentation and/or other materials provided with the distribution
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
||||
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
||||
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
||||
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
||||
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
||||
84
Libs/schemer/schemes/README.md
Normal file
@@ -0,0 +1,84 @@
|
||||
MATLAB Schemes
|
||||
==============
|
||||
|
||||
A collection of color schemes for MATLAB.
|
||||
|
||||
These color schemes can be enabled using the [MATLAB Schemer package].
|
||||
|
||||
|
||||
Samples
|
||||
-------
|
||||
|
||||
### Cobalt
|
||||
Based on the [GTK stylesheet], "Cobalt", by Will Farrington.
|
||||
|
||||

|
||||
|
||||
### Darkmate
|
||||
Based on the [GTK stylesheet], "Darkmate",
|
||||
by [Luigi Maselli](https://grigio.org/).
|
||||
|
||||

|
||||
|
||||
### Dark Steel
|
||||
By [@scottclowe](https://github.com/scottclowe), inspired by the Darkmate and
|
||||
Cobalt themes.
|
||||
|
||||

|
||||
|
||||
### Matrix
|
||||
By [@scottclowe](https://github.com/scottclowe), using only colors present in
|
||||
the terminals shown in the movie,
|
||||
[*The Matrix*](http://www.imdb.com/title/tt0133093/).
|
||||
|
||||

|
||||
|
||||
### Monokai
|
||||
By [@dkearn](https://github.com/dkearn). Based on Sublime Text's Monokai theme. Change the font to Consolas to complete the look.
|
||||
|
||||

|
||||
|
||||
### Oblivion
|
||||
Based on the [Gedit theme, "Oblivion"](https://github.com/mig/gedit-themes/blob/master/oblivion.xml),
|
||||
by Paolo Borelli and GtkSourceView.
|
||||
|
||||

|
||||
|
||||
### Solarised Dark
|
||||
Based on the [Solarized][Solarized] (1.0.0beta2) palette, in dark mode,
|
||||
by [Ethan Schoonover].
|
||||
|
||||

|
||||
|
||||
### Solarised Light
|
||||
Based on the [Solarized][Solarized] (1.0.0beta2) palette, in light mode,
|
||||
by [Ethan Schoonover].
|
||||
|
||||

|
||||
|
||||
### Tango
|
||||
Based on the colour palette for the [Tango Desktop Project].
|
||||
|
||||

|
||||
|
||||
### Vibrant
|
||||
Based on the [GTK stylesheet], "Vibrant", by Lateef Alabi-Oki.
|
||||
|
||||

|
||||
|
||||
|
||||
Default
|
||||
-------
|
||||
|
||||
And of course, you can always return to the original MATLAB color scheme
|
||||
provided by [MathWorks](https://www.mathworks.com/) using the `default.prf`
|
||||
color preferences file.
|
||||
|
||||

|
||||
|
||||
|
||||
[MATLAB Schemer package]: https://github.com/scottclowe/matlab-schemer
|
||||
[GTK stylesheet]: https://wiki.gnome.org/Projects/GtkSourceView/StyleSchemes
|
||||
[Solarized]: http://ethanschoonover.com/solarized
|
||||
[Ethan Schoonover]: http://ethanschoonover.com/
|
||||
[Tango Desktop Project]: http://tango-project.org/
|
||||
33
Libs/schemer/schemes/SilasColorSchemeForMATLAB.prf
Normal file
@@ -0,0 +1,33 @@
|
||||
# SilasColorSchemeForMATLAB - MATLAB color scheme
|
||||
# Generated with schemer_export v1.4.0, on MATLAB 9.5.0.1586782 (R2018b) Update 8
|
||||
# Wed Dec 07 13:28:52 CET 2022
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue
|
||||
EditorCodeBlockDividers=Btrue
|
||||
Editorhighlight-caret-row-boolean=Bfalse
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-2893873
|
||||
ColorsBackground=C-14144461
|
||||
Colors_M_Keywords=C-9720087
|
||||
Colors_M_Comments=C-6380369
|
||||
Colors_M_Strings=C-3231622
|
||||
Colors_M_UnterminatedStrings=C-3891200
|
||||
Colors_M_SystemCommands=C-10443343
|
||||
Colors_M_Errors=C-2920075
|
||||
Colors_HTML_HTMLLinks=C-9265201
|
||||
Colors_M_Warnings=C-217282
|
||||
ColorsMLintAutoFixBackground=C-2920075
|
||||
Editor.VariableHighlighting.Color=C-4423978
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-7487874
|
||||
Editorhighlight-lines=C-13288387
|
||||
Editorhighlight-caret-row-boolean-color=C-11184301
|
||||
EditorRightTextLimitLineColor=C-11775661
|
||||
Color_CmdWinWarnings=C-217282
|
||||
Color_CmdWinErrors=C-2920075
|
||||
45
Libs/schemer/schemes/cobalt.prf
Normal file
@@ -0,0 +1,45 @@
|
||||
# Cobalt - MATLAB color scheme
|
||||
# Created by Scott Lowe, 2015-07-05
|
||||
# Based on the GTK stylesheet "Cobalt", by Will Farrington.
|
||||
# https://wiki.gnome.org/Projects/GtkSourceView/StyleSchemes
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue
|
||||
EditorCodeBlockDividers=Btrue
|
||||
Editorhighlight-caret-row-boolean=Btrue
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-1 # white
|
||||
ColorsBackground=C-16770253 # dark_blue
|
||||
Colors_M_Keywords=C-25344 # bright_orange
|
||||
Colors_M_Comments=C-16742145 # sky_blue
|
||||
Colors_M_Strings=C-12920576 # spring_green
|
||||
Colors_M_UnterminatedStrings=C-4480 # faded_yellow
|
||||
Colors_M_SystemCommands=C-3355444 # light grey
|
||||
Colors_M_Errors=C-65468 # nail_polish_pink
|
||||
Colors_HTML_HTMLLinks=C-16751169 # light_blue
|
||||
Colors_M_Warnings=C-20396 #
|
||||
ColorsMLintAutoFixBackground=C-12303292 #
|
||||
Editor.VariableHighlighting.Color=C-16728180 # eye-drop
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-8323141 # teal_blue
|
||||
Editorhighlight-lines=C-15981252 # eye-drop
|
||||
Editorhighlight-caret-row-boolean-color=C-16762000 # medium_blue
|
||||
EditorRightTextLimitLineColor=C-14665909 # eye-drop
|
||||
# C/C++
|
||||
Editor.Language.C.Color.preprocessor=C-8323141 # teal_blue
|
||||
# Java
|
||||
Editor.Language.Java.Color.keywords=C-8323141 # teal_blue
|
||||
# VHDL
|
||||
Editor.Language.VHDL.Color.operator=C-65468 # nail_polish_pink
|
||||
# Verilog
|
||||
Editor.Language.Verilog.Color.operator=C-65468 # nail_polish_pink
|
||||
# XML/HTML
|
||||
Editor.Language.XML.Color.tag=C-8323141 # teal_blue
|
||||
Editor.Language.XML.Color.doctype=C-3355444 # light grey
|
||||
Editor.Language.XML.Color.pi-content=C-3355444 # light grey
|
||||
Editor.Language.XML.Color.cdata-section=C-3355444 # light grey
|
||||
34
Libs/schemer/schemes/darkmate.prf
Normal file
@@ -0,0 +1,34 @@
|
||||
# Darkmate - MATLAB color scheme
|
||||
# Created by Scott Lowe, 2015-07-05
|
||||
# Based on the GTK stylesheet "Darkmate", by Luigi Maselli.
|
||||
# https://wiki.gnome.org/Projects/GtkSourceView/StyleSchemes
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue
|
||||
EditorCodeBlockDividers=Btrue
|
||||
Editorhighlight-caret-row-boolean=Btrue
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I4 # slightly wider
|
||||
ColorsText=C-1118482 # white
|
||||
ColorsBackground=C-14474461 # carbon
|
||||
Colors_M_Keywords=C-26368 # ambra
|
||||
Colors_M_Comments=C-10920873 # asfalto
|
||||
Colors_M_Strings=C-6881536 # lime
|
||||
Colors_M_UnterminatedStrings=C-202417 # yellow
|
||||
Colors_M_SystemCommands=C-16725605 # alga
|
||||
Colors_M_Errors=C-53398 # red
|
||||
Colors_HTML_HTMLLinks=C-6385153 # violet
|
||||
Colors_M_Warnings=C-26368 # ambra
|
||||
ColorsMLintAutoFixBackground=C-11184811 #
|
||||
Editor.VariableHighlighting.Color=C-4495617 # purple
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-16725760 # green
|
||||
Editorhighlight-lines=C-15132391 #
|
||||
Editorhighlight-caret-row-boolean-color=C-16777216 # black
|
||||
EditorRightTextLimitLineColor=C-13948117 #
|
||||
# XML/HTML
|
||||
Editor.Language.XML.Color.pi-content=C-6425200
|
||||
44
Libs/schemer/schemes/darksteel.prf
Normal file
@@ -0,0 +1,44 @@
|
||||
# Dark Steel - MATLAB color scheme
|
||||
# Created by Scott Lowe
|
||||
# Generated with colortheme_export v1.0.0
|
||||
# Fri Aug 09 18:39:37 BST 2013
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue
|
||||
EditorCodeBlockDividers=Btrue
|
||||
Editorhighlight-caret-row-boolean=Btrue
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-1
|
||||
ColorsBackground=C-15066598
|
||||
Colors_M_Keywords=C-1208813
|
||||
Colors_M_Comments=C-14114579
|
||||
Colors_M_Strings=C-16724992
|
||||
Colors_M_UnterminatedStrings=C-4210944
|
||||
Colors_M_SystemCommands=C-7123493
|
||||
Colors_M_Errors=C-45747
|
||||
Colors_HTML_HTMLLinks=C-10592257
|
||||
Colors_M_Warnings=C-27648
|
||||
ColorsMLintAutoFixBackground=C-9223357
|
||||
Editor.VariableHighlighting.Color=C-11184786
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-16735351
|
||||
Editorhighlight-lines=C-14408662
|
||||
Editorhighlight-caret-row-boolean-color=C-12632257
|
||||
EditorRightTextLimitLineColor=C-5723992
|
||||
# TLC
|
||||
Editor.Language.TLC.Color.Colors_M_Keywords=C-16735351
|
||||
# C/C++
|
||||
Editor.Language.C.Color.preprocessor=C-16735351
|
||||
# VHDL
|
||||
Editor.Language.VHDL.Color.operator=C-16735351
|
||||
# Verilog
|
||||
Editor.Language.Verilog.Color.operator=C-16735351
|
||||
# XML
|
||||
Editor.Language.XML.Color.operator=C-1710454
|
||||
Editor.Language.XML.Color.doctype=C-6578958
|
||||
Editor.Language.XML.Color.pi-content=C-9868801
|
||||
95
Libs/schemer/schemes/default.prf
Normal file
@@ -0,0 +1,95 @@
|
||||
# Default MATLAB color scheme
|
||||
# This color scheme file restores the color scheme which ships with MATLAB.
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Btrue
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue
|
||||
EditorCodeBlockDividers=Btrue
|
||||
Editorhighlight-caret-row-boolean=Bfalse
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-16777216
|
||||
ColorsBackground=C-1
|
||||
Colors_M_Keywords=C-16776961
|
||||
Colors_M_Comments=C-14513374
|
||||
Colors_M_Strings=C-6283024
|
||||
Colors_M_UnterminatedStrings=C-5111808
|
||||
Colors_M_SystemCommands=C-5075968
|
||||
Colors_M_Errors=C-65536
|
||||
Colors_HTML_HTMLLinks=C-16776961
|
||||
Color_CmdWinWarnings=C-39936
|
||||
Color_CmdWinErrors=C-1703936
|
||||
Colors_M_Warnings=C-27648
|
||||
ColorsMLintAutoFixBackground=C-1121868
|
||||
Editor.VariableHighlighting.Color=C-3479320
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-16735325
|
||||
Editorhighlight-lines=C-197412
|
||||
Editorhighlight-caret-row-boolean-color=C-2167080
|
||||
EditorRightTextLimitLineColor=C-3355444
|
||||
# MuPAD
|
||||
Editor.Language.MuPAD.Color.string=C-6283024
|
||||
Editor.Language.MuPAD.Color.constant=C-14638864
|
||||
Editor.Language.MuPAD.Color.keyword=C-16776961
|
||||
Editor.Language.MuPAD.Color.function=C-8355662
|
||||
Editor.Language.MuPAD.Color.block-comment=C-14513374
|
||||
Editor.Language.MuPAD.Color.option=C-5075968
|
||||
Editor.Language.MuPAD.Color.operator=C-5103616
|
||||
# TLC
|
||||
Editor.Language.TLC.Color.Colors_M_SystemCommands=C-16776961
|
||||
Editor.Language.TLC.Color.Colors_M_Keywords=C-5075968
|
||||
Editor.Language.TLC.Color.Colors_M_Comments=C-14513374
|
||||
Editor.Language.TLC.Color.string-literal=C-6283024
|
||||
# VRML
|
||||
Editor.Language.VRML.Color.comment=C-14513374
|
||||
Editor.Language.VRML.Color.node-keyword=C-16022329
|
||||
Editor.Language.VRML.Color.field-keyword=C-9145228
|
||||
Editor.Language.VRML.Color.terminal-symbol=C-2196224
|
||||
Editor.Language.VRML.Color.keyword=C-16776961
|
||||
Editor.Language.VRML.Color.data-type-keyword=C-6737152
|
||||
Editor.Language.VRML.Color.string=C-6283024
|
||||
# VRML/X3DV
|
||||
Editor.Language.VRMLX3DV.Color.keyword=C-16776961
|
||||
Editor.Language.VRMLX3DV.Color.node-keyword=C-16022329
|
||||
Editor.Language.VRMLX3DV.Color.field-keyword=C-9145228
|
||||
Editor.Language.VRMLX3DV.Color.data-type-keyword=C-6737152
|
||||
Editor.Language.VRMLX3DV.Color.terminal-symbol=C-2196224
|
||||
Editor.Language.VRMLX3DV.Color.comment=C-14513374
|
||||
Editor.Language.VRMLX3DV.Color.string=C-6283024
|
||||
# C/C++
|
||||
Editor.Language.C.Color.keywords=C-16776961
|
||||
Editor.Language.C.Color.line-comment=C-14513374
|
||||
Editor.Language.C.Color.string-literal=C-6283024
|
||||
Editor.Language.C.Color.preprocessor=C-5075968
|
||||
Editor.Language.C.Color.char-literal=C-48897
|
||||
Editor.Language.C.Color.errors=C-65536
|
||||
# Java
|
||||
Editor.Language.Java.method=Sbold
|
||||
Editor.Language.Java.Color.keywords=C-16776961
|
||||
Editor.Language.Java.Color.line-comment=C-14513374
|
||||
Editor.Language.Java.Color.string-literal=C-6283024
|
||||
Editor.Language.Java.Color.char-literal=C-48897
|
||||
# VHDL
|
||||
Editor.Language.VHDL.Color.Colors_M_Keywords=C-16776961
|
||||
Editor.Language.VHDL.Color.operator=C-5075968
|
||||
Editor.Language.VHDL.Color.Colors_M_Comments=C-14513374
|
||||
Editor.Language.VHDL.Color.string-literal=C-6283024
|
||||
# Verilog
|
||||
Editor.Language.Verilog.Color.Colors_M_Comments=C-14513374
|
||||
Editor.Language.Verilog.Color.operator=C-5075968
|
||||
Editor.Language.Verilog.Color.Colors_M_Keywords=C-16776961
|
||||
Editor.Language.Verilog.Color.string-literal=C-6283024
|
||||
# XML
|
||||
Editor.Language.XML.Color.error=C-65536
|
||||
Editor.Language.XML.Color.tag=C-16776961
|
||||
Editor.Language.XML.Color.attribute=C-5111808
|
||||
Editor.Language.XML.Color.operator=C-5075968
|
||||
Editor.Language.XML.Color.value=C-6283024
|
||||
Editor.Language.XML.Color.comment=C-14513374
|
||||
Editor.Language.XML.Color.doctype=C-16777092
|
||||
Editor.Language.XML.Color.ref=C-5111808
|
||||
Editor.Language.XML.Color.pi-content=C-16777092
|
||||
Editor.Language.XML.Color.cdata-section=C-8625664
|
||||
31
Libs/schemer/schemes/matrix.prf
Normal file
@@ -0,0 +1,31 @@
|
||||
# Matrix - MATLAB color scheme
|
||||
# Created by Scott Lowe, 2015-07-05. Modified 2015-04-08.
|
||||
# Based on the movie of the same name.
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue # with cell bg
|
||||
EditorCodeBlockDividers=Bfalse # without cell lines
|
||||
Editorhighlight-caret-row-boolean=Btrue
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-15810737
|
||||
ColorsBackground=C-16448762
|
||||
Colors_M_Keywords=C-8524550
|
||||
Colors_M_Comments=C-14199226
|
||||
Colors_M_Strings=C-15236555
|
||||
Colors_M_UnterminatedStrings=C-13769101
|
||||
Colors_M_SystemCommands=C-15122561
|
||||
Colors_M_Errors=C-2678475
|
||||
Colors_HTML_HTMLLinks=C-14525287
|
||||
Colors_M_Warnings=C-10475466
|
||||
ColorsMLintAutoFixBackground=C-6544075
|
||||
Editor.VariableHighlighting.Color=C-14855081
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-16354525
|
||||
Editorhighlight-lines=C-16117996
|
||||
Editorhighlight-caret-row-boolean-color=C-15919586
|
||||
EditorRightTextLimitLineColor=C-5723992
|
||||
32
Libs/schemer/schemes/monokai.prf
Normal file
@@ -0,0 +1,32 @@
|
||||
# monokai - MATLAB color scheme
|
||||
# Generated with schemer_export v1.3.5, on MATLAB 8.1.0.604 (R2013a)
|
||||
# Mon Apr 25 15:03:32 BST 2016
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue
|
||||
EditorCodeBlockDividers=Btrue
|
||||
Editorhighlight-caret-row-boolean=Bfalse
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-460560
|
||||
ColorsBackground=C-14211038
|
||||
Colors_M_Keywords=C-448910
|
||||
Colors_M_Comments=C-9080482
|
||||
Colors_M_Strings=C-1647756
|
||||
Colors_M_UnterminatedStrings=C-65536
|
||||
Colors_M_SystemCommands=C-16711936
|
||||
Colors_M_Errors=C-65536
|
||||
Colors_HTML_HTMLLinks=C-16711681
|
||||
Colors_M_Warnings=C-27648
|
||||
ColorsMLintAutoFixBackground=C-11974594
|
||||
Editor.VariableHighlighting.Color=C-10066330
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-16729641
|
||||
Editorhighlight-lines=C-13421773
|
||||
Editorhighlight-caret-row-boolean-color=C-10066330
|
||||
EditorRightTextLimitLineColor=C-3355444
|
||||
Color_CmdWinWarnings=C-26368
|
||||
52
Libs/schemer/schemes/oblivion.prf
Normal file
@@ -0,0 +1,52 @@
|
||||
# Oblivion - MATLAB color scheme
|
||||
# Created by Scott Lowe, 2015-07-05
|
||||
# Based on the Gedit theme "Oblivion", by Paolo Borelli.
|
||||
# https://github.com/mig/gedit-themes
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue
|
||||
EditorCodeBlockDividers=Btrue
|
||||
Editorhighlight-caret-row-boolean=Btrue
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-2893873 # aluminium2
|
||||
ColorsBackground=C-13749194 # aluminium6
|
||||
Colors_M_Keywords=C-1 # white
|
||||
Colors_M_Comments=C-7828859 # aluminium4
|
||||
Colors_M_Strings=C-1190912 # butter2
|
||||
Colors_M_UnterminatedStrings=C-3891200 # butter3
|
||||
Colors_M_SystemCommands=C-7675340 # chameleon1
|
||||
Colors_M_Errors=C-1103575 # scarlet1
|
||||
Colors_HTML_HTMLLinks=C-9265201 # skyblue1
|
||||
Colors_M_Warnings=C-217282 # orange1
|
||||
ColorsMLintAutoFixBackground=C-6029312 # scarlet3
|
||||
Editor.VariableHighlighting.Color=C-11625978 # chameleon3
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-9265201 # skyblue1
|
||||
Editorhighlight-lines=C-13288387 #
|
||||
Editorhighlight-caret-row-boolean-color=C-11184301 # aluminium5
|
||||
EditorRightTextLimitLineColor=C-11775661 #
|
||||
# C/C++
|
||||
Editor.Language.C.Color.keywords=C-7675340 # chameleon1
|
||||
Editor.Language.C.Color.preprocessor=C-5406808 # plum1
|
||||
Editor.Language.C.Color.char-literal=C-9265201 # skyblue1
|
||||
# Java
|
||||
Editor.Language.Java.Color.keywords=C-7675340 # chameleon1
|
||||
Editor.Language.Java.Color.char-literal=C-9265201 # skyblue1
|
||||
# VHDL
|
||||
Editor.Language.VHDL.Color.Colors_M_Keywords=C-7675340 # chameleon1
|
||||
Editor.Language.VHDL.Color.operator=C-1 # white
|
||||
# Verilog
|
||||
Editor.Language.Verilog.Color.operator=C-1 # white
|
||||
Editor.Language.Verilog.Color.Colors_M_Keywords=C-7675340 # chameleon1
|
||||
# XML/HTML
|
||||
Editor.Language.XML.Color.tag=C-9265201 # skyblue1
|
||||
Editor.Language.XML.Color.attribute=C-7675340 # chameleon1
|
||||
Editor.Language.XML.Color.operator=C-1967753 #
|
||||
Editor.Language.XML.Color.doctype=C-5406808 # plum1
|
||||
Editor.Language.XML.Color.pi-content=C-5406808 # plum1
|
||||
Editor.Language.XML.Color.cdata-section=C-5406808 # plum1
|
||||
BIN
Libs/schemer/schemes/screenshots/cobalt.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
Libs/schemer/schemes/screenshots/darkmate.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
Libs/schemer/schemes/screenshots/darksteel.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
Libs/schemer/schemes/screenshots/default.png
Normal file
|
After Width: | Height: | Size: 28 KiB |
BIN
Libs/schemer/schemes/screenshots/matrix.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
Libs/schemer/schemes/screenshots/monokai.png
Normal file
|
After Width: | Height: | Size: 96 KiB |
BIN
Libs/schemer/schemes/screenshots/oblivion.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
Libs/schemer/schemes/screenshots/solarized-dark.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
Libs/schemer/schemes/screenshots/solarized-light.png
Normal file
|
After Width: | Height: | Size: 31 KiB |
BIN
Libs/schemer/schemes/screenshots/tango.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
BIN
Libs/schemer/schemes/screenshots/vibrant.png
Normal file
|
After Width: | Height: | Size: 30 KiB |
55
Libs/schemer/schemes/solarized-dark.prf
Normal file
@@ -0,0 +1,55 @@
|
||||
# Solarized Dark - MATLAB color scheme
|
||||
# Manually created on 2015-07-04 by Scott Lowe, based on the style guide of
|
||||
# http://ethanschoonover.com/solarized
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Bfalse # no cell highlighting
|
||||
EditorCodeBlockDividers=Btrue # mark cells with line
|
||||
Editorhighlight-caret-row-boolean=Btrue
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-8153962 # base 0
|
||||
ColorsBackground=C-16766154 # base 03
|
||||
Colors_M_Keywords=C-3454186 # orange
|
||||
Colors_M_Comments=C-10981771 # base 01
|
||||
Colors_M_Strings=C-14251054 # blue
|
||||
Colors_M_UnterminatedStrings=C-13983336 # cyan
|
||||
Colors_M_SystemCommands=C-2935166 # magenta
|
||||
Colors_M_Errors=C-2346449 # red
|
||||
Colors_HTML_HTMLLinks=C-9670204 # violet
|
||||
Colors_M_Warnings=C-4880128 # yellow
|
||||
ColorsMLintAutoFixBackground=C-16304574 # base 02
|
||||
Editor.VariableHighlighting.Color=C-16304574 # base 02
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-8021760 # green
|
||||
Editorhighlight-lines=C-16766154 # base 03
|
||||
Editorhighlight-caret-row-boolean-color=C-16304574 # base 02
|
||||
EditorRightTextLimitLineColor=C-5723992 # matlab cell lines
|
||||
# MuPAD
|
||||
Editor.Language.MuPAD.Color.operator=C-8021760 # green
|
||||
Editor.Language.MuPAD.Color.function=C-4880128 # yellow
|
||||
Editor.Language.MuPAD.Color.constant=C-2935166 # magenta
|
||||
# TLC
|
||||
Editor.Language.TLC.Color.Colors_M_Keywords=C-8021760 # green
|
||||
# C/C++
|
||||
Editor.Language.C.Color.preprocessor=C-8021760 # green
|
||||
Editor.Language.C.Color.char-literal=C-9670204 # violet
|
||||
# Java
|
||||
Editor.Language.Java.Color.char-literal=C-9670204 # violet
|
||||
# VHDL
|
||||
Editor.Language.VHDL.Color.operator=C-8021760 # green
|
||||
# Verilog
|
||||
Editor.Language.Verilog.Color.operator=C-8021760 # green
|
||||
# XML
|
||||
Editor.Language.XML.Color.tag=C-14251054 # blue
|
||||
Editor.Language.XML.Color.attribute=C-4880128 # yellow
|
||||
Editor.Language.XML.Color.operator=C-8021760 # green
|
||||
Editor.Language.XML.Color.value=C-13983336 # cyan
|
||||
Editor.Language.XML.Color.doctype=C-3454186 # orange
|
||||
Editor.Language.XML.Color.ref=C-9670204 # violet
|
||||
Editor.Language.XML.Color.pi-content=C-9670204 # violet
|
||||
Editor.Language.XML.Color.cdata-section=C-2935166 # magenta
|
||||
55
Libs/schemer/schemes/solarized-light.prf
Normal file
@@ -0,0 +1,55 @@
|
||||
# Solarized Light - MATLAB color scheme
|
||||
# Manually created on 2015-07-04 by Scott Lowe, based on the style guide of
|
||||
# http://ethanschoonover.com/solarized
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Bfalse # no cell highlighting
|
||||
EditorCodeBlockDividers=Btrue # mark cells with line
|
||||
Editorhighlight-caret-row-boolean=Btrue
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-10126461 # base 00
|
||||
ColorsBackground=C-133405 # base 3
|
||||
Colors_M_Keywords=C-3454186 # orange
|
||||
Colors_M_Comments=C-7102047 # base 1
|
||||
Colors_M_Strings=C-14251054 # blue
|
||||
Colors_M_UnterminatedStrings=C-13983336 # cyan
|
||||
Colors_M_SystemCommands=C-2935166 # magenta
|
||||
Colors_M_Errors=C-2346449 # red
|
||||
Colors_HTML_HTMLLinks=C-9670204 # violet
|
||||
Colors_M_Warnings=C-4880128 # yellow
|
||||
ColorsMLintAutoFixBackground=C-1120043 # base 2
|
||||
Editor.VariableHighlighting.Color=C-1120043 # base 2
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-8021760 # green
|
||||
Editorhighlight-lines=C-133405 # base 00
|
||||
Editorhighlight-caret-row-boolean-color=C-1120043 # base 2
|
||||
EditorRightTextLimitLineColor=C-5723992 # matlab cell lines
|
||||
# MuPAD
|
||||
Editor.Language.MuPAD.Color.operator=C-8021760 # green
|
||||
Editor.Language.MuPAD.Color.function=C-4880128 # yellow
|
||||
Editor.Language.MuPAD.Color.constant=C-2935166 # magenta
|
||||
# TLC
|
||||
Editor.Language.TLC.Color.Colors_M_Keywords=C-8021760 # green
|
||||
# C/C++
|
||||
Editor.Language.C.Color.preprocessor=C-8021760 # green
|
||||
Editor.Language.C.Color.char-literal=C-9670204 # violet
|
||||
# Java
|
||||
Editor.Language.Java.Color.char-literal=C-9670204 # violet
|
||||
# VHDL
|
||||
Editor.Language.VHDL.Color.operator=C-8021760 # green
|
||||
# Verilog
|
||||
Editor.Language.Verilog.Color.operator=C-8021760 # green
|
||||
# XML
|
||||
Editor.Language.XML.Color.tag=C-14251054 # blue
|
||||
Editor.Language.XML.Color.attribute=C-4880128 # yellow
|
||||
Editor.Language.XML.Color.operator=C-8021760 # green
|
||||
Editor.Language.XML.Color.value=C-13983336 # cyan
|
||||
Editor.Language.XML.Color.doctype=C-3454186 # orange
|
||||
Editor.Language.XML.Color.ref=C-9670204 # violet
|
||||
Editor.Language.XML.Color.pi-content=C-9670204 # violet
|
||||
Editor.Language.XML.Color.cdata-section=C-2935166 # magenta
|
||||
66
Libs/schemer/schemes/tango.prf
Normal file
@@ -0,0 +1,66 @@
|
||||
# Tango - MATLAB color scheme
|
||||
# Created by Scott Lowe, 2015-07-05, Modified 2016-04-08
|
||||
# Based on the colours specified for use in the Tango Project.
|
||||
# http://tango-project.org/
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
#
|
||||
# Palette, taken from
|
||||
# https://en.wikipedia.org/wiki/Tango_Desktop_Project#Palette
|
||||
# | Light Medium Dark
|
||||
# --------------+------------------------------------
|
||||
# Butter | -202417 -1190912 -3891200
|
||||
# Orange | -217282 -689920 -3253248
|
||||
# Chocolate | -1459858 -4096751 -7382782
|
||||
# Chameleon | -7675340 -9186794 -11625978
|
||||
# Sky Blue | -9265201 -13343324 -14660985
|
||||
# Plum | -5406808 -9088901 -10734234
|
||||
# Scarlet Red | -1103575 -3407872 -6029312
|
||||
# Aluminium (l) | -1118484 -2893873 -4538954
|
||||
# Aluminium (d) | -7828859 -11184301 -13749194
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue
|
||||
EditorCodeBlockDividers=Btrue
|
||||
Editorhighlight-caret-row-boolean=Btrue
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-11184301 # aluminium-dark
|
||||
ColorsBackground=C-1 # white
|
||||
Colors_M_Keywords=C-6029312 # scarletred-dark
|
||||
Colors_M_Comments=C-9265201 # skyblue-light
|
||||
Colors_M_Strings=C-5406808 # plum-light
|
||||
Colors_M_UnterminatedStrings=C-13343324 # skyblue
|
||||
Colors_M_SystemCommands=C-4096751 # chocolate
|
||||
Colors_M_Errors=C-1103575 # scarletred-light
|
||||
Colors_HTML_HTMLLinks=C-13343324 # skyblue
|
||||
Colors_M_Warnings=C-217282 # orange-light
|
||||
ColorsMLintAutoFixBackground=C-4538954 # aluminium-light
|
||||
Editor.VariableHighlighting.Color=C-202417 # butter-light
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-11625978 # chameleon-dark
|
||||
Editorhighlight-lines=C-1118484 # aluminium-white
|
||||
Editorhighlight-caret-row-boolean-color=C-2893873 # aluminium-vlight
|
||||
EditorRightTextLimitLineColor=C-7828859 # aluminium
|
||||
# C/C++
|
||||
Editor.Language.C.Color.keywords=C-11625978
|
||||
Editor.Language.C.Color.char-literal=C-3891200
|
||||
# Java
|
||||
Editor.Language.Java.Color.keywords=C-11625978
|
||||
Editor.Language.Java.Color.char-literal=C-3891200
|
||||
# VHDL
|
||||
Editor.Language.VHDL.Color.operator=C-11625978
|
||||
# Verilog
|
||||
Editor.Language.Verilog.Color.operator=C-11625978
|
||||
# XML/HTML
|
||||
Editor.Language.XML.Color.error=C-1103575
|
||||
Editor.Language.XML.Color.tag=C-6029312
|
||||
Editor.Language.XML.Color.attribute=C-11625978
|
||||
Editor.Language.XML.Color.operator=C-1190912
|
||||
Editor.Language.XML.Color.value=C-4096751
|
||||
Editor.Language.XML.Color.doctype=C-689920
|
||||
Editor.Language.XML.Color.ref=C-3891200
|
||||
Editor.Language.XML.Color.pi-content=C-13343324
|
||||
Editor.Language.XML.Color.cdata-section=C-5406808
|
||||
32
Libs/schemer/schemes/vibrant.prf
Normal file
@@ -0,0 +1,32 @@
|
||||
# Vibrant - MATLAB color scheme
|
||||
# Created by Scott Lowe, 2015-07-12
|
||||
# Based on the GTK stylesheet "Vibrant", by Lateef Alabi-Oki.
|
||||
# https://wiki.gnome.org/Projects/GtkSourceView/StyleSchemes
|
||||
# To enable this color scheme in MATLAB use schemer_import, available at:
|
||||
# https://github.com/scottclowe/matlab-schemer
|
||||
# https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer
|
||||
ColorsUseSystem=Bfalse
|
||||
ColorsUseMLintAutoFixBackground=Btrue
|
||||
Editor.VariableHighlighting.Automatic=Btrue
|
||||
Editor.NonlocalVariableHighlighting=Btrue
|
||||
EditorCodepadHighVisible=Btrue
|
||||
EditorCodeBlockDividers=Btrue
|
||||
Editorhighlight-caret-row-boolean=Btrue
|
||||
EditorRightTextLineVisible=Btrue
|
||||
EditorRightTextLimitLineWidth=I1
|
||||
ColorsText=C-11711155 # text_fg
|
||||
ColorsBackground=C-1 # white
|
||||
Colors_M_Keywords=C-6815487 # accent_deep_red
|
||||
Colors_M_Comments=C-183551 # accent_red
|
||||
Colors_M_Strings=C-16684599 # accent_blue_base
|
||||
Colors_M_UnterminatedStrings=C-16698473 # accent_blue_shadow
|
||||
Colors_M_SystemCommands=C-10092340 # accent_dark_violet
|
||||
Colors_M_Errors=C-2883584 # accent_red_base
|
||||
Colors_HTML_HTMLLinks=C-16766147 # ubuntu_toner
|
||||
Colors_M_Warnings=C-292096 # orange_base
|
||||
ColorsMLintAutoFixBackground=C-140901 # human_highlight
|
||||
Editor.VariableHighlighting.Color=C-256 # yellow
|
||||
Editor.NonlocalVariableHighlighting.TextColor=C-13395712 # accent_green_base
|
||||
Editorhighlight-lines=C-66341 # custom
|
||||
Editorhighlight-caret-row-boolean-color=C-131175 # accent_yellow_highlight
|
||||
EditorRightTextLimitLineColor=C-140901 # human_highlight
|
||||