├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cobalt.prf ├── darkmate.prf ├── darksteel.prf ├── default.prf ├── matrix.prf ├── monokai.prf ├── oblivion.prf ├── screenshots ├── cobalt.png ├── darkmate.png ├── darksteel.png ├── default.png ├── matrix.png ├── monokai.png ├── oblivion.png ├── solarized-dark.png ├── solarized-light.png ├── tango.png └── vibrant.png ├── solarized-dark.prf ├── solarized-light.prf ├── tango.prf └── vibrant.prf /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # 5 | # The above will handle all files NOT found below 6 | # 7 | 8 | ##--------------------------------------------------- 9 | # Common .gitattributes 10 | ##--------------------------------------------------- 11 | 12 | # Documents 13 | # ============ 14 | *.txt text 15 | *.md text 16 | 17 | # Graphics 18 | # ============ 19 | *.png binary 20 | *.jpg binary 21 | *.jpeg binary 22 | *.gif binary 23 | *.tif binary 24 | *.tiff binary 25 | *.ico binary 26 | *.svg text 27 | *.eps binary 28 | 29 | 30 | ##--------------------------------------------------- 31 | # Basic .gitattributes for a MATLAB repo 32 | ##--------------------------------------------------- 33 | 34 | # Source files 35 | # ============ 36 | *.m text 37 | *.prf text 38 | 39 | # Binary files 40 | # ============ 41 | *.p binary 42 | *.mex* binary 43 | *.fig binary 44 | *.mat binary 45 | *.mdl binary 46 | *.slx binary 47 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Editor autosave files 2 | *~ 3 | *.asv 4 | # Compiled MEX binaries (all platforms) 5 | *.mex* 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing a colour scheme 2 | ============================ 3 | 4 | Glad to hear you've made a colour scheme to use with [MATLAB Schemer]! 5 | Thanks for sharing this with us. 6 | 7 | Please only add one colour scheme per pull request. 8 | If you have multiple colorschemes to add, make a pull request for each of them. 9 | 10 | The Schemer README includes some 11 | [advice on creating a colour scheme][scheme creation advice], which you might 12 | find useful. 13 | 14 | It is preferable to include a screenshot demonstrating an example of your new MATLAB theme. 15 | To make your screenshot: 16 | 17 | - Load your color scheme `schemer_import('yourscheme.prf', 1)` 18 | - Exit MATLAB `exit();` 19 | - Reopen MATLAB 20 | - Open the [matlab-schemer/develop/sample.m] file and take a screenshot with your favourite screenshot program. 21 | - If not done at capture time, crop the screenshot down to the right size with your [favourite image editor]. 22 | - Make sure the screenshot is saved in [matlab-schemes/screenshots] as `yourscheme.png`. 23 | 24 | If you are on Linux, you can follow the method below to create your screenshot, 25 | which is mostly automated and produces the same output every time. 26 | 27 | 28 | Reproducible screenshot workflow for Linux 29 | ------------------------------------------ 30 | 31 | Here is minimal-interaction workflow for Linux users, which will create the 32 | same screenshots every time. 33 | This has been tested on Ubuntu 15.10 with MATLAB 2016a, but should work on 34 | any *nix OS and any MATLAB version since R2012b (which introduced the 35 | toolstrip UI). 36 | 37 | The code blocks must be run from the system shell, not at the MATLAB command 38 | prompt. 39 | 40 | 1. **Setup** 41 | 42 | Define these variables appropriately. 43 | 44 | ```bash 45 | # Set this variable appropriately, without extension 46 | SCHEME_NAME='yourschemename' 47 | # Set the path to your copy of MATLAB Schemer 48 | PATH_TO_SCHEMER='../matlab-schemer/' 49 | ``` 50 | 51 | 2. **Load scheme** 52 | 53 | Run this code block to load the scheme, restart MATLAB, and edit 54 | `sample.m`. 55 | 56 | ```bash 57 | # Remove extension, if present 58 | SCHEME_NAME=${SCHEME_NAME%.prf} 59 | echo "Making screenshot for scheme $SCHEME_NAME"; 60 | # Load the template and restart matlab 61 | matlab -r "addpath(genpath('$PATH_TO_SCHEMER')); schemer_import('$SCHEME_NAME.prf',1); exit;"; 62 | # Edit the sample.m file 63 | matlab -r "edit(fullfile('$PATH_TO_SCHEMER','develop','sample.m'))" & 64 | # What next 65 | echo "Now undock sample.m, and highlight middle scaleFactor"; 66 | ``` 67 | 68 | 3. **Undock sample.m editor** 69 | 70 | Either 71 | - in MATLAB GUI, undock `sample.m` only 72 | 73 | Or 74 | - in MATLAB GUI, undock the Editor panel 75 | - move tabs to bottom, if more than one file is being editted 76 | 77 | Also, make sure the MATLAB toolstrip is visible on the undocked panel. 78 | If it is minimised, right-click on the toolstrip and restore it. 79 | 80 | 4. **Highlight** 81 | 82 | Highlight the middle instance of `scaleFactor` (on line 18). 83 | 84 | 5. **Resize window and take screenshot** 85 | 86 | Run this code block to resize the editor window and take a screenshot, 87 | cropped with ImageMagick. 88 | 89 | The crop location is correct for MATLAB 2016a. 90 | 91 | ```bash 92 | # Check for a window for the develop/sample.m file 93 | if wmctrl -l | grep -q develop/sample.m 94 | then 95 | WINDOW_NAME='develop/sample.m'; 96 | else 97 | # If it's not there, use the Editor window 98 | WINDOW_NAME='Editor'; 99 | fi 100 | if wmctrl -l | grep -qv "$WINDOW_NAME" 101 | then 102 | echo "Window $WINDOW_NAME is absent"; 103 | else 104 | # Resize the window 105 | wmctrl -r "$WINDOW_NAME" -e 0,100,100,700,650; 106 | # Try getting screenshot with Imagemagick, and cropping it down to the 107 | # just the relevant section 108 | wmctrl -a "$WINDOW_NAME"; sleep 0.1; import -window root -crop 700x379+100+249 +repage "${SCHEME_NAME}.png"; 109 | # Inspect the result 110 | xdg-open "${SCHEME_NAME}.png"; 111 | # Is it cropped correctly? 112 | echo "How does it look? If no good, try one of the other options to manually crop"; 113 | fi 114 | ``` 115 | 116 | 6. If screenshot cropped incorrectly, **manually crop screenshot** 117 | 118 | If the ImageMagick crop is not aligned correctly, 119 | - Either use gnome-screenshot for the whole window, and then crop in GIMP 120 | ```bash 121 | wmctrl -a "$WINDOW_NAME" \ 122 | && gnome-screenshot -w -f "$SCHEME_NAME.png" \ 123 | && gimp "$SCHEME_NAME.png"; 124 | ``` 125 | 126 | - Or use gnome-screenshot to select the area to use (which is likely to 127 | be less precise). 128 | ```bash 129 | wmctrl -a "$WINDOW_NAME" && gnome-screenshot -a -f "$SCHEME_NAME.png"; 130 | ``` 131 | 132 | 7. When you are happy, **move** the final copy into the screenshots folder 133 | 134 | ```bash 135 | mv "$SCHEME_NAME.png" screenshots/"$SCHEME_NAME.png"; 136 | ``` 137 | 138 | 139 | Incorporating into MATLAB Schemer 140 | --------------------------------- 141 | 142 | Once you've added the new scheme to this repository, it will be merged into 143 | [MATLAB Schemer] using [git-subtree]. 144 | If you are merging it into Schemer yourself, please consult this 145 | [step-by-step guide](https://github.com/scottclowe/matlab-schemer/blob/master/CONTRIBUTING.md#adding-a-new-colour-scheme). 146 | 147 | 148 | [MATLAB Schemer]: https://github.com/scottclowe/matlab-schemer 149 | [matlab-schemes/screenshots]: https://github.com/scottclowe/matlab-schemes/tree/master/screenshots 150 | [matlab-schemer/develop/sample.m]: https://github.com/scottclowe/matlab-schemer/blob/master/develop/sample.m 151 | [scheme creation advice]: https://github.com/scottclowe/matlab-schemer#creating-a-color-scheme-for-others-to-use 152 | [git-subtree]: https://github.com/git/git/blob/master/contrib/subtree/git-subtree.txt 153 | [favourite image editor]: https://www.gimp.org 154 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015, Scott Lowe 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without 5 | modification, are permitted provided that the following conditions are 6 | met: 7 | * Redistributions of source code must retain the above copyright 8 | notice, this list of conditions and the following disclaimer. 9 | * Redistributions in binary form must reproduce the above copyright 10 | notice, this list of conditions and the following disclaimer in 11 | the documentation and/or other materials provided with the distribution 12 | 13 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 14 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16 | ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE 17 | LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 18 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 19 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 20 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 21 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 22 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 23 | POSSIBILITY OF SUCH DAMAGE. 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | MATLAB Schemes 2 | ============== 3 | 4 | A collection of color schemes for MATLAB. 5 | 6 | These color schemes can be enabled using the [MATLAB Schemer package]. 7 | 8 | 9 | Samples 10 | ------- 11 | 12 | ### Cobalt 13 | Based on the [GTK stylesheet], "Cobalt", by Will Farrington. 14 | 15 | ![Cobalt sample](screenshots/cobalt.png) 16 | 17 | ### Darkmate 18 | Based on the [GTK stylesheet], "Darkmate", 19 | by [Luigi Maselli](https://grigio.org/). 20 | 21 | ![Darkmate sample](screenshots/darkmate.png) 22 | 23 | ### Dark Steel 24 | By [@scottclowe](https://github.com/scottclowe), inspired by the Darkmate and 25 | Cobalt themes. 26 | 27 | ![Dark Steel sample](screenshots/darksteel.png) 28 | 29 | ### Matrix 30 | By [@scottclowe](https://github.com/scottclowe), using only colors present in 31 | the terminals shown in the movie, 32 | [*The Matrix*](http://www.imdb.com/title/tt0133093/). 33 | 34 | ![Matrix sample](screenshots/matrix.png) 35 | 36 | ### Monokai 37 | By [@dkearn](https://github.com/dkearn). Based on Sublime Text's Monokai theme. Change the font to Consolas to complete the look. 38 | 39 | ![Monokai sample](screenshots/monokai.png) 40 | 41 | ### Oblivion 42 | Based on the [Gedit theme, "Oblivion"](https://github.com/mig/gedit-themes/blob/master/oblivion.xml), 43 | by Paolo Borelli and GtkSourceView. 44 | 45 | ![Oblivion sample](screenshots/oblivion.png) 46 | 47 | ### Solarised Dark 48 | Based on the [Solarized][Solarized] (1.0.0beta2) palette, in dark mode, 49 | by [Ethan Schoonover]. 50 | 51 | ![Solarized Dark sample](screenshots/solarized-dark.png) 52 | 53 | ### Solarised Light 54 | Based on the [Solarized][Solarized] (1.0.0beta2) palette, in light mode, 55 | by [Ethan Schoonover]. 56 | 57 | ![Solarized Light sample](screenshots/solarized-light.png) 58 | 59 | ### Tango 60 | Based on the colour palette for the [Tango Desktop Project]. 61 | 62 | ![Tango sample](screenshots/tango.png) 63 | 64 | ### Vibrant 65 | Based on the [GTK stylesheet], "Vibrant", by Lateef Alabi-Oki. 66 | 67 | ![Vibrant sample](screenshots/vibrant.png) 68 | 69 | 70 | Default 71 | ------- 72 | 73 | And of course, you can always return to the original MATLAB color scheme 74 | provided by [MathWorks](https://www.mathworks.com/) using the `default.prf` 75 | color preferences file. 76 | 77 | ![Default](screenshots/default.png) 78 | 79 | 80 | [MATLAB Schemer package]: https://github.com/scottclowe/matlab-schemer 81 | [GTK stylesheet]: https://wiki.gnome.org/Projects/GtkSourceView/StyleSchemes 82 | [Solarized]: http://ethanschoonover.com/solarized 83 | [Ethan Schoonover]: http://ethanschoonover.com/ 84 | [Tango Desktop Project]: http://tango-project.org/ 85 | -------------------------------------------------------------------------------- /cobalt.prf: -------------------------------------------------------------------------------- 1 | # Cobalt - MATLAB color scheme 2 | # Created by Scott Lowe, 2015-07-05 3 | # Based on the GTK stylesheet "Cobalt", by Will Farrington. 4 | # https://wiki.gnome.org/Projects/GtkSourceView/StyleSchemes 5 | # To enable this color scheme in MATLAB use schemer_import, available at: 6 | # https://github.com/scottclowe/matlab-schemer 7 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 8 | ColorsUseSystem=Bfalse 9 | ColorsUseMLintAutoFixBackground=Btrue 10 | Editor.VariableHighlighting.Automatic=Btrue 11 | Editor.NonlocalVariableHighlighting=Btrue 12 | EditorCodepadHighVisible=Btrue 13 | EditorCodeBlockDividers=Btrue 14 | Editorhighlight-caret-row-boolean=Btrue 15 | EditorRightTextLineVisible=Btrue 16 | EditorRightTextLimitLineWidth=I1 17 | ColorsText=C-1 # white 18 | ColorsBackground=C-16770253 # dark_blue 19 | Colors_M_Keywords=C-25344 # bright_orange 20 | Colors_M_Comments=C-16742145 # sky_blue 21 | Colors_M_Strings=C-12920576 # spring_green 22 | Colors_M_UnterminatedStrings=C-4480 # faded_yellow 23 | Colors_M_SystemCommands=C-3355444 # light grey 24 | Colors_M_Errors=C-65468 # nail_polish_pink 25 | Colors_HTML_HTMLLinks=C-16751169 # light_blue 26 | Colors_M_Warnings=C-20396 # 27 | ColorsMLintAutoFixBackground=C-12303292 # 28 | Editor.VariableHighlighting.Color=C-16728180 # eye-drop 29 | Editor.NonlocalVariableHighlighting.TextColor=C-8323141 # teal_blue 30 | Editorhighlight-lines=C-15981252 # eye-drop 31 | Editorhighlight-caret-row-boolean-color=C-16762000 # medium_blue 32 | EditorRightTextLimitLineColor=C-14665909 # eye-drop 33 | # C/C++ 34 | Editor.Language.C.Color.preprocessor=C-8323141 # teal_blue 35 | # Java 36 | Editor.Language.Java.Color.keywords=C-8323141 # teal_blue 37 | # VHDL 38 | Editor.Language.VHDL.Color.operator=C-65468 # nail_polish_pink 39 | # Verilog 40 | Editor.Language.Verilog.Color.operator=C-65468 # nail_polish_pink 41 | # XML/HTML 42 | Editor.Language.XML.Color.tag=C-8323141 # teal_blue 43 | Editor.Language.XML.Color.doctype=C-3355444 # light grey 44 | Editor.Language.XML.Color.pi-content=C-3355444 # light grey 45 | Editor.Language.XML.Color.cdata-section=C-3355444 # light grey 46 | -------------------------------------------------------------------------------- /darkmate.prf: -------------------------------------------------------------------------------- 1 | # Darkmate - MATLAB color scheme 2 | # Created by Scott Lowe, 2015-07-05 3 | # Based on the GTK stylesheet "Darkmate", by Luigi Maselli. 4 | # https://wiki.gnome.org/Projects/GtkSourceView/StyleSchemes 5 | # To enable this color scheme in MATLAB use schemer_import, available at: 6 | # https://github.com/scottclowe/matlab-schemer 7 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 8 | ColorsUseSystem=Bfalse 9 | ColorsUseMLintAutoFixBackground=Btrue 10 | Editor.VariableHighlighting.Automatic=Btrue 11 | Editor.NonlocalVariableHighlighting=Btrue 12 | EditorCodepadHighVisible=Btrue 13 | EditorCodeBlockDividers=Btrue 14 | Editorhighlight-caret-row-boolean=Btrue 15 | EditorRightTextLineVisible=Btrue 16 | EditorRightTextLimitLineWidth=I4 # slightly wider 17 | ColorsText=C-1118482 # white 18 | ColorsBackground=C-14474461 # carbon 19 | Colors_M_Keywords=C-26368 # ambra 20 | Colors_M_Comments=C-10920873 # asfalto 21 | Colors_M_Strings=C-6881536 # lime 22 | Colors_M_UnterminatedStrings=C-202417 # yellow 23 | Colors_M_SystemCommands=C-16725605 # alga 24 | Colors_M_Errors=C-53398 # red 25 | Colors_HTML_HTMLLinks=C-6385153 # violet 26 | Colors_M_Warnings=C-26368 # ambra 27 | ColorsMLintAutoFixBackground=C-11184811 # 28 | Editor.VariableHighlighting.Color=C-4495617 # purple 29 | Editor.NonlocalVariableHighlighting.TextColor=C-16725760 # green 30 | Editorhighlight-lines=C-15132391 # 31 | Editorhighlight-caret-row-boolean-color=C-16777216 # black 32 | EditorRightTextLimitLineColor=C-13948117 # 33 | # XML/HTML 34 | Editor.Language.XML.Color.pi-content=C-6425200 35 | -------------------------------------------------------------------------------- /darksteel.prf: -------------------------------------------------------------------------------- 1 | # Dark Steel - MATLAB color scheme 2 | # Created by Scott Lowe 3 | # Generated with colortheme_export v1.0.0 4 | # Fri Aug 09 18:39:37 BST 2013 5 | # To enable this color scheme in MATLAB use schemer_import, available at: 6 | # https://github.com/scottclowe/matlab-schemer 7 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 8 | ColorsUseSystem=Bfalse 9 | ColorsUseMLintAutoFixBackground=Btrue 10 | Editor.VariableHighlighting.Automatic=Btrue 11 | Editor.NonlocalVariableHighlighting=Btrue 12 | EditorCodepadHighVisible=Btrue 13 | EditorCodeBlockDividers=Btrue 14 | Editorhighlight-caret-row-boolean=Btrue 15 | EditorRightTextLineVisible=Btrue 16 | EditorRightTextLimitLineWidth=I1 17 | ColorsText=C-1 18 | ColorsBackground=C-15066598 19 | Colors_M_Keywords=C-1208813 20 | Colors_M_Comments=C-14114579 21 | Colors_M_Strings=C-16724992 22 | Colors_M_UnterminatedStrings=C-4210944 23 | Colors_M_SystemCommands=C-7123493 24 | Colors_M_Errors=C-45747 25 | Colors_HTML_HTMLLinks=C-10592257 26 | Colors_M_Warnings=C-27648 27 | ColorsMLintAutoFixBackground=C-9223357 28 | Editor.VariableHighlighting.Color=C-11184786 29 | Editor.NonlocalVariableHighlighting.TextColor=C-16735351 30 | Editorhighlight-lines=C-14408662 31 | Editorhighlight-caret-row-boolean-color=C-12632257 32 | EditorRightTextLimitLineColor=C-5723992 33 | # TLC 34 | Editor.Language.TLC.Color.Colors_M_Keywords=C-16735351 35 | # C/C++ 36 | Editor.Language.C.Color.preprocessor=C-16735351 37 | # VHDL 38 | Editor.Language.VHDL.Color.operator=C-16735351 39 | # Verilog 40 | Editor.Language.Verilog.Color.operator=C-16735351 41 | # XML 42 | Editor.Language.XML.Color.operator=C-1710454 43 | Editor.Language.XML.Color.doctype=C-6578958 44 | Editor.Language.XML.Color.pi-content=C-9868801 45 | -------------------------------------------------------------------------------- /default.prf: -------------------------------------------------------------------------------- 1 | # Default MATLAB color scheme 2 | # This color scheme file restores the color scheme which ships with MATLAB. 3 | # To enable this color scheme in MATLAB use schemer_import, available at: 4 | # https://github.com/scottclowe/matlab-schemer 5 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 6 | ColorsUseSystem=Btrue 7 | ColorsUseMLintAutoFixBackground=Btrue 8 | Editor.VariableHighlighting.Automatic=Btrue 9 | Editor.NonlocalVariableHighlighting=Btrue 10 | EditorCodepadHighVisible=Btrue 11 | EditorCodeBlockDividers=Btrue 12 | Editorhighlight-caret-row-boolean=Bfalse 13 | EditorRightTextLineVisible=Btrue 14 | EditorRightTextLimitLineWidth=I1 15 | ColorsText=C-16777216 16 | ColorsBackground=C-1 17 | Colors_M_Keywords=C-16776961 18 | Colors_M_Comments=C-14513374 19 | Colors_M_Strings=C-6283024 20 | Colors_M_UnterminatedStrings=C-5111808 21 | Colors_M_SystemCommands=C-5075968 22 | Colors_M_Errors=C-65536 23 | Colors_HTML_HTMLLinks=C-16776961 24 | Color_CmdWinWarnings=C-39936 25 | Color_CmdWinErrors=C-1703936 26 | Colors_M_Warnings=C-27648 27 | ColorsMLintAutoFixBackground=C-1121868 28 | Editor.VariableHighlighting.Color=C-3479320 29 | Editor.NonlocalVariableHighlighting.TextColor=C-16735325 30 | Editorhighlight-lines=C-197412 31 | Editorhighlight-caret-row-boolean-color=C-2167080 32 | EditorRightTextLimitLineColor=C-3355444 33 | # MuPAD 34 | Editor.Language.MuPAD.Color.string=C-6283024 35 | Editor.Language.MuPAD.Color.constant=C-14638864 36 | Editor.Language.MuPAD.Color.keyword=C-16776961 37 | Editor.Language.MuPAD.Color.function=C-8355662 38 | Editor.Language.MuPAD.Color.block-comment=C-14513374 39 | Editor.Language.MuPAD.Color.option=C-5075968 40 | Editor.Language.MuPAD.Color.operator=C-5103616 41 | # TLC 42 | Editor.Language.TLC.Color.Colors_M_SystemCommands=C-16776961 43 | Editor.Language.TLC.Color.Colors_M_Keywords=C-5075968 44 | Editor.Language.TLC.Color.Colors_M_Comments=C-14513374 45 | Editor.Language.TLC.Color.string-literal=C-6283024 46 | # VRML 47 | Editor.Language.VRML.Color.comment=C-14513374 48 | Editor.Language.VRML.Color.node-keyword=C-16022329 49 | Editor.Language.VRML.Color.field-keyword=C-9145228 50 | Editor.Language.VRML.Color.terminal-symbol=C-2196224 51 | Editor.Language.VRML.Color.keyword=C-16776961 52 | Editor.Language.VRML.Color.data-type-keyword=C-6737152 53 | Editor.Language.VRML.Color.string=C-6283024 54 | # VRML/X3DV 55 | Editor.Language.VRMLX3DV.Color.keyword=C-16776961 56 | Editor.Language.VRMLX3DV.Color.node-keyword=C-16022329 57 | Editor.Language.VRMLX3DV.Color.field-keyword=C-9145228 58 | Editor.Language.VRMLX3DV.Color.data-type-keyword=C-6737152 59 | Editor.Language.VRMLX3DV.Color.terminal-symbol=C-2196224 60 | Editor.Language.VRMLX3DV.Color.comment=C-14513374 61 | Editor.Language.VRMLX3DV.Color.string=C-6283024 62 | # C/C++ 63 | Editor.Language.C.Color.keywords=C-16776961 64 | Editor.Language.C.Color.line-comment=C-14513374 65 | Editor.Language.C.Color.string-literal=C-6283024 66 | Editor.Language.C.Color.preprocessor=C-5075968 67 | Editor.Language.C.Color.char-literal=C-48897 68 | Editor.Language.C.Color.errors=C-65536 69 | # Java 70 | Editor.Language.Java.method=Sbold 71 | Editor.Language.Java.Color.keywords=C-16776961 72 | Editor.Language.Java.Color.line-comment=C-14513374 73 | Editor.Language.Java.Color.string-literal=C-6283024 74 | Editor.Language.Java.Color.char-literal=C-48897 75 | # VHDL 76 | Editor.Language.VHDL.Color.Colors_M_Keywords=C-16776961 77 | Editor.Language.VHDL.Color.operator=C-5075968 78 | Editor.Language.VHDL.Color.Colors_M_Comments=C-14513374 79 | Editor.Language.VHDL.Color.string-literal=C-6283024 80 | # Verilog 81 | Editor.Language.Verilog.Color.Colors_M_Comments=C-14513374 82 | Editor.Language.Verilog.Color.operator=C-5075968 83 | Editor.Language.Verilog.Color.Colors_M_Keywords=C-16776961 84 | Editor.Language.Verilog.Color.string-literal=C-6283024 85 | # XML 86 | Editor.Language.XML.Color.error=C-65536 87 | Editor.Language.XML.Color.tag=C-16776961 88 | Editor.Language.XML.Color.attribute=C-5111808 89 | Editor.Language.XML.Color.operator=C-5075968 90 | Editor.Language.XML.Color.value=C-6283024 91 | Editor.Language.XML.Color.comment=C-14513374 92 | Editor.Language.XML.Color.doctype=C-16777092 93 | Editor.Language.XML.Color.ref=C-5111808 94 | Editor.Language.XML.Color.pi-content=C-16777092 95 | Editor.Language.XML.Color.cdata-section=C-8625664 96 | -------------------------------------------------------------------------------- /matrix.prf: -------------------------------------------------------------------------------- 1 | # Matrix - MATLAB color scheme 2 | # Created by Scott Lowe, 2015-07-05. Modified 2015-04-08. 3 | # Based on the movie of the same name. 4 | # To enable this color scheme in MATLAB use schemer_import, available at: 5 | # https://github.com/scottclowe/matlab-schemer 6 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 7 | ColorsUseSystem=Bfalse 8 | ColorsUseMLintAutoFixBackground=Btrue 9 | Editor.VariableHighlighting.Automatic=Btrue 10 | Editor.NonlocalVariableHighlighting=Btrue 11 | EditorCodepadHighVisible=Btrue # with cell bg 12 | EditorCodeBlockDividers=Bfalse # without cell lines 13 | Editorhighlight-caret-row-boolean=Btrue 14 | EditorRightTextLineVisible=Btrue 15 | EditorRightTextLimitLineWidth=I1 16 | ColorsText=C-15810737 17 | ColorsBackground=C-16448762 18 | Colors_M_Keywords=C-8524550 19 | Colors_M_Comments=C-14199226 20 | Colors_M_Strings=C-15236555 21 | Colors_M_UnterminatedStrings=C-13769101 22 | Colors_M_SystemCommands=C-15122561 23 | Colors_M_Errors=C-2678475 24 | Colors_HTML_HTMLLinks=C-14525287 25 | Colors_M_Warnings=C-10475466 26 | ColorsMLintAutoFixBackground=C-6544075 27 | Editor.VariableHighlighting.Color=C-14855081 28 | Editor.NonlocalVariableHighlighting.TextColor=C-16354525 29 | Editorhighlight-lines=C-16117996 30 | Editorhighlight-caret-row-boolean-color=C-15919586 31 | EditorRightTextLimitLineColor=C-5723992 32 | -------------------------------------------------------------------------------- /monokai.prf: -------------------------------------------------------------------------------- 1 | # monokai - MATLAB color scheme 2 | # Generated with schemer_export v1.3.5, on MATLAB 8.1.0.604 (R2013a) 3 | # Mon Apr 25 15:03:32 BST 2016 4 | # To enable this color scheme in MATLAB use schemer_import, available at: 5 | # https://github.com/scottclowe/matlab-schemer 6 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 7 | ColorsUseSystem=Bfalse 8 | ColorsUseMLintAutoFixBackground=Btrue 9 | Editor.VariableHighlighting.Automatic=Btrue 10 | Editor.NonlocalVariableHighlighting=Btrue 11 | EditorCodepadHighVisible=Btrue 12 | EditorCodeBlockDividers=Btrue 13 | Editorhighlight-caret-row-boolean=Bfalse 14 | EditorRightTextLineVisible=Btrue 15 | EditorRightTextLimitLineWidth=I1 16 | ColorsText=C-460560 17 | ColorsBackground=C-14211038 18 | Colors_M_Keywords=C-448910 19 | Colors_M_Comments=C-9080482 20 | Colors_M_Strings=C-1647756 21 | Colors_M_UnterminatedStrings=C-65536 22 | Colors_M_SystemCommands=C-16711936 23 | Colors_M_Errors=C-65536 24 | Colors_HTML_HTMLLinks=C-16711681 25 | Colors_M_Warnings=C-27648 26 | ColorsMLintAutoFixBackground=C-11974594 27 | Editor.VariableHighlighting.Color=C-10066330 28 | Editor.NonlocalVariableHighlighting.TextColor=C-16729641 29 | Editorhighlight-lines=C-13421773 30 | Editorhighlight-caret-row-boolean-color=C-10066330 31 | EditorRightTextLimitLineColor=C-3355444 32 | Color_CmdWinWarnings=C-26368 33 | -------------------------------------------------------------------------------- /oblivion.prf: -------------------------------------------------------------------------------- 1 | # Oblivion - MATLAB color scheme 2 | # Created by Scott Lowe, 2015-07-05 3 | # Based on the Gedit theme "Oblivion", by Paolo Borelli. 4 | # https://github.com/mig/gedit-themes 5 | # To enable this color scheme in MATLAB use schemer_import, available at: 6 | # https://github.com/scottclowe/matlab-schemer 7 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 8 | ColorsUseSystem=Bfalse 9 | ColorsUseMLintAutoFixBackground=Btrue 10 | Editor.VariableHighlighting.Automatic=Btrue 11 | Editor.NonlocalVariableHighlighting=Btrue 12 | EditorCodepadHighVisible=Btrue 13 | EditorCodeBlockDividers=Btrue 14 | Editorhighlight-caret-row-boolean=Btrue 15 | EditorRightTextLineVisible=Btrue 16 | EditorRightTextLimitLineWidth=I1 17 | ColorsText=C-2893873 # aluminium2 18 | ColorsBackground=C-13749194 # aluminium6 19 | Colors_M_Keywords=C-1 # white 20 | Colors_M_Comments=C-7828859 # aluminium4 21 | Colors_M_Strings=C-1190912 # butter2 22 | Colors_M_UnterminatedStrings=C-3891200 # butter3 23 | Colors_M_SystemCommands=C-7675340 # chameleon1 24 | Colors_M_Errors=C-1103575 # scarlet1 25 | Colors_HTML_HTMLLinks=C-9265201 # skyblue1 26 | Colors_M_Warnings=C-217282 # orange1 27 | ColorsMLintAutoFixBackground=C-6029312 # scarlet3 28 | Editor.VariableHighlighting.Color=C-11625978 # chameleon3 29 | Editor.NonlocalVariableHighlighting.TextColor=C-9265201 # skyblue1 30 | Editorhighlight-lines=C-13288387 # 31 | Editorhighlight-caret-row-boolean-color=C-11184301 # aluminium5 32 | EditorRightTextLimitLineColor=C-11775661 # 33 | # C/C++ 34 | Editor.Language.C.Color.keywords=C-7675340 # chameleon1 35 | Editor.Language.C.Color.preprocessor=C-5406808 # plum1 36 | Editor.Language.C.Color.char-literal=C-9265201 # skyblue1 37 | # Java 38 | Editor.Language.Java.Color.keywords=C-7675340 # chameleon1 39 | Editor.Language.Java.Color.char-literal=C-9265201 # skyblue1 40 | # VHDL 41 | Editor.Language.VHDL.Color.Colors_M_Keywords=C-7675340 # chameleon1 42 | Editor.Language.VHDL.Color.operator=C-1 # white 43 | # Verilog 44 | Editor.Language.Verilog.Color.operator=C-1 # white 45 | Editor.Language.Verilog.Color.Colors_M_Keywords=C-7675340 # chameleon1 46 | # XML/HTML 47 | Editor.Language.XML.Color.tag=C-9265201 # skyblue1 48 | Editor.Language.XML.Color.attribute=C-7675340 # chameleon1 49 | Editor.Language.XML.Color.operator=C-1967753 # 50 | Editor.Language.XML.Color.doctype=C-5406808 # plum1 51 | Editor.Language.XML.Color.pi-content=C-5406808 # plum1 52 | Editor.Language.XML.Color.cdata-section=C-5406808 # plum1 53 | -------------------------------------------------------------------------------- /screenshots/cobalt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/cobalt.png -------------------------------------------------------------------------------- /screenshots/darkmate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/darkmate.png -------------------------------------------------------------------------------- /screenshots/darksteel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/darksteel.png -------------------------------------------------------------------------------- /screenshots/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/default.png -------------------------------------------------------------------------------- /screenshots/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/matrix.png -------------------------------------------------------------------------------- /screenshots/monokai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/monokai.png -------------------------------------------------------------------------------- /screenshots/oblivion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/oblivion.png -------------------------------------------------------------------------------- /screenshots/solarized-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/solarized-dark.png -------------------------------------------------------------------------------- /screenshots/solarized-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/solarized-light.png -------------------------------------------------------------------------------- /screenshots/tango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/tango.png -------------------------------------------------------------------------------- /screenshots/vibrant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scottclowe/matlab-schemes/d7d2683d6522f395627295aef613b577836691ec/screenshots/vibrant.png -------------------------------------------------------------------------------- /solarized-dark.prf: -------------------------------------------------------------------------------- 1 | # Solarized Dark - MATLAB color scheme 2 | # Manually created on 2015-07-04 by Scott Lowe, based on the style guide of 3 | # http://ethanschoonover.com/solarized 4 | # To enable this color scheme in MATLAB use schemer_import, available at: 5 | # https://github.com/scottclowe/matlab-schemer 6 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 7 | ColorsUseSystem=Bfalse 8 | ColorsUseMLintAutoFixBackground=Btrue 9 | Editor.VariableHighlighting.Automatic=Btrue 10 | Editor.NonlocalVariableHighlighting=Btrue 11 | EditorCodepadHighVisible=Bfalse # no cell highlighting 12 | EditorCodeBlockDividers=Btrue # mark cells with line 13 | Editorhighlight-caret-row-boolean=Btrue 14 | EditorRightTextLineVisible=Btrue 15 | EditorRightTextLimitLineWidth=I1 16 | ColorsText=C-8153962 # base 0 17 | ColorsBackground=C-16766154 # base 03 18 | Colors_M_Keywords=C-3454186 # orange 19 | Colors_M_Comments=C-10981771 # base 01 20 | Colors_M_Strings=C-14251054 # blue 21 | Colors_M_UnterminatedStrings=C-13983336 # cyan 22 | Colors_M_SystemCommands=C-2935166 # magenta 23 | Colors_M_Errors=C-2346449 # red 24 | Colors_HTML_HTMLLinks=C-9670204 # violet 25 | Colors_M_Warnings=C-4880128 # yellow 26 | ColorsMLintAutoFixBackground=C-16304574 # base 02 27 | Editor.VariableHighlighting.Color=C-16304574 # base 02 28 | Editor.NonlocalVariableHighlighting.TextColor=C-8021760 # green 29 | Editorhighlight-lines=C-16766154 # base 03 30 | Editorhighlight-caret-row-boolean-color=C-16304574 # base 02 31 | EditorRightTextLimitLineColor=C-5723992 # matlab cell lines 32 | # MuPAD 33 | Editor.Language.MuPAD.Color.operator=C-8021760 # green 34 | Editor.Language.MuPAD.Color.function=C-4880128 # yellow 35 | Editor.Language.MuPAD.Color.constant=C-2935166 # magenta 36 | # TLC 37 | Editor.Language.TLC.Color.Colors_M_Keywords=C-8021760 # green 38 | # C/C++ 39 | Editor.Language.C.Color.preprocessor=C-8021760 # green 40 | Editor.Language.C.Color.char-literal=C-9670204 # violet 41 | # Java 42 | Editor.Language.Java.Color.char-literal=C-9670204 # violet 43 | # VHDL 44 | Editor.Language.VHDL.Color.operator=C-8021760 # green 45 | # Verilog 46 | Editor.Language.Verilog.Color.operator=C-8021760 # green 47 | # XML 48 | Editor.Language.XML.Color.tag=C-14251054 # blue 49 | Editor.Language.XML.Color.attribute=C-4880128 # yellow 50 | Editor.Language.XML.Color.operator=C-8021760 # green 51 | Editor.Language.XML.Color.value=C-13983336 # cyan 52 | Editor.Language.XML.Color.doctype=C-3454186 # orange 53 | Editor.Language.XML.Color.ref=C-9670204 # violet 54 | Editor.Language.XML.Color.pi-content=C-9670204 # violet 55 | Editor.Language.XML.Color.cdata-section=C-2935166 # magenta 56 | -------------------------------------------------------------------------------- /solarized-light.prf: -------------------------------------------------------------------------------- 1 | # Solarized Light - MATLAB color scheme 2 | # Manually created on 2015-07-04 by Scott Lowe, based on the style guide of 3 | # http://ethanschoonover.com/solarized 4 | # To enable this color scheme in MATLAB use schemer_import, available at: 5 | # https://github.com/scottclowe/matlab-schemer 6 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 7 | ColorsUseSystem=Bfalse 8 | ColorsUseMLintAutoFixBackground=Btrue 9 | Editor.VariableHighlighting.Automatic=Btrue 10 | Editor.NonlocalVariableHighlighting=Btrue 11 | EditorCodepadHighVisible=Bfalse # no cell highlighting 12 | EditorCodeBlockDividers=Btrue # mark cells with line 13 | Editorhighlight-caret-row-boolean=Btrue 14 | EditorRightTextLineVisible=Btrue 15 | EditorRightTextLimitLineWidth=I1 16 | ColorsText=C-10126461 # base 00 17 | ColorsBackground=C-133405 # base 3 18 | Colors_M_Keywords=C-3454186 # orange 19 | Colors_M_Comments=C-7102047 # base 1 20 | Colors_M_Strings=C-14251054 # blue 21 | Colors_M_UnterminatedStrings=C-13983336 # cyan 22 | Colors_M_SystemCommands=C-2935166 # magenta 23 | Colors_M_Errors=C-2346449 # red 24 | Colors_HTML_HTMLLinks=C-9670204 # violet 25 | Colors_M_Warnings=C-4880128 # yellow 26 | ColorsMLintAutoFixBackground=C-1120043 # base 2 27 | Editor.VariableHighlighting.Color=C-1120043 # base 2 28 | Editor.NonlocalVariableHighlighting.TextColor=C-8021760 # green 29 | Editorhighlight-lines=C-133405 # base 00 30 | Editorhighlight-caret-row-boolean-color=C-1120043 # base 2 31 | EditorRightTextLimitLineColor=C-5723992 # matlab cell lines 32 | # MuPAD 33 | Editor.Language.MuPAD.Color.operator=C-8021760 # green 34 | Editor.Language.MuPAD.Color.function=C-4880128 # yellow 35 | Editor.Language.MuPAD.Color.constant=C-2935166 # magenta 36 | # TLC 37 | Editor.Language.TLC.Color.Colors_M_Keywords=C-8021760 # green 38 | # C/C++ 39 | Editor.Language.C.Color.preprocessor=C-8021760 # green 40 | Editor.Language.C.Color.char-literal=C-9670204 # violet 41 | # Java 42 | Editor.Language.Java.Color.char-literal=C-9670204 # violet 43 | # VHDL 44 | Editor.Language.VHDL.Color.operator=C-8021760 # green 45 | # Verilog 46 | Editor.Language.Verilog.Color.operator=C-8021760 # green 47 | # XML 48 | Editor.Language.XML.Color.tag=C-14251054 # blue 49 | Editor.Language.XML.Color.attribute=C-4880128 # yellow 50 | Editor.Language.XML.Color.operator=C-8021760 # green 51 | Editor.Language.XML.Color.value=C-13983336 # cyan 52 | Editor.Language.XML.Color.doctype=C-3454186 # orange 53 | Editor.Language.XML.Color.ref=C-9670204 # violet 54 | Editor.Language.XML.Color.pi-content=C-9670204 # violet 55 | Editor.Language.XML.Color.cdata-section=C-2935166 # magenta 56 | -------------------------------------------------------------------------------- /tango.prf: -------------------------------------------------------------------------------- 1 | # Tango - MATLAB color scheme 2 | # Created by Scott Lowe, 2015-07-05, Modified 2016-04-08 3 | # Based on the colours specified for use in the Tango Project. 4 | # http://tango-project.org/ 5 | # To enable this color scheme in MATLAB use schemer_import, available at: 6 | # https://github.com/scottclowe/matlab-schemer 7 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 8 | # 9 | # Palette, taken from 10 | # https://en.wikipedia.org/wiki/Tango_Desktop_Project#Palette 11 | # | Light Medium Dark 12 | # --------------+------------------------------------ 13 | # Butter | -202417 -1190912 -3891200 14 | # Orange | -217282 -689920 -3253248 15 | # Chocolate | -1459858 -4096751 -7382782 16 | # Chameleon | -7675340 -9186794 -11625978 17 | # Sky Blue | -9265201 -13343324 -14660985 18 | # Plum | -5406808 -9088901 -10734234 19 | # Scarlet Red | -1103575 -3407872 -6029312 20 | # Aluminium (l) | -1118484 -2893873 -4538954 21 | # Aluminium (d) | -7828859 -11184301 -13749194 22 | ColorsUseSystem=Bfalse 23 | ColorsUseMLintAutoFixBackground=Btrue 24 | Editor.VariableHighlighting.Automatic=Btrue 25 | Editor.NonlocalVariableHighlighting=Btrue 26 | EditorCodepadHighVisible=Btrue 27 | EditorCodeBlockDividers=Btrue 28 | Editorhighlight-caret-row-boolean=Btrue 29 | EditorRightTextLineVisible=Btrue 30 | EditorRightTextLimitLineWidth=I1 31 | ColorsText=C-11184301 # aluminium-dark 32 | ColorsBackground=C-1 # white 33 | Colors_M_Keywords=C-6029312 # scarletred-dark 34 | Colors_M_Comments=C-9265201 # skyblue-light 35 | Colors_M_Strings=C-5406808 # plum-light 36 | Colors_M_UnterminatedStrings=C-13343324 # skyblue 37 | Colors_M_SystemCommands=C-4096751 # chocolate 38 | Colors_M_Errors=C-1103575 # scarletred-light 39 | Colors_HTML_HTMLLinks=C-13343324 # skyblue 40 | Colors_M_Warnings=C-217282 # orange-light 41 | ColorsMLintAutoFixBackground=C-4538954 # aluminium-light 42 | Editor.VariableHighlighting.Color=C-202417 # butter-light 43 | Editor.NonlocalVariableHighlighting.TextColor=C-11625978 # chameleon-dark 44 | Editorhighlight-lines=C-1118484 # aluminium-white 45 | Editorhighlight-caret-row-boolean-color=C-2893873 # aluminium-vlight 46 | EditorRightTextLimitLineColor=C-7828859 # aluminium 47 | # C/C++ 48 | Editor.Language.C.Color.keywords=C-11625978 49 | Editor.Language.C.Color.char-literal=C-3891200 50 | # Java 51 | Editor.Language.Java.Color.keywords=C-11625978 52 | Editor.Language.Java.Color.char-literal=C-3891200 53 | # VHDL 54 | Editor.Language.VHDL.Color.operator=C-11625978 55 | # Verilog 56 | Editor.Language.Verilog.Color.operator=C-11625978 57 | # XML/HTML 58 | Editor.Language.XML.Color.error=C-1103575 59 | Editor.Language.XML.Color.tag=C-6029312 60 | Editor.Language.XML.Color.attribute=C-11625978 61 | Editor.Language.XML.Color.operator=C-1190912 62 | Editor.Language.XML.Color.value=C-4096751 63 | Editor.Language.XML.Color.doctype=C-689920 64 | Editor.Language.XML.Color.ref=C-3891200 65 | Editor.Language.XML.Color.pi-content=C-13343324 66 | Editor.Language.XML.Color.cdata-section=C-5406808 67 | -------------------------------------------------------------------------------- /vibrant.prf: -------------------------------------------------------------------------------- 1 | # Vibrant - MATLAB color scheme 2 | # Created by Scott Lowe, 2015-07-12 3 | # Based on the GTK stylesheet "Vibrant", by Lateef Alabi-Oki. 4 | # https://wiki.gnome.org/Projects/GtkSourceView/StyleSchemes 5 | # To enable this color scheme in MATLAB use schemer_import, available at: 6 | # https://github.com/scottclowe/matlab-schemer 7 | # https://www.mathworks.com/matlabcentral/fileexchange/53862-matlab-schemer 8 | ColorsUseSystem=Bfalse 9 | ColorsUseMLintAutoFixBackground=Btrue 10 | Editor.VariableHighlighting.Automatic=Btrue 11 | Editor.NonlocalVariableHighlighting=Btrue 12 | EditorCodepadHighVisible=Btrue 13 | EditorCodeBlockDividers=Btrue 14 | Editorhighlight-caret-row-boolean=Btrue 15 | EditorRightTextLineVisible=Btrue 16 | EditorRightTextLimitLineWidth=I1 17 | ColorsText=C-11711155 # text_fg 18 | ColorsBackground=C-1 # white 19 | Colors_M_Keywords=C-6815487 # accent_deep_red 20 | Colors_M_Comments=C-183551 # accent_red 21 | Colors_M_Strings=C-16684599 # accent_blue_base 22 | Colors_M_UnterminatedStrings=C-16698473 # accent_blue_shadow 23 | Colors_M_SystemCommands=C-10092340 # accent_dark_violet 24 | Colors_M_Errors=C-2883584 # accent_red_base 25 | Colors_HTML_HTMLLinks=C-16766147 # ubuntu_toner 26 | Colors_M_Warnings=C-292096 # orange_base 27 | ColorsMLintAutoFixBackground=C-140901 # human_highlight 28 | Editor.VariableHighlighting.Color=C-256 # yellow 29 | Editor.NonlocalVariableHighlighting.TextColor=C-13395712 # accent_green_base 30 | Editorhighlight-lines=C-66341 # custom 31 | Editorhighlight-caret-row-boolean-color=C-131175 # accent_yellow_highlight 32 | EditorRightTextLimitLineColor=C-140901 # human_highlight 33 | --------------------------------------------------------------------------------