Looking for a editor with a charcoal theme?

Hello,

I love using MonoDevelop but the white screen just hurts my eye if I happen to look into the screen for a long time. Can you guys suggest me a editor which would have a black theme or Charcoal? I did try for themes for MonoDevelop but apparently there is nothing available for the moment. I would also like to have IntelliSense integrated with the editor as it saves a hell a lot of time.

My Machine : Mac

Primary Language : C#

I looking to have a theme like this

If you guys think of any other option, I would love to know that too.

THANKS guys.

I can strongly recommend Sublime Text.

Cross platform, highly customizable, with many built in themes (dark or not) and all around very pleasant to work with.

In addition, there are some specific Unity plugins for this editor that add some nice functionality, like syntax highlighting for specific Unity keywords, and context sensitive links to the help pages.

There is a free version that works unlimited (with a nag dialog) but the cost is worth every penny if you are spending most of your time in a text editor, like I do.

I was wondering around and I found myself a better answer.

Number One : Themes are not available for MD but we have a better option such as changing the syntax highlighting.

Syntax Highlighting can be found under Preferences or just press “command”+“,”

There is actually a few themes to start with. If your eyes are not treated like you wished for, then open up a XML document and make a theme out it.

A XML Base Document :

<Style name="keyword" color="brown" weight="bold">

<Style name="access" color="black" weight="bold" />

<Style name="namespace" color="accent_green_base" weight="bold"/>

<Style name="property" color="accent_blue_base" weight="bold"/>

<Style name="modifier" color="accent_red" weight="bold"/>

<Style name="type" color="accent_deep_red" weight="bold"/>

<Style name="declaration" color="accent_blue_shadow" weight="bold"/>

<Style name="access" color="black" weight="bold" />

<Style name="operator" color="accent_dark_violet"/>

<Style name="operator.declaration" color="darkblue" weight="bold"/>

<Style name="selection" color="darkblue" weight="bold"/>

<Style name="iteration" color="darkblue" weight="bold"/>

<Style name="jump" color="darkblue" weight="bold"/>

<Style name="context" color="darkblue" />

<Style name="exceptions" color="accent_orange" weight="bold"/>

<Style name="parameter" color="darkblue" weight="bold"/>

<Style name="misc" color="darkblue"/>
</Style>

WIth the above XML code, just copy and paste it in a new XML file and name it. Get back to “syntax highlighting” menu and “ADD” the xml file. You will find it at your doorstep.

You could play around if you wish to but you might have to restart Mono-Develop every time.

I hope I am clear, if not just bug me.