Add user-defined keyword ability for some supported programming languages

Add new SubStyles and their available keyword lists to specific languages:
- Enable 8 Scintilla's SubStyles (each), which allow for new keyword lists and styles for the languages with SubStyles available: ActionScript, ASP, Bash, C, C++, C#, GDScript, Go, HTML, Java, JavaScript (standalone and embedded), JSP, Lua, PHP, Python, Resource (RC), Swift, TypeScript, and XML.
- The new SubStyles have been added to `langs.model.xml`, `stylers.model.xml`, and the themes, which means users can just use the StyleConfigurator for the SubStyles, just like they do for the original Styles.

Fix #15520, close #15537
This commit is contained in:
PeterCJ 2024-08-11 15:31:07 -07:00 committed by Don Ho
parent 2d79edca95
commit 9e4290094d
28 changed files with 2925 additions and 70 deletions

View File

@ -59,6 +59,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -77,6 +85,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -96,6 +112,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -113,6 +137,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -131,6 +163,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="rc" desc="RC" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -149,6 +189,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -216,6 +264,14 @@ Credits:
<WordsStyle name="CDATA" styleID="17" fgColor="FF82B0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="VALUE" styleID="19" fgColor="FF8080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="FF3A83" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="37A8ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="37A8ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="37A8ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="37A8ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="FF0080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -230,8 +286,16 @@ Credits:
<WordsStyle name="COMMENT" styleID="124" fgColor="666666" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="666666" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6"></WordsStyle>
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7"></WordsStyle>
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8"></WordsStyle>
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1"></WordsStyle>
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2"></WordsStyle>
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3"></WordsStyle>
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4"></WordsStyle>
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5"></WordsStyle>
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="BDAF9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="NUMBER" styleID="45" fgColor="FF3A83" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="WORD" styleID="46" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -248,6 +312,14 @@ Credits:
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="FFFF80" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="FF0080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10">param @projectDescription projectDescription @param</WordsStyle>
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF0080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="37A3ED" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="2A211C" fontName="" fontStyle="0" fontSize="" />
@ -263,7 +335,7 @@ Credits:
<WordsStyle name="COMPACT IRI" styleID="10" fgColor="0000FF" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEYWORD" styleID="11" fgColor="18AF8A" bgColor="2A211C" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"/>
<WordsStyle name="LD KEYWORD" styleID="12" fgColor="FF0000" bgColor="2A211C" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
<WordsStyle name="ERROR" styleID="13" fgColor="FFFF80" bgColor="FF0000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ERROR" styleID="13" fgColor="FFFF80" bgColor="FF0000" fontName="" fontStyle="0" fontSize="" />
</LexerType>
<LexerType name="asp" desc="asp" ext="asp">
<WordsStyle name="DEFAULT" styleID="81" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -275,6 +347,14 @@ Credits:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="EB939A" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="">
<WordsStyle name="XMLSTART" styleID="12" fgColor="FF0080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -292,6 +372,14 @@ Credits:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="55E439" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="CDATA" styleID="17" fgColor="FF3A83" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="FF3A83" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -456,6 +544,14 @@ Credits:
<WordsStyle name="COMMENTBLOCK" styleID="12" fgColor="1E9AE0" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="STRINGEOL" styleID="12" fgColor="55E439" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="BUILTINS" styleID="14" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="instre2" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFAA00" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -487,6 +583,10 @@ Credits:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -538,6 +638,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="FFFF80" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="FF0080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF0000" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="E5C138" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
@ -554,6 +662,14 @@ Credits:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE Q" styleID="13" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="BDAE9D" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="2A211C" fontName="" fontStyle="0" fontSize="10" />

View File

@ -61,6 +61,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -79,6 +87,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -98,6 +114,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -115,6 +139,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -133,6 +165,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="rc" desc="RC" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -151,6 +191,22 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -218,6 +274,14 @@ Credits:
<WordsStyle name="CDATA" styleID="17" fgColor="D8FA3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="VALUE" styleID="19" fgColor="D8FA3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="D8FA3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -231,8 +295,16 @@ Credits:
<WordsStyle name="COMMENT" styleID="124" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="NUMBER" styleID="45" fgColor="D8FA3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="WORD" styleID="46" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -246,6 +318,14 @@ Credits:
<WordsStyle name="COMMENT" styleID="42" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="0C1021" fontName="" fontStyle="0" fontSize="" />
@ -273,6 +353,14 @@ Credits:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="">
<WordsStyle name="XMLSTART" styleID="12" fgColor="7F90AA" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -290,6 +378,14 @@ Credits:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="61CE3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="CDATA" styleID="17" fgColor="D8FA3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="D8FA3C" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -485,6 +581,10 @@ Credits:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -536,6 +636,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
@ -552,6 +660,14 @@ Credits:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE Q" styleID="13" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" fontSize="10" />

View File

@ -61,6 +61,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="8996A8" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -79,6 +87,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="8996A8" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -98,6 +114,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -115,6 +139,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="8996A8" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -133,6 +165,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="rc" desc="RC" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="8996A8" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -151,6 +191,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="8996A8" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -218,6 +266,14 @@ Credits:
<WordsStyle name="CDATA" styleID="17" fgColor="DA5659" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="VALUE" styleID="19" fgColor="DA5659" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="DA5659" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -231,8 +287,16 @@ Credits:
<WordsStyle name="COMMENT" styleID="124" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="NUMBER" styleID="45" fgColor="DA5659" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="WORD" styleID="46" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -246,6 +310,14 @@ Credits:
<WordsStyle name="COMMENT" styleID="42" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="" />
@ -273,6 +345,14 @@ Credits:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="D77261" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="B3935C" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="">
<WordsStyle name="XMLSTART" styleID="12" fgColor="494949" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -290,6 +370,14 @@ Credits:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="7CA563" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="CDATA" styleID="17" fgColor="DA5659" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="DA5659" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="6D4C2F" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -485,6 +573,10 @@ Credits:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -536,6 +628,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="679D47" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
@ -552,6 +652,14 @@ Credits:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE Q" styleID="13" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F1E694" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="1A0F0B" fontName="" fontStyle="0" fontSize="10" />

View File

@ -39,6 +39,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -81,6 +89,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="autoit" desc="autoIt" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -114,6 +130,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="BACKTICKS" styleID="11" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -145,6 +169,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -238,6 +270,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
@ -258,6 +298,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="css" desc="CSS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -361,6 +409,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="GUI4CLI" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -408,6 +464,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="CDATA" styleID="17" fgColor="E6C74E" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="E6C74E" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="E6C74E" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="A88AB6" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="A88AB6" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="A88AB6" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="A88AB6" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -447,8 +511,16 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="E6C74E" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -465,6 +537,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -528,6 +608,10 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="type6" />
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="LABEL" styleID="20" fgColor="A88AB6" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -664,6 +748,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMENT" styleID="124" fgColor="808080" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="808080" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="8F8F8F" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -792,6 +884,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="666666" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="9865A8" bgColor="2E2E2E" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
@ -944,6 +1044,14 @@ Installation : Copy this file to "%APPDATA%\Notepad++\themes" and in a portable
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="F57F3D" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="E6C74E" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="FF5757" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C7C7C7" bgColor="2E2E2E" fontName="" fontStyle="0" fontSize="" />

View File

