Change language colors/syntax highlighting in gedit

0

When a javascript file is open in gedit, I want comments to be green instead of the default blue.

How do I change the colors?

Thalecress

Posted 2012-03-24T05:36:21.180

Reputation: 1 105

Answers

3

You have to edit the corresponding color-scheme file and change the color code for comments. I.e. if you use the color scheme 'tango' you have to edit /usr/share/gtksourceview-3.0/styles/tango.xml. Look for the comment style:

<!-- Comments -->
<style name="def:comment"                 foreground="skyblue3"/>
..............................

and replace the foreground color (e.g. #489c33)

don_crissti

Posted 2012-03-24T05:36:21.180

Reputation: 2 374

0

Gedit offers multiple syntax colour schemes in its settings. If you don't like any of them you can edit the schema files to you liking and alter existing or create new schemes.

David Foerster

Posted 2012-03-24T05:36:21.180

Reputation: 829