Currently this is the code that highlights all variables, including class properties (they are red):
<dict>
<key>name</key>
<string>Variables</string>
<key>scope</key>
<string>variable, support.variable</string>
<key>settings</key>
<dict>
<key>fontStyle</key>
<string></string>
<key>foreground</key>
<string>#dc322f</string>
</dict>
</dict>
How can I change the color of class properties only?
$object->property = 'xxx';
so $object
should still be red, but I want property
in a different color