@ -26,6 +26,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gdscript" desc="GDScript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="2A2A2A" fontName="" fontStyle="0" fontSize="" />
@ -45,6 +53,14 @@ License: GPL2
<WordsStyle name="WORD2" styleID="14" fgColor="FF80C0" bgColor="2A2A2A" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
<WordsStyle name="ANNOTATION" styleID="15" fgColor="FFFF80" bgColor="2A2A2A" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="NODEPATH" styleID="16" fgColor="008040" bgColor="2A2A2A" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF8080" bgColor="2A2A2A" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF8080" bgColor="2A2A2A" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF8080" bgColor="2A2A2A" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF8080" bgColor="2A2A2A" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF8080" bgColor="2A2A2A" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF8080" bgColor="2A2A2A" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF8080" bgColor="2A2A2A" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF8080" bgColor="2A2A2A" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -80,6 +96,14 @@ License: GPL2
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASP SYMBOL" styleID="15" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPT TYPE" styleID="16" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="asm" desc="Assembly" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -174,6 +198,14 @@ License: GPL2
<WordsStyle name="BACKTICKS" styleID="11" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -221,6 +253,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -241,6 +281,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -261,6 +309,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -538,6 +594,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="GUI4CLI" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -602,6 +666,14 @@ License: GPL2
<WordsStyle name="CDATA" styleID="17" fgColor="C89191" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="CFBFAF" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ihex" desc="Intel HEX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -663,6 +735,14 @@ License: GPL2
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -676,6 +756,14 @@ License: GPL2
<WordsStyle name="COMMENT" styleID="42" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT LINE" styleID="43" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC" styleID="44" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript.js" desc="JavaScript" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -695,6 +783,14 @@ License: GPL2
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -773,6 +869,10 @@ License: GPL2
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="type6" />
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="LABEL" styleID="20" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -999,6 +1099,14 @@ License: GPL2
<WordsStyle name="COMMENT" styleID="124" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT LINE" styleID="125" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="9F9D6D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -1153,6 +1261,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="rebol" desc="REBOL" ext="">
<WordsStyle name="DEFAULT" styleID="32" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -1347,6 +1463,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -1441,6 +1565,14 @@ License: GPL2
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -1526,6 +1658,14 @@ License: GPL2
<WordsStyle name="SGML DEFAULT" styleID="21" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="C89191" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="CFBFAF" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="BEC89E" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="BEC89E" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="BEC89E" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="BEC89E" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="BEC89E" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="BEC89E" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="BEC89E" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="BEC89E" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />

View File

@ -30,6 +30,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="C0C0C0" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -48,6 +56,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="C0C0C0" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -67,6 +83,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -84,6 +108,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="EDF8F9" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -102,6 +134,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="raku" desc="Raku" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="" fontSize="" />
@ -152,6 +192,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="EDF8F9" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -219,6 +267,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="CDATA" styleID="17" fgColor="C0C0C0" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="00FFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="0080FF" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -233,8 +289,16 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMENT" styleID="124" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="C0C0C0" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="00FFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="00FFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="00FFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="00FFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="00FFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="00FFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="00FFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="00FFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -248,6 +312,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMENT" styleID="42" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="772CB7" bgColor="070707" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -275,6 +347,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="FFFFFF" bgColor="C4F9FD" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="FFFFFF" bgColor="FFC000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="">
<WordsStyle name="XMLSTART" styleID="12" fgColor="00FF80" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -292,6 +372,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="C0C0C0" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="0080FF" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -467,6 +555,10 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="0000A0" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="0000A0" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="0000A0" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -514,6 +606,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="00FF00" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -530,6 +630,14 @@ https://notepad-plus-plus.org/donate/
<WordsStyle name="BACKTICKS" styleID="11" fgColor="804040" bgColor="E1FFF3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="FF6600" bgColor="FF0000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="99CC99" bgColor="0000FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />

View File

@ -26,6 +26,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -51,6 +59,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="000000" bgColor="C4F9FD" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="000000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="000000" bgColor="FFC000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="000080" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="000080" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="000080" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="000080" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="000080" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="000080" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="000080" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="000080" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="asm" desc="Assembly" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -101,6 +117,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="BACKTICKS" styleID="11" fgColor="804040" bgColor="E1FFF3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="0000FF" bgColor="FF0000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="FF0000" bgColor="0000FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -130,6 +154,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="804000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -148,6 +180,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="804000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -166,6 +206,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -280,6 +328,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="haskell" desc="Haskell" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -315,6 +371,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="CDATA" styleID="17" fgColor="FF8000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="FF8000" bgColor="FEFDE0" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="000000" bgColor="FEFDE0" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -354,8 +418,16 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -369,6 +441,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMENT" styleID="42" fgColor="008000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="008000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="000080" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="000080" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="000080" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="000080" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="000080" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="000080" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="000080" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="000080" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -433,6 +513,10 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="0000A0" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="0000A0" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="0000A0" bgColor="FFB0FF" fontName="" fontStyle="3" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -563,6 +647,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMENT" styleID="124" fgColor="008000" bgColor="FEFCF5" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="008000" bgColor="FEFCF5" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="8000FF" bgColor="FEFCF5" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -659,6 +751,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFB0FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
@ -802,6 +902,14 @@ so your enhanced file can be included in Notepad++ future release.
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="000000" bgColor="A6CAF0" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="FF8000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="000000" bgColor="FEFDE0" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="FF0000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFB0FF" fontName="" fontStyle="0" fontSize="" />

View File

@ -5,15 +5,15 @@ Style Name: HotFudgeSundae
Description: HotFudgeSundae theme for Notepad++.
Hues from photographs of hot fudge sundaes.
Hot fudge, some ice cream peeking out, drizzled with
caramel, nuts, and sprinkles with a cherry on top.
Supported languages: All the languages supported by release 6.7.4
caramel, nuts, and sprinkles with a cherry on top.
Supported languages: All the languages supported by release 6.7.4
Created by: Paul Neubauer (PaulRNeubauer at gmail dot com)
Released: 4/17/2012
Last Modified: 2/20/2015
Improved contrast in comments.
Added support for CoffeeScript.
2023-09-30: update Perl support.
License: Feel free to modify this theme.
License: Feel free to modify this theme.
This theme is available under the terms of the Creative Commons
Attribution 3.0 Unported License. You are free to to copy,
distribute and transmit the work, to adapt the work, or to make
@ -21,7 +21,7 @@ License: Feel free to modify this theme.
attribute the work in the manner specified by the author or
licensor (but not in any way that suggests that they endorse you
or your use of the work). See
http://creativecommons.org/licenses/by/3.0/
http://creativecommons.org/licenses/by/3.0/
for a legal description of the license terms. Briefly, this
means: please note in derivatives of this theme, that they are
based on my work. Of course, if you are using this file as no
@ -56,6 +56,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF00FF" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -96,6 +104,14 @@ Installation:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="CFBA28" bgColor="352319" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="C11418" bgColor="9A7E13" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="D92B10" bgColor="352319" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="4AD231" bgColor="352319" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="4AD231" bgColor="352319" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="4AD231" bgColor="352319" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="4AD231" bgColor="352319" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="4AD231" bgColor="352319" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="4AD231" bgColor="352319" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="4AD231" bgColor="352319" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="4AD231" bgColor="352319" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="autoit" desc="autoIt" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -129,6 +145,14 @@ Installation:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="98AE66" bgColor="602F1A" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="C11418" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -158,6 +182,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF00FF" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -249,6 +281,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF00FF" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="C11418" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -267,6 +307,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF00FF" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="css" desc="CSS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -370,6 +418,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF00FF" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="GUI4CLI" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -417,6 +473,14 @@ Installation:
<WordsStyle name="CDATA" styleID="17" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="7578DB" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="0088CE" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="0088CE" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="0088CE" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="0088CE" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -456,8 +520,16 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="0088CE" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF00FF" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="AFA7D6" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="CFBA28" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -473,6 +545,14 @@ Installation:
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="0088CE" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="">param @projectDescription projectDescription @param</WordsStyle>
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF00FF" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -488,7 +568,7 @@ Installation:
<WordsStyle name="COMPACT IRI" styleID="10" fgColor="0000FF" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="KEYWORD" styleID="11" fgColor="18AF8A" bgColor="2B0F01" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"/>
<WordsStyle name="LD KEYWORD" styleID="12" fgColor="FF0000" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="instre2" />
<WordsStyle name="ERROR" styleID="13" fgColor="FFFF80" bgColor="FF0000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ERROR" styleID="13" fgColor="FFFF80" bgColor="FF0000" fontName="" fontStyle="0" fontSize="" />
</LexerType>
<LexerType name="kix" desc="KiXtart" ext="">
<WordsStyle name="DEFAULT" styleID="31" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -535,6 +615,10 @@ Installation:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="7578DB" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="7578DB" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="7578DB" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -671,6 +755,14 @@ Installation:
<WordsStyle name="COMMENT" styleID="124" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="D6C479" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -798,6 +890,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="208008" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FF00FF" bgColor="2B0F01" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="4AD231" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
@ -967,6 +1067,14 @@ Installation:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="BE211A" bgColor="77610F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="BCBB80" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="7578DB" bgColor="2B0F01" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="B7975D" bgColor="2B0F01" fontName="" fontStyle="0" fontSize="" />

