Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Karsnen_2 · Aug 05, 2012 at 05:19 PM · c#editormac

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.

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

2 Replies

· Add your reply
  • Sort: 
avatar image
1
Best Answer

Answer by DannyB · Aug 07, 2012 at 04:27 PM

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.

Comment
Add comment · Show 4 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Karsnen_2 · Aug 07, 2012 at 05:08 PM 0
Share

Danny Thank you for your reply. Does the editor have intellisense and autocompletion with unity?

avatar image Karsnen_2 · Aug 07, 2012 at 05:10 PM 0
Share

I just now happen to stumble upon this...

http://www.jacobpennock.com/Blog/?p=490

avatar image DannyB · Aug 07, 2012 at 05:22 PM 1
Share

Remember it is a text editor, not an ID$$anonymous$$ As such, its intellisense and autocomplete are limited.

It does have the notion of projects, and a sophisticated Find feature ("Find Anything") but it is still a generic editor.

The various Unity related packages and the generic snippets system compensate for the lack of IDE-ish features, at least for me.

avatar image Karsnen_2 · Aug 08, 2012 at 03:06 PM 0
Share

DannyB, I just happent to find something within $$anonymous$$D. It might interest you. The answer is below.

avatar image
1

Answer by Karsnen_2 · Aug 08, 2012 at 03:05 PM

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.

Comment
Add comment · Show 3 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Bunny83 · Aug 08, 2012 at 03:07 PM 0
Share

But is it possible to change the background color? Because that's what the OP needs ;)

I use mainly VisualStudio but i'm of course on a Windows PC ;) However i still have a white background. I never tried changing it. I was used to the textmode editor of Borland pascal (yellow on blue) which was really nice, but times has changed ;)

edit
Just checked the configuration. You can customise everything in VS ;) You can even use different fonts for certain things / keywords. You can set a foreground and background color

avatar image Bunny83 · Aug 08, 2012 at 03:17 PM 1
Share

I've just did a quick google and found this for $$anonymous$$onoDevelop:

     <Style name="text" color="black" bgColor="white"/>

So yes, you can set a background color in $$anonymous$$D.

See this thread for more info.

avatar image Karsnen_2 · Aug 08, 2012 at 11:59 PM 0
Share

Yeah Bunny83, I am happy with the syntax highlighting. But I am looking forward for a theme rather than just this. For moment I think my eyes would be happy.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

9 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

how to make high quality textures with low size of downlaod 1 Answer

Accelerometer Quick Question(Moving Up and Down?) 1 Answer

Issue with Adding Quaternions 1 Answer

How to check if string array contains duplicates C# 1 Answer

Big Problem Serializing 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges