Download: VIM Colors
Based on a XTerm with an Xdefaults of: Xdefaults
Figured out all below, now posting schemes.
Would it be possible to split the $ out for separate coloring? I'm making a vim type color scheme and vim colors the $ in a different color from the rest of the identifier.
Also, which is the color for "<?php" and "?>"? They seem to be a completely different color from anything I currently have in my scheme.
Edit: Figured out the $.
- Code: Select all
<category name="IDENTIFIER" style="IDENTIFIER">
<token style="IDENTIFIER_IDENTIFIER" type="IDENTIFIER"/>
<token style="IDENTIFIER_VARIABLE" type="VARIABLE">
<region length="1" name="VARIABLE_dollar" offset="0" style="IDENTIFIER_VARIABLE_VARIABLE_dollar"/>
</token>
</category>
<style foreground="rgb(229,229,229)" id="IDENTIFIER"/>
<style foreground="rgb(255,255,240)" id="IDENTIFIER_IDENTIFIER"/>
<style font-weight="bold" foreground="rgb(255,247,150)" id="IDENTIFIER_VARIABLE_VARIABLE_dollar"/>
<style font-weight="bold" foreground="rgb(135,206,250)" id="IDENTIFIER_VARIABLE"/>
Still haven't figured out "<?php" and "?>" though.
Another thing I've noticed is that it doesn't highlight a variable in a string like:
echo "{$blah}\n";
Is there something I can add to my .col file to make it highlight in a string?