View File

@ -61,6 +61,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -79,6 +87,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -98,6 +114,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -115,6 +139,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -133,6 +165,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="raku" desc="Raku" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="" />
@ -183,6 +223,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -250,6 +298,14 @@ Credits:
<WordsStyle name="CDATA" styleID="17" fgColor="E98800" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="VALUE" styleID="19" fgColor="E98800" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="E98800" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="A65EFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="A65EFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="A65EFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="A65EFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -263,8 +319,16 @@ Credits:
<WordsStyle name="COMMENT" styleID="124" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="A8B3AB" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="NUMBER" styleID="45" fgColor="E98800" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="WORD" styleID="46" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -278,6 +342,14 @@ Credits:
<WordsStyle name="COMMENT" styleID="42" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="A8B3AB" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="A8B3AB" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="A8B3AB" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="A8B3AB" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="A8B3AB" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="A8B3AB" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="A8B3AB" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="A8B3AB" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="222C28" fontName="" fontStyle="0" fontSize="" />
@ -305,6 +377,14 @@ Credits:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="C87500" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="A39E64" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="">
<WordsStyle name="XMLSTART" styleID="12" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -322,6 +402,14 @@ Credits:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="CDATA" styleID="17" fgColor="E98800" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="E98800" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="909993" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -489,6 +577,10 @@ Credits:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -540,6 +632,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="666C68" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
@ -556,6 +656,14 @@ Credits:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE Q" styleID="13" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="C23B00" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="222C28" fontName="" fontStyle="0" fontSize="10" />

View File

@ -61,6 +61,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -79,6 +87,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -98,6 +114,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -115,6 +139,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -133,6 +165,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="raku" desc="Raku" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="0" fontSize="" />
@ -183,6 +223,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -250,6 +298,14 @@ Credits:
<WordsStyle name="CDATA" styleID="17" fgColor="AE81FF" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="VALUE" styleID="19" fgColor="AE81FF" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="AE81FF" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -263,8 +319,16 @@ Credits:
<WordsStyle name="COMMENT" styleID="124" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="NUMBER" styleID="45" fgColor="AE81FF" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="WORD" styleID="46" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -278,6 +342,14 @@ Credits:
<WordsStyle name="COMMENT" styleID="42" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="272822" fontName="" fontStyle="0" fontSize="" />
@ -305,6 +377,14 @@ Credits:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="F92672" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="">
<WordsStyle name="XMLSTART" styleID="12" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -322,6 +402,14 @@ Credits:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="E6DB74" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="CDATA" styleID="17" fgColor="AE81FF" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="AE81FF" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="A6E22E" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -489,6 +577,10 @@ Credits:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -540,6 +632,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="75715E" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
@ -556,6 +656,14 @@ Credits:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="HERE Q" styleID="13" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="66D9EF" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F2" bgColor="272822" fontName="" fontStyle="" fontSize="10" />

View File

@ -57,6 +57,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="981f0e" bgColor="fdd64a" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -97,6 +105,14 @@ Installation:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="efc53d" bgColor="627353" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="3e2c04" bgColor="ccc457" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="ccc457" bgColor="627353" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="cbe248" bgColor="627353" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="cbe248" bgColor="627353" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="cbe248" bgColor="627353" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="cbe248" bgColor="627353" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="cbe248" bgColor="627353" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="cbe248" bgColor="627353" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="cbe248" bgColor="627353" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="cbe248" bgColor="627353" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="autoit" desc="autoIt" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -130,6 +146,14 @@ Installation:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="bfb8c4" bgColor="7e8a28" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="FFBBAA" bgColor="7C7411" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -159,6 +183,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="981f0e" bgColor="fdd64a" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -250,6 +282,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="981f0e" bgColor="fdd64a" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFBBAA" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -268,6 +308,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="981f0e" bgColor="fdd64a" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="css" desc="CSS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -371,6 +419,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="981f0e" bgColor="fdd64a" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="GUI4CLI" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -418,6 +474,14 @@ Installation:
<WordsStyle name="CDATA" styleID="17" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="561e0f" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="d3d09d" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="d3d09d" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="d3d09d" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="d3d09d" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -457,8 +521,16 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="afcf90" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="981f0e" bgColor="fdd64a" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="efc53d" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -474,6 +546,14 @@ Installation:
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="afcf90" bgColor="58693D" fontName="" fontStyle="3" fontSize="">param @projectDescription projectDescription @param</WordsStyle>
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="981f0e" bgColor="fdd64a" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -536,6 +616,10 @@ Installation:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="561e0f" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="561e0f" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="561e0f" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -672,6 +756,14 @@ Installation:
<WordsStyle name="COMMENT" styleID="124" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="ffee88" bgColor="58693D" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -798,6 +890,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="2a390e" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="981f0e" bgColor="fdd64a" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="cbe248" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
@ -967,6 +1067,14 @@ Installation:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="ffdc87" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="561e0f" bgColor="58693D" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="162504" bgColor="58693D" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="f2c476" bgColor="58693D" fontName="" fontStyle="0" fontSize="" />

View File

@ -54,6 +54,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="BCBCBC" bgColor="5F0000" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -94,6 +102,14 @@ Installation:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="000000" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="870087" bgColor="afaf87" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="D92B10" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="804040" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="804040" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="804040" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="804040" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="804040" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="804040" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="804040" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="804040" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="autoit" desc="autoIt" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -127,6 +143,14 @@ Installation:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="C00058" bgColor="CDB38B" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="870087" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -156,6 +180,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="BCBCBC" bgColor="5F0000" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -247,6 +279,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="BCBCBC" bgColor="5F0000" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="870087" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -265,6 +305,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="BCBCBC" bgColor="5F0000" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="css" desc="CSS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -368,6 +416,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="BCBCBC" bgColor="5F0000" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="GUI4CLI" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -415,6 +471,14 @@ Installation:
<WordsStyle name="CDATA" styleID="17" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="3b4092" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -454,8 +518,16 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="BCBCBC" bgColor="5F0000" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="106060" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -471,6 +543,14 @@ Installation:
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="3" fontSize="">param @projectDescription projectDescription @param</WordsStyle>
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="BCBCBC" bgColor="5F0000" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -533,6 +613,10 @@ Installation:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="3b4092" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="3b4092" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="3b4092" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -669,6 +753,14 @@ Installation:
<WordsStyle name="COMMENT" styleID="124" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="010101" bgColor="BA9C80" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -795,6 +887,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="181880" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="BCBCBC" bgColor="5F0000" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="804040" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
@ -964,6 +1064,14 @@ Installation:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="000000" bgColor="AFAF87" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="C00058" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="3b4092" bgColor="BA9C80" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="1E8B47" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="BA9C80" fontName="" fontStyle="0" fontSize="" />

View File

@ -31,6 +31,14 @@ Notepad++ Custom Style
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -56,6 +64,14 @@ Notepad++ Custom Style
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="D955C1" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="D955C1" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="asm" desc="Assembly" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -106,6 +122,14 @@ Notepad++ Custom Style
<WordsStyle name="BACKTICKS" styleID="11" fgColor="D39745" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="FF8409" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="EC7600" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="B7C8D9" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="B7C8D9" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="B7C8D9" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="B7C8D9" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -135,6 +159,14 @@ Notepad++ Custom Style
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="A082BD" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -153,6 +185,14 @@ Notepad++ Custom Style
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="A082BD" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -171,6 +211,14 @@ Notepad++ Custom Style
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -285,6 +333,14 @@ Notepad++ Custom Style
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="haskell" desc="Haskell" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -320,6 +376,14 @@ Notepad++ Custom Style
<WordsStyle name="CDATA" styleID="17" fgColor="D0D2B5" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="FF8000" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="BBBBBB" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="8CBBAD" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="8CBBAD" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="8CBBAD" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="8CBBAD" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -359,8 +423,16 @@ Notepad++ Custom Style
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="FFCD22" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -374,6 +446,14 @@ Notepad++ Custom Style
<WordsStyle name="COMMENT" styleID="42" fgColor="818E96" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="818E96" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="kix" desc="KiXtart" ext="">
<WordsStyle name="DEFAULT" styleID="31" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -419,6 +499,10 @@ Notepad++ Custom Style
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="678CB1" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="678CB1" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="678CB1" bgColor="293134" fontName="" fontStyle="0" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -553,6 +637,14 @@ Notepad++ Custom Style
<WordsStyle name="COMMENT" styleID="124" fgColor="66747B" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="66747B" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="E8E2B7" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="powershell" desc="PowerShell" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -661,6 +753,14 @@ Notepad++ Custom Style
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="6C788C" bgColor="293134" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="93C763" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
@ -817,6 +917,14 @@ Notepad++ Custom Style
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="D39745" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="D5E6F0" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="BBBBBB" bgColor="293134" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="B3B689" bgColor="293134" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="E0E2E4" bgColor="293134" fontName="" fontStyle="0" fontSize="" />

View File

@ -61,6 +61,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -79,6 +87,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -98,6 +114,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -115,6 +139,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -133,6 +165,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="raku" desc="Raku" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="" />
@ -183,6 +223,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -250,6 +298,14 @@ Credits:
<WordsStyle name="CDATA" styleID="17" fgColor="FF3A83" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="VALUE" styleID="19" fgColor="FF3A83" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="FF3A83" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -263,8 +319,16 @@ Credits:
<WordsStyle name="COMMENT" styleID="124" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="NUMBER" styleID="45" fgColor="FF3A83" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="WORD" styleID="46" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -278,6 +342,14 @@ Credits:
<WordsStyle name="COMMENT" styleID="42" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="0B161D" fontName="" fontStyle="0" fontSize="" />
@ -305,6 +377,14 @@ Credits:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="EB939A" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="FFAA00" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="">
<WordsStyle name="XMLSTART" styleID="12" fgColor="9EFFFF" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -322,6 +402,14 @@ Credits:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="55E439" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="CDATA" styleID="17" fgColor="FF3A83" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="FF3A83" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="EFE900" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -501,6 +589,10 @@ Credits:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -552,6 +644,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="1E9AE0" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
@ -568,6 +668,14 @@ Credits:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE Q" styleID="13" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F6F080" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="0B161D" fontName="" fontStyle="0" fontSize="10" />

View File

@ -56,6 +56,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -74,6 +82,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -93,6 +109,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -110,6 +134,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -128,6 +160,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="raku" desc="Raku" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="" fontSize="" />
@ -161,7 +201,7 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="GRAMMAR" styleID="27" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CLASS" styleID="28" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
</LexerType>
<LexerType name="rc" desc="RC" ext="">
<LexerType name="rc" desc="RC" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="DEFAULT" styleID="11" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="INSTRUCTION WORD" styleID="5" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" />
@ -178,6 +218,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -245,6 +293,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="CDATA" styleID="17" fgColor="8080C0" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="800080" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="7BD827" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="7BD827" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="7BD827" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="7BD827" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="F0804F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="F0804F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="F0804F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="F0804F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -258,8 +314,16 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT" styleID="124" fgColor="3A8BDA" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="3A8BDA" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="F0804F" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="E6A82D" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="E6A82D" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="E6A82D" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="E6A82D" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="E6A82D" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="E6A82D" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="E6A82D" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="E6A82D" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="FF00FF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="8DB0D3" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -273,6 +337,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT" styleID="42" fgColor="3A8BDA" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="3A8BDA" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="3A8BDA" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -300,6 +372,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="">
<WordsStyle name="XMLSTART" styleID="12" fgColor="FF00FF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -317,6 +397,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="FFFF80" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="800080" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="7BC22F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="7BC22F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="7BC22F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="7BC22F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="7BC22F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="7BC22F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="7BC22F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="7BC22F" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -484,6 +572,10 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -531,6 +623,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
@ -547,6 +647,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="BACKTICKS" styleID="11" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="112435" fontName="" fontStyle="0" fontSize="" />

View File

@ -65,6 +65,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -105,6 +113,14 @@ Installation:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="B58900" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="DC322F" bgColor="E8DFC6" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="CB4B16" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="859900" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="859900" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="859900" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="859900" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="859900" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="859900" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="859900" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="859900" bgColor="E8DFC6" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="autoit" desc="autoIt" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -138,6 +154,14 @@ Installation:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="CB4B16" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="DC322F" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -167,6 +191,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -258,6 +290,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="DC322F" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -276,6 +316,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="css" desc="CSS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -379,6 +427,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="GUI4CLI" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -426,6 +482,14 @@ Installation:
<WordsStyle name="CDATA" styleID="17" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="6C71C4" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="268BD2" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="268BD2" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="268BD2" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="268BD2" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -465,8 +529,16 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="268BD2" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="B58900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -482,6 +554,14 @@ Installation:
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="268BD2" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="">param @projectDescription projectDescription @param</WordsStyle>
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -544,6 +624,10 @@ Installation:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="6C71C4" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="6C71C4" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="6C71C4" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -680,6 +764,14 @@ Installation:
<WordsStyle name="COMMENT" styleID="124" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="586E75" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -806,6 +898,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="93A1A1" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="FDF6E3" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
@ -975,6 +1075,14 @@ Installation:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="2AA198" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="6C71C4" bgColor="FDF6E3" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="657B83" bgColor="FDF6E3" fontName="" fontStyle="0" fontSize="" />

View File

@ -65,6 +65,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="859900" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -105,6 +113,14 @@ Installation:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="B58900" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="DC322F" bgColor="083C4B" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="CB4B16" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="859900" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="859900" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="859900" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="859900" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="859900" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="859900" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="859900" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="859900" bgColor="083C4B" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="autoit" desc="autoIt" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -183,6 +199,14 @@ Installation:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="CB4B16" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="DC322F" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -228,6 +252,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -319,6 +351,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="DC322F" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -337,6 +377,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="css" desc="CSS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -513,6 +561,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="GUI4CLI" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -577,6 +633,14 @@ Installation:
<WordsStyle name="CDATA" styleID="17" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="6C71C4" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="268BD2" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="268BD2" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="268BD2" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="268BD2" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -637,8 +701,16 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="268BD2" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="B58900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -654,6 +726,14 @@ Installation:
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="268BD2" bgColor="002B36" fontName="" fontStyle="3" fontSize="">param @projectDescription projectDescription @param</WordsStyle>
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript.js" desc="JavaScript" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -673,6 +753,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="002B36" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -750,6 +838,10 @@ Installation:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="6C71C4" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="6C71C4" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="6C71C4" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -958,6 +1050,14 @@ Installation:
<WordsStyle name="COMMENT" styleID="124" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="93A1A1" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="208" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -1101,6 +1201,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="586E75" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="859900" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="D33682" bgColor="002B36" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="859900" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
@ -1357,6 +1465,14 @@ Installation:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="2AA198" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="6C71C4" bgColor="002B36" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="839496" bgColor="002B36" fontName="" fontStyle="0" fontSize="" />

View File

@ -62,6 +62,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="8996A8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
@ -80,6 +88,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="8996A8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
@ -99,6 +115,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
@ -116,6 +140,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="8996A8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
@ -134,6 +166,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="raku" desc="Raku" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="" />
@ -184,6 +224,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="8996A8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
@ -251,6 +299,14 @@ Credits:
<WordsStyle name="CDATA" styleID="17" fgColor="CF6A4C" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="VALUE" styleID="19" fgColor="CF6A4C" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="CF6A4C" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="9B703F" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="9B703F" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="9B703F" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="9B703F" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="9B703F" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="9B703F" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="9B703F" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="9B703F" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
@ -264,8 +320,16 @@ Credits:
<WordsStyle name="COMMENT" styleID="124" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="NUMBER" styleID="45" fgColor="CF6A4C" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="WORD" styleID="46" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
@ -279,6 +343,14 @@ Credits:
<WordsStyle name="COMMENT" styleID="42" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="141414" fontName="" fontStyle="0" fontSize="" />
@ -306,6 +378,14 @@ Credits:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="CF6A4C" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="CDA869" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="wpl">
<WordsStyle name="XMLSTART" styleID="12" fgColor="494949" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
@ -323,6 +403,14 @@ Credits:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="8F9D6A" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="CDATA" styleID="17" fgColor="CF6A4C" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="ENTITY" styleID="10" fgColor="CF6A4C" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="CCCCCC" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="CCCCCC" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="CCCCCC" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="CCCCCC" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="CCCCCC" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="CCCCCC" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="CCCCCC" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="CCCCCC" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
@ -490,6 +578,10 @@ Credits:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="type4"/>
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="type5"/>
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="type6"/>
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
@ -541,6 +633,14 @@ Credits:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="5F5A60" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="po">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10"/>
@ -557,6 +657,14 @@ Credits:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="8F9D6A" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="8F9D6A" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="HERE Q" styleID="13" fgColor="8F9D6A" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="F9EE98" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="8996A8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="8996A8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="8996A8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="8996A8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="F8F8F8" bgColor="141414" fontName="" fontStyle="0" fontSize="10" />

View File

@ -37,6 +37,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="1" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="EDF8F9" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -55,6 +63,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="1" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="go" desc="Go" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="EDF8F9" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -74,6 +90,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="1" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="java" desc="Java" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -91,6 +115,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="1" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="EDF8F9" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -109,6 +141,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="1" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="raku" desc="Raku" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="" fontSize="" />
@ -159,6 +199,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="1" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="EDF8F9" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -226,6 +274,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="CDATA" styleID="17" fgColor="FF8000" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="FF8000" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="php" desc="php" ext="">
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -239,8 +295,16 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT" styleID="124" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="66FF00" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -254,6 +318,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT" styleID="42" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="772CB7" bgColor="070707" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -281,6 +353,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="FFFFFF" bgColor="C4F9FD" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="FFFFFF" bgColor="FFC000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="FFCC00" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="xml" desc="XML" ext="">
<WordsStyle name="XMLSTART" styleID="12" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -298,6 +378,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="FFFFFF" bgColor="707070" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="FFCC00" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="99CC99" bgColor="000000" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -465,6 +553,10 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="0000A0" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="0000A0" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="0000A0" bgColor="000000" fontName="" fontStyle="3" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="tex" desc="TeX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -512,6 +604,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="1" fontSize="8" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="9933CC" bgColor="000000" fontName="" fontStyle="0" fontSize="8" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="bash" desc="bash" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />
@ -528,6 +628,14 @@ http://sourceforge.net/donate/index.php?group_id=95717
<WordsStyle name="BACKTICKS" styleID="11" fgColor="804040" bgColor="E1FFF3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="FF6600" bgColor="FF0000" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="99CC99" bgColor="0000FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FF6600" bgColor="000000" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="fortran" desc="Fortran" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000000" fontName="" fontStyle="0" fontSize="" />

View File

@ -33,6 +33,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -68,6 +76,14 @@ License: GPL2
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASP SYMBOL" styleID="15" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPT TYPE" styleID="16" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="asm" desc="Assembly" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -162,6 +178,14 @@ License: GPL2
<WordsStyle name="BACKTICKS" styleID="11" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -209,6 +233,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -229,6 +261,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFCFAF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -249,6 +289,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -526,6 +574,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="GUI4CLI" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -590,6 +646,14 @@ License: GPL2
<WordsStyle name="CDATA" styleID="17" fgColor="C89191" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="CFBFAF" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS1" styleID="192" ffgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS2" styleID="193" ffgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS3" styleID="194" ffgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS4" styleID="195" ffgColor="E3CEAB" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES1" styleID="196" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES2" styleID="197" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES3" styleID="198" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES4" styleID="199" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ihex" desc="Intel HEX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -651,6 +715,14 @@ License: GPL2
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -664,6 +736,14 @@ License: GPL2
<WordsStyle name="COMMENT" styleID="42" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT LINE" styleID="43" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC" styleID="44" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript.js" desc="JavaScript" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -683,6 +763,14 @@ License: GPL2
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -761,6 +849,10 @@ License: GPL2
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" keywordClass="type6" />
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="LABEL" styleID="20" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -964,12 +1056,20 @@ License: GPL2
<WordsStyle name="STRING VARIABLE" styleID="126" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMPLEX VARIABLE" styleID="104" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SIMPLE STRING" styleID="120" fgColor="CC9393" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="121" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="KEYWORDS" styleID="121" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="122" fgColor="8CD0D3" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VARIABLE" styleID="123" fgColor="CEDF99" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT" styleID="124" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT LINE" styleID="125" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="9F9D6D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="DFC47D" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -1051,6 +1151,14 @@ License: GPL2
<WordsStyle name="F CHARACTER" styleID="17" fgColor="DCA3A3" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="F TRIPLE" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="F TRIPLEDOUBLE" styleID="19" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="r" desc="R" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -1121,6 +1229,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="rebol" desc="REBOL" ext="">
<WordsStyle name="DEFAULT" styleID="32" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -1315,6 +1431,14 @@ License: GPL2
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -1409,6 +1533,14 @@ License: GPL2
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="7F9F7F" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
@ -1494,6 +1626,14 @@ License: GPL2
<WordsStyle name="SGML DEFAULT" styleID="21" fgColor="DFDFDF" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="C89191" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="CFBFAF" bgColor="3F3F3F" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="DCDCCC" bgColor="3F3F3F" fontName="" fontStyle="0" fontSize="" />

View File

@ -54,6 +54,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="d700d7" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -94,6 +102,14 @@ Installation:
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="000087" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="005f00" bgColor="bfbf97" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="005f00" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="87005f" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="87005f" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="87005f" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="87005f" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="87005f" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="87005f" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="87005f" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="87005f" bgColor="bfbf97" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="autoit" desc="autoIt" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -127,6 +143,14 @@ Installation:
<WordsStyle name="BACKTICKS" styleID="11" fgColor="af0000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="af5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -156,6 +180,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="d700d7" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -225,6 +257,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="d700d7" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="coffeescript" desc="CoffeeScript" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="5f0000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -265,6 +305,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="d700d7" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="css" desc="CSS" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -368,6 +416,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="d700d7" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="GUI4CLI" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -415,6 +471,14 @@ Installation:
<WordsStyle name="CDATA" styleID="17" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="870000" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="000087" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="000087" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="000087" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="000087" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -454,8 +518,16 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="d700d7" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="005f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="000087" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -471,6 +543,14 @@ Installation:
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="">param @projectDescription projectDescription @param</WordsStyle>
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="d700d7" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -533,6 +613,10 @@ Installation:
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="870000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="870000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="870000" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -669,6 +753,14 @@ Installation:
<WordsStyle name="COMMENT" styleID="124" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="00005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -795,6 +887,14 @@ Installation:
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="87875f" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="d700d7" bgColor="d7d7af" fontName="" fontStyle="3" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="87005f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
@ -964,6 +1064,14 @@ Installation:
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="005f5f" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="870000" bgColor="d7d7af" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="5f5f00" bgColor="d7d7af" fontName="" fontStyle="0" fontSize="" />

View File

@ -22,6 +22,14 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -47,6 +55,14 @@
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="C0C0C0" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASPSYMBOL" styleID="15" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPTTYPE" styleID="16" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="000080" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="000080" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="000080" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="000080" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="000080" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="000080" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="000080" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="000080" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="asm" desc="Assembly" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -97,6 +113,14 @@
<WordsStyle name="BACKTICKS" styleID="11" fgColor="00FF40" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="80FF80" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="80FF00" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -126,6 +150,14 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -144,6 +176,14 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -162,6 +202,14 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -276,6 +324,14 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="FFFF00" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="haskell" desc="Haskell" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -311,6 +367,14 @@
<WordsStyle name="CDATA" styleID="17" fgColor="FF8000" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="FF8000" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS 1" styleID="192" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS 2" styleID="193" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS 3" styleID="194" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS 4" styleID="195" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="196" fgColor="FF0000" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="197" fgColor="FF0000" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="198" fgColor="FF0000" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="199" fgColor="FF0000" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ini" desc="ini file" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -350,8 +414,16 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript" ext="">
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NUMBER" styleID="45" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="46" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -365,6 +437,14 @@
<WordsStyle name="COMMENT" styleID="42" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="43" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTDOC" styleID="44" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="000080" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="000080" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="000080" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="000080" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="000080" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="000080" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="000080" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="000080" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="C3BE98" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -429,6 +509,10 @@
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="0000A0" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="0000A0" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="0000A0" bgColor="000040" fontName="" fontStyle="3" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -559,6 +643,14 @@
<WordsStyle name="COMMENT" styleID="124" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENTLINE" styleID="125" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -650,6 +742,14 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="80A0FF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="000040" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ruby" desc="Ruby" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
@ -793,6 +893,14 @@
<WordsStyle name="SGMLDEFAULT" styleID="21" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="00FF40" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="00FF40" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="00FF40" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="00FF40" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="00FF40" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="00FF40" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="00FF40" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="00FF40" bgColor="000040" fontName="" fontStyle="0" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="000040" fontName="" fontStyle="0" fontSize="" />

View File

@ -629,6 +629,14 @@ int getKwClassFromName(const wchar_t *str)
if (!lstrcmp(L"type5", str)) return LANG_INDEX_TYPE5;
if (!lstrcmp(L"type6", str)) return LANG_INDEX_TYPE6;
if (!lstrcmp(L"type7", str)) return LANG_INDEX_TYPE7;
if (!lstrcmp(L"substyle1", str)) return LANG_INDEX_SUBSTYLE1;
if (!lstrcmp(L"substyle2", str)) return LANG_INDEX_SUBSTYLE2;
if (!lstrcmp(L"substyle3", str)) return LANG_INDEX_SUBSTYLE3;
if (!lstrcmp(L"substyle4", str)) return LANG_INDEX_SUBSTYLE4;
if (!lstrcmp(L"substyle5", str)) return LANG_INDEX_SUBSTYLE5;
if (!lstrcmp(L"substyle6", str)) return LANG_INDEX_SUBSTYLE6;
if (!lstrcmp(L"substyle7", str)) return LANG_INDEX_SUBSTYLE7;
if (!lstrcmp(L"substyle8", str)) return LANG_INDEX_SUBSTYLE8;
if ((str[1] == '\0') && (str[0] >= '0') && (str[0] <= '8')) // up to KEYWORDSET_MAX
return str[0] - '0';

View File

@ -131,6 +131,14 @@ const int LANG_INDEX_TYPE4 = 5;
const int LANG_INDEX_TYPE5 = 6;
const int LANG_INDEX_TYPE6 = 7;
const int LANG_INDEX_TYPE7 = 8;
const int LANG_INDEX_SUBSTYLE1 = 9;
const int LANG_INDEX_SUBSTYLE2 = 10;
const int LANG_INDEX_SUBSTYLE3 = 11;
const int LANG_INDEX_SUBSTYLE4 = 12;
const int LANG_INDEX_SUBSTYLE5 = 13;
const int LANG_INDEX_SUBSTYLE6 = 14;
const int LANG_INDEX_SUBSTYLE7 = 15;
const int LANG_INDEX_SUBSTYLE8 = 16;
const int COPYDATA_PARAMS = 0;
//const int COPYDATA_FILENAMESA = 1; // obsolete, no more useful

View File

@ -811,12 +811,18 @@ void ScintillaEditView::setXmlLexer(LangType type)
{
if (type == L_XML)
{
const wchar_t *pKwArray[NB_LIST] = {NULL};
setLexerFromLangID(L_XML);
for (int i = 0 ; i < 4 ; ++i)
execute(SCI_SETKEYWORDS, i, reinterpret_cast<LPARAM>(L""));
makeStyle(type);
makeStyle(type, pKwArray);
// the XML portion of the lexer only allows substyles for attributes, not for tags (since it treats all tags the same),
// so allocate all 8 substyles to attributes
populateSubStyleKeywords(type, SCE_H_ATTRIBUTE, 8, LANG_INDEX_SUBSTYLE1, pKwArray);
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("lexer.xml.allow.scripts"), reinterpret_cast<LPARAM>("0"));
}
@ -838,7 +844,7 @@ void ScintillaEditView::setXmlLexer(LangType type)
void ScintillaEditView::setHTMLLexer()
{
const wchar_t *pKwArray[10] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(L_HTML, pKwArray);
basic_string<char> keywordList("");
@ -849,11 +855,15 @@ void ScintillaEditView::setHTMLLexer()
}
execute(SCI_SETKEYWORDS, 0, reinterpret_cast<LPARAM>(getCompleteKeywordList(keywordList, L_HTML, LANG_INDEX_INSTR)));
// HTML allows substyle lists for both tags and attributes, so allocate four of each
populateSubStyleKeywords(L_HTML, SCE_H_TAG, 4, LANG_INDEX_SUBSTYLE1, pKwArray);
populateSubStyleKeywords(L_HTML, SCE_H_ATTRIBUTE, 4, LANG_INDEX_SUBSTYLE5, pKwArray);
}
void ScintillaEditView::setEmbeddedJSLexer()
{
const wchar_t *pKwArray[10] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(L_JS, pKwArray);
basic_string<char> keywordList("");
@ -864,6 +874,7 @@ void ScintillaEditView::setEmbeddedJSLexer()
}
execute(SCI_SETKEYWORDS, 1, reinterpret_cast<LPARAM>(getCompleteKeywordList(keywordList, L_JS, LANG_INDEX_INSTR)));
populateSubStyleKeywords(L_JS, SCE_HJ_WORD, 8, LANG_INDEX_SUBSTYLE1, pKwArray);
execute(SCI_STYLESETEOLFILLED, SCE_HJ_DEFAULT, true);
execute(SCI_STYLESETEOLFILLED, SCE_HJ_COMMENT, true);
execute(SCI_STYLESETEOLFILLED, SCE_HJ_COMMENTDOC, true);
@ -873,7 +884,7 @@ void ScintillaEditView::setJsonLexer(bool isJson5)
{
setLexerFromLangID(isJson5 ? L_JSON5 : L_JSON);
const wchar_t *pKwArray[10] = { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL };
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(L_JSON, pKwArray);
@ -905,7 +916,7 @@ void ScintillaEditView::setJsonLexer(bool isJson5)
void ScintillaEditView::setEmbeddedPhpLexer()
{
const wchar_t *pKwArray[10] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(L_PHP, pKwArray);
basic_string<char> keywordList("");
@ -916,6 +927,7 @@ void ScintillaEditView::setEmbeddedPhpLexer()
}
execute(SCI_SETKEYWORDS, 4, reinterpret_cast<LPARAM>(getCompleteKeywordList(keywordList, L_PHP, LANG_INDEX_INSTR)));
populateSubStyleKeywords(L_PHP, SCE_HPHP_WORD, 8, LANG_INDEX_SUBSTYLE1, pKwArray);
execute(SCI_STYLESETEOLFILLED, SCE_HPHP_DEFAULT, true);
execute(SCI_STYLESETEOLFILLED, SCE_HPHP_COMMENT, true);
@ -923,7 +935,7 @@ void ScintillaEditView::setEmbeddedPhpLexer()
void ScintillaEditView::setEmbeddedAspLexer()
{
const wchar_t *pKwArray[10] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(L_ASP, pKwArray);
basic_string<char> keywordList("");
@ -937,6 +949,8 @@ void ScintillaEditView::setEmbeddedAspLexer()
execute(SCI_SETKEYWORDS, 2, reinterpret_cast<LPARAM>(getCompleteKeywordList(keywordList, L_VB, LANG_INDEX_INSTR)));
populateSubStyleKeywords(L_ASP, SCE_HB_WORD, 8, LANG_INDEX_SUBSTYLE1, pKwArray);
execute(SCI_STYLESETEOLFILLED, SCE_HBA_DEFAULT, true);
}
@ -1124,7 +1138,7 @@ void ScintillaEditView::setCppLexer(LangType langType)
}
}
const wchar_t *pKwArray[10] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(langType, pKwArray);
basic_string<char> keywordListInstruction("");
@ -1155,6 +1169,8 @@ void ScintillaEditView::setCppLexer(LangType langType)
execute(SCI_SETKEYWORDS, 1, reinterpret_cast<LPARAM>(cppTypes));
execute(SCI_SETKEYWORDS, 3, reinterpret_cast<LPARAM>(cppGlobalclass));
populateSubStyleKeywords(langType, SCE_C_IDENTIFIER, 8, LANG_INDEX_SUBSTYLE1, pKwArray);
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold"), reinterpret_cast<LPARAM>("1"));
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold.compact"), reinterpret_cast<LPARAM>("0"));
@ -1172,7 +1188,7 @@ void ScintillaEditView::setJsLexer()
const wchar_t *doxygenKeyWords = NppParameters::getInstance().getWordList(L_CPP, LANG_INDEX_TYPE2);
setLexerFromLangID(L_JAVASCRIPT);
const wchar_t *pKwArray[10] = { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL };
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(L_JAVASCRIPT, pKwArray);
if (doxygenKeyWords)
@ -1219,6 +1235,9 @@ void ScintillaEditView::setJsLexer()
execute(SCI_SETKEYWORDS, 0, reinterpret_cast<LPARAM>(jsInstrs));
execute(SCI_SETKEYWORDS, 1, reinterpret_cast<LPARAM>(jsTypes));
execute(SCI_SETKEYWORDS, 3, reinterpret_cast<LPARAM>(jsInstrs2));
populateSubStyleKeywords(L_JAVASCRIPT, SCE_C_IDENTIFIER, 8, LANG_INDEX_SUBSTYLE1, pKwArray);
}
else // New js styler is not available, we use the old styling for the sake of retro-compatibility
{
@ -1288,7 +1307,7 @@ void ScintillaEditView::setTclLexer()
setLexerFromLangID(L_TCL);
const wchar_t *pKwArray[10] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(L_TCL, pKwArray);
basic_string<char> keywordListInstruction("");
@ -1315,7 +1334,7 @@ void ScintillaEditView::setObjCLexer(LangType langType)
{
setLexerFromLangID(L_OBJC);
const wchar_t *pKwArray[10] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(langType, pKwArray);
@ -1384,7 +1403,7 @@ void ScintillaEditView::setTypeScriptLexer()
execute(SCI_SETKEYWORDS, 2, reinterpret_cast<LPARAM>(doxygenKeyWords_char));
}
const wchar_t* pKwArray[10] = { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL };
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(L_TYPESCRIPT, pKwArray);
auto getKeywordList = [&pKwArray](const int i)
@ -1406,6 +1425,8 @@ void ScintillaEditView::setTypeScriptLexer()
execute(SCI_SETKEYWORDS, 0, reinterpret_cast<LPARAM>(tsInstructions));
execute(SCI_SETKEYWORDS, 1, reinterpret_cast<LPARAM>(tsTypes));
populateSubStyleKeywords(L_TYPESCRIPT, SCE_C_IDENTIFIER, 8, LANG_INDEX_SUBSTYLE1, pKwArray);
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold"), reinterpret_cast<LPARAM>("1"));
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold.compact"), reinterpret_cast<LPARAM>("0"));
@ -1424,11 +1445,28 @@ void ScintillaEditView::setKeywords(LangType langType, const char *keywords, int
execute(SCI_SETKEYWORDS, index, reinterpret_cast<LPARAM>(getCompleteKeywordList(wordList, langType, index)));
}
void ScintillaEditView::setLexer(LangType langType, int whichList)
void ScintillaEditView::populateSubStyleKeywords(LangType langType, int baseStyleID, int numSubStyles, int firstLangIndex, const wchar_t **pKwArray)
{
WcharMbcsConvertor& wmc = WcharMbcsConvertor::getInstance();
int firstID = execute(SCI_ALLOCATESUBSTYLES, baseStyleID, numSubStyles) & 0xFF;
if(pKwArray && (firstID>=0))
{
for (int i = 0; i < numSubStyles; i++)
{
int ss = firstLangIndex + i;
int styleID = firstID + i;
basic_string<char> userWords = pKwArray[ss] ? wmc.wchar2char(pKwArray[ss], CP_ACP) : "";
execute(SCI_SETIDENTIFIERS, styleID, reinterpret_cast<LPARAM>(getCompleteKeywordList(userWords, langType, ss)));
}
}
}
void ScintillaEditView::setLexer(LangType langType, int whichList, int baseStyleID, int numSubStyles)
{
setLexerFromLangID(langType);
const wchar_t *pKwArray[10] = {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL};
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(langType, pKwArray);
@ -1487,6 +1525,11 @@ void ScintillaEditView::setLexer(LangType langType, int whichList)
const char * keyWords_char = wmc.wchar2char(pKwArray[LANG_INDEX_TYPE7], CP_ACP);
setKeywords(langType, keyWords_char, LANG_INDEX_TYPE7);
}
if (baseStyleID != STYLE_NOT_USED)
{
populateSubStyleKeywords(langType, baseStyleID, numSubStyles, LANG_INDEX_SUBSTYLE1, pKwArray);
}
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold"), reinterpret_cast<LPARAM>("1"));
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold.compact"), reinterpret_cast<LPARAM>("0"));

View File

@ -911,7 +911,8 @@ protected:
void restyleBuffer();
const char * getCompleteKeywordList(std::basic_string<char> & kwl, LangType langType, int keywordIndex);
void setKeywords(LangType langType, const char *keywords, int index);
void setLexer(LangType langID, int whichList);
void populateSubStyleKeywords(LangType langType, int baseStyleID, int numSubStyles, int firstLangIndex, const wchar_t **pKwArray);
void setLexer(LangType langID, int whichList, int baseStyleID = STYLE_NOT_USED, int numSubStyles = 8);
bool setLexerFromLangID(int langID);
void makeStyle(LangType langType, const wchar_t **keywordArray = NULL);
void setStyle(Style styleToSet); //NOT by reference (style edited)
@ -941,7 +942,7 @@ protected:
};
void setLuaLexer() {
setLexer(L_LUA, LIST_0 | LIST_1 | LIST_2 | LIST_3 | LIST_4 | LIST_5 | LIST_6 | LIST_7);
setLexer(L_LUA, LIST_0 | LIST_1 | LIST_2 | LIST_3 | LIST_4 | LIST_5 | LIST_6 | LIST_7, SCE_LUA_IDENTIFIER, 4);
};
void setMakefileLexer() {
@ -965,7 +966,21 @@ protected:
};
void setBashLexer() {
setLexer(L_BASH, LIST_0);
setLexerFromLangID(L_BASH);
const wchar_t *pKwArray[NB_LIST] = {NULL};
makeStyle(L_BASH, pKwArray);
WcharMbcsConvertor& wmc = WcharMbcsConvertor::getInstance();
const char * keyWords_char = wmc.wchar2char(pKwArray[LANG_INDEX_INSTR], CP_ACP);
setKeywords(L_BASH, keyWords_char, LANG_INDEX_INSTR);
populateSubStyleKeywords(L_BASH, SCE_SH_IDENTIFIER, 4, LANG_INDEX_SUBSTYLE1, pKwArray);
populateSubStyleKeywords(L_BASH, SCE_SH_SCALAR, 4, LANG_INDEX_SUBSTYLE5, pKwArray);
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold"), reinterpret_cast<LPARAM>("1"));
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold.compact"), reinterpret_cast<LPARAM>("0"));
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold.comment"), reinterpret_cast<LPARAM>("1"));
};
void setVBLexer() {
@ -982,14 +997,14 @@ protected:
};
void setPythonLexer() {
setLexer(L_PYTHON, LIST_0 | LIST_1);
setLexer(L_PYTHON, LIST_0 | LIST_1, SCE_P_IDENTIFIER);
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("fold.quotes.python"), reinterpret_cast<LPARAM>("1"));
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("lexer.python.decorator.attributes"), reinterpret_cast<LPARAM>("1"));
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("lexer.python.identifier.attributes"), reinterpret_cast<LPARAM>("1"));
};
void setGDScriptLexer() {
setLexer(L_GDSCRIPT, LIST_0 | LIST_1);
setLexer(L_GDSCRIPT, LIST_0 | LIST_1, SCE_GD_IDENTIFIER);
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("lexer.gdscript.keywords2.no.sub.identifiers"), reinterpret_cast<LPARAM>("1"));
execute(SCI_SETPROPERTY, reinterpret_cast<WPARAM>("lexer.gdscript.whinge.level"), reinterpret_cast<LPARAM>("1"));
};

File diff suppressed because one or more lines are too long

View File

@ -21,6 +21,14 @@
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ada" desc="ADA" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -56,6 +64,14 @@
<WordsStyle name="IDENTIFIER" styleID="86" fgColor="000000" bgColor="C4F9FD" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ASP SYMBOL" styleID="15" fgColor="000000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SCRIPT TYPE" styleID="16" fgColor="000000" bgColor="FFC000" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="216" fgColor="333380" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="217" fgColor="333380" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="218" fgColor="333380" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="219" fgColor="333380" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="220" fgColor="333380" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="221" fgColor="333380" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="222" fgColor="333380" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="223" fgColor="333380" bgColor="C4F9FD" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="asm" desc="Assembly" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -150,6 +166,14 @@
<WordsStyle name="BACKTICKS" styleID="11" fgColor="804040" bgColor="E1FFF3" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE DELIM" styleID="12" fgColor="000000" bgColor="FFA448" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="HERE Q" styleID="13" fgColor="FF0000" bgColor="FFFF80" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="batch" desc="Batch" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -197,6 +221,14 @@
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cpp" desc="C++" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="804000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -217,6 +249,14 @@
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="cs" desc="C#" ext="">
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="804000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -237,6 +277,14 @@
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="caml" desc="Caml" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -514,6 +562,14 @@
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gui4cli" desc="Gui4Cli" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -578,6 +634,14 @@
<WordsStyle name="CDATA" styleID="17" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VALUE" styleID="19" fgColor="FF8000" bgColor="FEFDE0" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="000000" bgColor="FEFDE0" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER TAGS1" styleID="192" fgColor="0000FF" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER TAGS2" styleID="193" fgColor="0000FF" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER TAGS3" styleID="194" fgColor="0000FF" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER TAGS4" styleID="195" fgColor="0000FF" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES1" styleID="196" fgColor="FF0000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES2" styleID="197" fgColor="FF0000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES3" styleID="198" fgColor="FF0000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES4" styleID="199" fgColor="FF0000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="ihex" desc="Intel HEX" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -639,6 +703,14 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
<WordsStyle name="DEFAULT" styleID="41" fgColor="000000" bgColor="F2F4FF" fontName="" fontStyle="0" fontSize="" />
@ -652,6 +724,14 @@
<WordsStyle name="COMMENT" styleID="42" fgColor="008000" bgColor="F2F4FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT LINE" styleID="43" fgColor="008000" bgColor="F2F4FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC" styleID="44" fgColor="008080" bgColor="F2F4FF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="javascript.js" desc="JavaScript" ext="">
<WordsStyle name="DEFAULT" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -671,6 +751,14 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="json" desc="JSON" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -743,12 +831,16 @@
<WordsStyle name="FUNC1" styleID="13" fgColor="0080C0" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
<WordsStyle name="FUNC2" styleID="14" fgColor="8000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="type1" />
<WordsStyle name="FUNC3" styleID="15" fgColor="0000A0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize="" keywordClass="type2" />
<WordsStyle name="USER KEYWORD 1" styleID="16" fgColor="0000A0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize="" keywordClass="type3" />
<WordsStyle name="USER KEYWORD 2" styleID="17" fgColor="0000A0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORD 3" styleID="18" fgColor="0000A0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORD 4" styleID="19" fgColor="0000A0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize="" keywordClass="type6" />
<WordsStyle name="USER KEYWORDS 1" styleID="16" fgColor="0000A0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize="" keywordClass="type3" />
<WordsStyle name="USER KEYWORDS 2" styleID="17" fgColor="0000A0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize="" keywordClass="type4" />
<WordsStyle name="USER KEYWORDS 3" styleID="18" fgColor="0000A0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize="" keywordClass="type5" />
<WordsStyle name="USER KEYWORDS 4" styleID="19" fgColor="0000A0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize="" keywordClass="type6" />
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="LABEL" styleID="20" fgColor="808000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 5" styleID="128" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 6" styleID="129" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 7" styleID="130" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 8" styleID="131" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
</LexerType>
<LexerType name="makefile" desc="Makefile" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -969,12 +1061,20 @@
<WordsStyle name="COMPLEX VARIABLE" styleID="104" fgColor="808080" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="STRING VARIABLE" styleID="126" fgColor="808080" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="SIMPLE STRING" styleID="120" fgColor="808080" bgColor="FEFCF5" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="WORD" styleID="121" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="KEYWORDS" styleID="121" fgColor="0000FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="instre1" />
<WordsStyle name="NUMBER" styleID="122" fgColor="FF8000" bgColor="FEFCF5" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="VARIABLE" styleID="123" fgColor="000080" bgColor="FEFCF5" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT" styleID="124" fgColor="008000" bgColor="FEFCF5" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT LINE" styleID="125" fgColor="008000" bgColor="FEFCF5" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="OPERATOR" styleID="127" fgColor="8000FF" bgColor="FEFCF5" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREDEFINED" styleID="213" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
</LexerType>
<LexerType name="postscript" desc="Postscript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -1059,6 +1159,14 @@
<WordsStyle name="F CHARACTER" styleID="17" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="F TRIPLE" styleID="18" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="F TRIPLEDOUBLE" styleID="19" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="r" desc="R" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -1129,6 +1237,14 @@
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="rebol" desc="REBOL" ext="">
<WordsStyle name="DEFAULT" styleID="32" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -1323,6 +1439,14 @@
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="tcl" desc="TCL" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -1417,6 +1541,14 @@
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="gdscript" desc="GDScript" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -1436,6 +1568,14 @@
<WordsStyle name="WORD2" styleID="14" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="instre2" />
<WordsStyle name="ANNOTATION" styleID="15" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="NODEPATH" styleID="16" fgColor="004000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" />
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="vb" desc="VB / VBS" ext="">
<WordsStyle name="DEFAULT" styleID="7" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
@ -1521,6 +1661,14 @@
<WordsStyle name="SGML DEFAULT" styleID="21" fgColor="000000" bgColor="A6CAF0" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="CDATA" styleID="17" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />
<WordsStyle name="ENTITY" styleID="10" fgColor="000000" bgColor="FEFDE0" fontName="" fontStyle="2" fontSize="" />
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1" />
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2" />
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3" />
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4" />
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5" />
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6" />
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7" />
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8" />
</LexerType>
<LexerType name="yaml" desc="YAML" ext="">
<WordsStyle name="DEFAULT" styleID="0" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" />