Search Unity

MonoDevelop themes, where to find?

Discussion in 'General Discussion' started by U7Games, Jul 28, 2011.

  1. U7Games

    U7Games

    Joined:
    May 21, 2011
    Posts:
    943
    hi, is there more editor color scheme for MonoDevelop ide ??.. or.. does someone can share some ones for me?..

    Cheers..
     
  2. eTag96

    eTag96

    Joined:
    Oct 24, 2010
    Posts:
    110
    on a mac, command-,
    and in syntax highlighting, there's the themes. or in Windows, however you get to preferences (should be file) and thn syntax highlighting.
     
  3. U7Games

    U7Games

    Joined:
    May 21, 2011
    Posts:
    943
    Thanks, yes, i have seen that,, indeed i want to add more themes, but i'm seeing that monodevelo is a bit complicated finding color schemes ...
     
  4. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,631
    I'm working on one right now. It's a real mess to do actually.

    Two pages that are invaluable:
    http://www.teknynja.com/2009/10/monodevelop-custom-color-schemes.html
    https://github.com/mono/monodevelop/tree/master/main/src/core/Mono.Texteditor/Styles

    The first link gives a brief overview of how to do it. The 2nd link has some actual XML files you can take for starters.

    Strangely, Unity's Monodevelop will throw all kinds of errors with any of the default style files. I had to take all the #xxxxxx hex color codes out of any bgColor or color field below the environment section or I'd get errors. I created a bunch of new color definitions at the top for the replaced hex codes and substituted the names below where the hex codes were.

    To save a bunch of trouble, you can start with my current theme (in progress). I'm trying to make a theme like the old UniSciTE, but I'm finding a lot of limitations.

    Code (csharp):
    1.  
    2. <EditorStyle name="MyStyle" _description="Old UniSciTE color scheme - work in progress">
    3.  
    4.     <!-- color palette -->
    5.     <Color name="comment-green" value="#008000"/>
    6.     <Color name="keyword-blue" value="#0000ff"/>
    7.     <Color name="skyblue" value="#204a87"/>
    8.     <Color name="aluminium1" value="#eeeeec"/>
    9.     <Color name="aluminium2" value="#d3d7cf"/>
    10.     <Color name="aluminium3" value="#babdb6"/>
    11.     <Color name="aluminium4" value="#888a85"/>
    12.     <Color name="aluminium5" value="#555753"/>
    13.     <Color name="aluminium6" value="#2e3436"/>
    14.     <Color name="darkblue" value="#00007f"/>
    15.     <Color name="medred" value="#a31515"/>
    16.     <Color name="medcyan" value="#2b91af"/>
    17.     <Color name="medcyan2" value="#007f7f"/>
    18.     <Color name="red" value="#cc0000"/>
    19.     <Color name="paleblue" value="#bfd2f9"/>
    20.    
    21.     <!-- environment -->
    22.     <Style name="text" color="black" bgColor="white"/>
    23.     <Style name="text.selection" color="white" bgColor="darkblue"/>
    24.     <Style name="text.background.searchresult" color="yellow"/>
    25.    
    26.     <Style name="text.link" color="skyblue"/>
    27.    
    28.     <Style name="caret" color="black" bgColor="white"/>
    29.    
    30.     <Style name="marker.line" color="aluminium1"/>
    31.    
    32.     <Style name="marker.ruler" color="aluminium3"/>
    33.     <Style name="marker.whitespace" color="medcyan"/>
    34.     <Style name="marker.invalidline" color="red"/>
    35.     <Style name="marker.bracket" color="aluminium4" bgColor="aluminium1"/>
    36.    
    37.     <Style name="marker.bookmark.color1" color="black"/>
    38.     <Style name="marker.bookmark.color2" color="paleblue"/>
    39.    
    40.     <Style name="linenumber" color="medcyan" bgColor="white"/>
    41.     <Style name="linenumber.highlight" color="medcyan"/>
    42.    
    43.     <Style name="iconbar" color="aluminium1"/>
    44.     <Style name="iconbar.separator" color="aluminium3"/>
    45.    
    46.     <Style name="fold" color="aluminium3" bgColor="white"/>
    47.     <Style name="fold.highlight" color="aluminium5"/>
    48.     <Style name="fold.togglemarker" color="black"/>
    49.    
    50.     <!-- highlighting -->
    51.     <Style name="comment" color="comment-green"/>
    52.  
    53.     <Style name="text.preprocessor" color="purple"/>
    54.     <Style name="text.markup" color="skyblue"/>
    55.    
    56.     <Style name="constant" color="medcyan2"/>
    57.     <Style name="constant.language" color="darkblue" weight="bold"/>
    58.  
    59.     <Style name="string" color="medred"/>
    60.     <Style name="string.single" color="medred"/>
    61.     <Style name="string.double" color="medred"/>
    62.     <Style name="string.other" color="medred"/>
    63.    
    64.     <Style name="keyword" color="darkblue" weight="bold">
    65.         <Style name="access" weight="bold"/>
    66.     </Style>
    67.    
    68. </EditorStyle>
    Edit: I cleaned up the below instructions a bit.

    How to install:
    1. Create a file with an .xml extension and copy and paste the code from above into it and save it wherever you like.
    2. In MonoDevelop, go to Tools -> Preferences -> Syntax Highlighting -> Add and select your XML file. MD will import the file into the right folder. (In windows this folder is located at %appdata%\MonoDevelop-Unity\syntaxmodes. If you want to edit this file, you can either edit it in this directory or reimport it from elsewhere.)
    3. It should appear in the list of styles after importing. Select it, click OK. If it did not show up, close and reopen MonoDevelop and it should be in the list.

    To edit the styles:
    You can edit the XML file in the %appdata%\MonoDevelop-Unity folder directly, or if you prefer to edit a copy in another location, make sure to reimport it each time.
    After making changes, save, then close and re-open MonoDevelop. (Yes, this is a hassle. I set up a hot key combo for MD in Windows Cntl + Shift + Alt + M so I can get back into MD quickly.)

    This page has a bunch of keywords to which you can assign colors. Otherwise, I find MonoDevelop's documentation on this frustrating. There is an example of a few bolds up there in the code, but otherwise, I'm still looking to find a page with all the styles available.

    EDIT: This page has the default XML style which contains a lot of stuff not in my example. I would guess this is a master template that the others inherit from because it doesn't have any of the same styles as the other files. This may be useful for someone wanting to go even further in customizing the look.

    Compared to UniSciTE this thing is really hard on the eyes no matter what scheme I pick. I'm finding a lot of issues such as bolds not being bold enough to really notice. Also, a lot of types seem to be all lumped together in the "keyword" type. Not very friendly. There doesn't seem to be a way to make keywords like "function" styled differently from other keywords like Time. (EDIT: There is actually... see below) Also, none of Unity's class properties highlight like Time.deltaTime (the .deltaTime part) like they used to. I would wager there isn't a way to do it since the Unity staff themselves left it out.

    I'm really considering tossing MD and going back to UniSciTE. It's a hassle they completely removed it from the 3.4 install. MonoDevelop is SLOOOOOOW if you have all the code completion stuff on. I honestly don't think it's ready for prime time and should not have been forced on us in 3.4

    Addition:
    Here are some more styles for various keywords. Trial and error is the only way to find out which things they modify. Replace color = "" with your own colors.
    Code (csharp):
    1. <Style name="keyword" color="brown" weight="bold">
    2.     <Style name="access" color="black" weight="bold" />
    3.     <Style name="namespace" color="accent_green_base" weight="bold"/>
    4.     <Style name="property" color="accent_blue_base" weight="bold"/>
    5.     <Style name="modifier" color="accent_red" weight="bold"/>
    6.     <Style name="type" color="accent_deep_red" weight="bold"/>
    7.     <Style name="declaration" color="accent_blue_shadow" weight="bold"/>
    8.     <Style name="access" color="black" weight="bold" />
    9.     <Style name="operator" color="accent_dark_violet"/>
    10.     <Style name="operator.declaration" color="darkblue" weight="bold"/>
    11.     <Style name="selection" color="darkblue" weight="bold"/>
    12.     <Style name="iteration" color="darkblue" weight="bold"/>
    13.     <Style name="jump" color="darkblue" weight="bold"/>
    14.     <Style name="context" color="darkblue" />
    15.     <Style name="exceptions" color="accent_orange" weight="bold"/>
    16.     <Style name="parameter" color="darkblue" weight="bold"/>
    17.     <Style name="misc" color="darkblue"/>
    18. </Style>
     
    Last edited: Jul 28, 2011
  5. U7Games

    U7Games

    Joined:
    May 21, 2011
    Posts:
    943
    Hey Guavaman, thanks a lot for this!, IDE colors are really important to me, because black bg relaxes my eyes, i will check above links.. thanks !
     
  6. dart

    dart

    Joined:
    Jan 9, 2010
    Posts:
    211
  7. U7Games

    U7Games

    Joined:
    May 21, 2011
    Posts:
    943
    Thanks Dart, i will try that too, looks soft for the eyes, (i really can´t imagine how developers can work with white bg.. o_O)
     
  8. kerters

    kerters

    Joined:
    May 13, 2011
    Posts:
    164
    I know what you mean :)
    $th01a.jpg
     
  9. U7Games

    U7Games

    Joined:
    May 21, 2011
    Posts:
    943
    hehe, 1 hour of scripting and you only see white everywhere.. wow....
    btw Xcode color is amazing..
     
  10. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,631
    I do that all the time. But only because my monitor refuses to go dim enough even with software brighness settings. Curse those contrast ratio marketroids!

    Being able to change the colors is nice, but I cannot for the life of me figure out how to change the font in the main editor! From what I see by searching, it seems like there's supposed to be an option in Preferences -> General, but it's just not there. Can't find anything scouring the files in the install folder either. I hate this font... really hard to read. I always used the varying-width font in UniSciTE for most files and only the ones where I have a 2D table did I switch over to fixed-width. I also liked being able to make comments a smaller point size in scintila.

    EDIT: Found it. Oops. The editor font setting is in Preferences -> Text Editor -> General at the very bottom. However I'm still having a really hard time as most fonts I select when I press OK end up jumping back to the very first font on the list.
     
    Last edited: Jul 28, 2011
  11. hippocoder

    hippocoder

    Digital Ape

    Joined:
    Apr 11, 2010
    Posts:
    29,723
    You guys saying it's slow, do you by chance have 20 year old ibm computers that were sold off after the collapse of the soviet union?
     
  12. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,631
    Core i7 @ 3.8Ghz, 12GB DDR3-1600, dual GTX 460 SLI, Windows Vista 64-bit

    You need a video for proof?

    I've just about had it with MD. I can't change the font in the main window. (Edit: Oops, yes I can. I found it.) But now even though there's a setting to change the pad fonts, every time I choose one it jumps back to the first font on the list. (Edit: Same weird font choosing problem happens in the editor font selector too.)

    Scintilla was luxury compared to this. Switching...
     
    Last edited: Jul 28, 2011
  13. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,631
    Aha, here's a good link for those who like dark backgrounds.

    How to use GTK+ themes in MonoDevelop so you can control all the window colors (for a real dark environment)

    Edit: Hmm, the instructions are for Mac. For Windows after a bunch of trial and error:

    1. Download a gtk+ 2.0 theme from:
    http://art.gnome.org/themes/gtk2
    http://www.gnomelook.org

    (This theme looks nice and matches Unity 3.4's colors farily well.)

    2. Go to C:\Program Files (x86)\Unity\MonoDevelop\share\themes\MS-Windows\gtk-2.0
    3. Rename the file "gtkrc" to "gtkrcORIG" or something similar.
    4. Copy the gtkrc file from your downloaded theme into this folder.
    5. Start MonoDevelop!

    Note that you'll also have to change your syntax highlighting scheme. One of the defaults, IRBlack works okay, or you can make a custom one as described in the messages above if you want a truly dark theme including the code editing window.

    There may be a better way to install themes so you can get at them from the Interface Theme dropdown box in the Preferences section, but I couldn't find the right folder. Oh well.
     
    Last edited: Jul 28, 2011
  14. kerters

    kerters

    Joined:
    May 13, 2011
    Posts:
    164
  15. U7Games

    U7Games

    Joined:
    May 21, 2011
    Posts:
    943
    lol... unity3d 3.4 monodev dark themes.. is the page was i looking for. looks like they saw and thought my post :D
     
  16. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,631
    I updated the above post with instructions on getting it to work in Windows.
     
    Last edited: Jul 29, 2011
  17. guavaman

    guavaman

    Joined:
    Nov 20, 2009
    Posts:
    5,631
    Here's a new dark syntax highlighting style I just finished. The main purpose was that you can use it as a basis for developing your own styles. I removed all static color codes from the styles made the color names identical to the styles they're used on. All you have to make a style is change colors in the palette sections. No need to mess with anything below that.

    Hope this helps someone!

    It goes well with Clearlooks Blueblack for your interface theme.

    Code (csharp):
    1. <!-- EvilSmurfStyle.xml
    2.  
    3.  Author: Guavaman
    4.  
    5.  Copyright (c) 2011 Guavaman (http://forum.unity3d.com/members/12523-guavaman)
    6.  
    7.  Permission is hereby granted, free of charge, to any person obtaining a copy
    8.  of this software and associated documentation files (the "Software"), to deal
    9.  in the Software without restriction, including without limitation the rights
    10.  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    11.  copies of the Software, and to permit persons to whom the Software is
    12.  furnished to do so, subject to the following conditions:
    13.  
    14.  The above copyright notice and this permission notice shall be included in
    15.  all copies or substantial portions of the Software.
    16.  
    17.  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    18.  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    19.  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    20.  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    21.  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    22.  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    23.  THE SOFTWARE. -->
    24.  <EditorStyle name="EvilSmurf" _description="Dark background with blue highlights">
    25.  
    26.     <!-- environment palette -->
    27.    
    28.     <Color name="text" value="#f9f9f9"/>
    29.     <Color name="text-bg" value="#000000"/>
    30.     <Color name="text-selection" value="#000000"/>
    31.     <Color name="text-selection-bg" value="#a1a8b1"/>
    32.     <Color name="text-link" value="#506f73"/>
    33.    
    34.   <Color name="caret" value="#000000"/>
    35.   <Color name="caret-bg" value="#ffffff"/>
    36.  
    37.   <Color name="marker-template-primary_template" value="#b4e4b4"/>
    38.   <Color name="marker-template-primary_template-bg" value="#b4e4b4"/>
    39.  
    40.     <Color name="marker-template-primary_highlighted_template" value="#000000"/>
    41.     <Color name="marker-template-primary_highlighted_template-bg" value="#b4e4b4"/>
    42.     <Color name="marker-template-secondary_template" value="#ffffff"/>
    43.     <Color name="marker-template-secondary_template-bg" value="#ffffff"/>
    44.     <Color name="marker-template-secondary_highlighted_template" value="#808080"/>
    45.     <Color name="marker-template-secondary_highlighted_template-bg" value="#ffffff"/>
    46.  
    47.   <Color name="marker-line" value="#eeeeec"/>
    48.     <Color name="marker-ruler" value="#babdb6"/>
    49.     <Color name="marker-whitespace" value="#506f73"/>
    50.     <Color name="marker-invalidline" value="#cc0000"/>
    51.     <Color name="marker-bracket" value="#ffff00"/>
    52.     <Color name="marker-bracket-bg" value="#000000"/>
    53.     <Color name="marker-bookmark-color1" value="#000000"/>
    54.     <Color name="marker-bookmark-color2" value="#bfd2f9"/>
    55.    
    56.     <Color name="linenumber" value="#6c6c6c"/>
    57.     <Color name="linenumber-bg" value="#000000"/>
    58.  
    59.     <Color name="iconbar" value="#000000"/>
    60.     <Color name="iconbar-separator" value="#babdb6"/>
    61.    
    62.     <Color name="fold" value="#888a85"/>
    63.     <Color name="fold-bg" value="#2e3436"/>
    64.     <Color name="fold-highlight" value="#555753"/>
    65.     <Color name="fold-togglemarker" value="#f9f9f9"/>
    66.  
    67.   <!-- highlighting palette -->
    68.  
    69.   <Color name="comment" value="#448e44"/>
    70.    
    71.     <Color name="text-preprocessor" value="#39a5dd"/>
    72.     <Color name="text-markup" value="#39a5dd"/>
    73.     <Color name="text-background-searchresult" value="#cc00cc"/>
    74.     <Color name="text-background-searchresult-main" value="#cc00cc"/>
    75.  
    76.     <Color name="constant" value="#72cbf9"/>
    77.     <Color name="constant-language" value="#72cbf9"/>
    78.  
    79.     <Color name="string" value="#d98f6a"/>
    80.     <Color name="string-double" value="#d98f6a"/>
    81.     <Color name="string-single" value="#d98f6a"/>
    82.     <Color name="string-other" value="#d98f6a"/>
    83.  
    84.     <Color name="keyword" value="#72cbf9"/>
    85.     <Color name="keyword-namespace" value="#72cbf9"/>
    86.     <Color name="keyword-property" value="#72cbf9"/>
    87.     <Color name="keyword-modifier" value="#72cbf9"/>
    88.     <Color name="keyword-type" value="#72cbf9"/>
    89.     <Color name="keyword-declaration" value="#72cbf9"/>
    90.     <Color name="keyword-operator" value="#72cbf9"/>
    91.     <Color name="keyword-operator-declaration" value="#72cbf9"/>
    92.     <Color name="keyword-selection" value="#72cbf9"/>
    93.     <Color name="keyword-iteration" value="#72cbf9"/>
    94.     <Color name="keyword-jump" value="#72cbf9"/>
    95.     <Color name="keyword-context" value="#72cbf9"/>
    96.     <Color name="keyword-exceptions" value="#72cbf9"/>
    97.     <Color name="keyword-parameter" value="#72cbf9"/>
    98.     <Color name="keyword-misc" value="#72cbf9"/>
    99.     <Color name="keyword-semantic-type" value="#72cbf9"/>
    100.  
    101.  
    102.     <!-- environment styles -->
    103.    
    104.     <Style name="text" color="text" bgColor="text-bg"/>
    105.     <Style name="text.selection" color="text-selection" bgColor="text-selection-bg"/>
    106.     <Style name="text.background.searchresult" color="text-background-searchresult"/>
    107.     <Style name="text.background.searchresult-main" color="text-background-searchresult-main"/>
    108.     <Style name="text.link" color="text-link"/>
    109.    
    110.     <Style name="caret" color="caret" bgColor="caret-bg"/>
    111.  
    112.     <Style name="marker.template.primary_template" color="marker-template-primary_template" bgColor="marker-template-primary_template-bg"/>
    113.     <Style name="marker.template.primary_highlighted_template" color="marker-template-primary_highlighted_template" bgColor="marker-template-primary_highlighted_template-bg"/>
    114.     <Style name="marker.template.secondary_template" color="marker-template-secondary_template" bgColor="marker-template-secondary_template-bg"/>
    115.     <Style name="marker.template.secondary_highlighted_template" color="marker-template-secondary_highlighted_template" bgColor="marker-template-secondary_highlighted_template-bg"/>
    116.     <Style name="marker.line" color="marker-line"/>
    117.     <Style name="marker.ruler" color="marker-ruler"/>
    118.     <Style name="marker.whitespace" color="marker-whitespace"/>
    119.     <Style name="marker.invalidline" color="marker-invalidline"/>
    120.     <Style name="marker.bracket" color="marker-bracket" bgColor="marker-bracket-bg"/>
    121.     <Style name="marker.bookmark.color1" color="marker-bookmark-color1"/>
    122.     <Style name="marker.bookmark.color2" color="marker-bookmark-color2"/>
    123.    
    124.     <Style name="linenumber" color="linenumber" bgColor="linenumber-bg"/>
    125.     <Style name="linenumber.highlight" color="linenumber"/>
    126.    
    127.     <Style name="iconbar" color="iconbar"/>
    128.     <Style name="iconbar.separator" color="iconbar-separator"/>
    129.    
    130.     <Style name="fold" color="fold" bgColor="fold-bg"/>
    131.     <Style name="fold.highlight" color="fold-highlight"/>
    132.     <Style name="fold.togglemarker" color="fold-togglemarker"/>
    133.    
    134.     <!-- highlighting styles -->
    135.    
    136.     <Style name="comment" color="comment"/>
    137.  
    138.     <Style name="text.preprocessor" color="text-preprocessor"/>
    139.     <Style name="text.markup" color="text-markup"/>
    140.    
    141.     <Style name="constant" color="constant" weight="bold"/>
    142.     <Style name="constant.language" color="constant-language" weight="bold"/>
    143.  
    144.     <Style name="string" color="string"/>
    145.     <Style name="string.single" color="string-single"/>
    146.     <Style name="string.double" color="string-double"/>
    147.     <Style name="string.other" color="string-other"/>
    148.    
    149.     <Style name="keyword" color="keyword" weight="bold">
    150.     <Style name="access"/>
    151.     <Style name="namespace" color="keyword-namespace" weight="bold"/>
    152.     <Style name="property" color="keyword-property" weight="bold"/>
    153.     <Style name="modifier" color="keyword-modifier" weight="bold"/>
    154.     <Style name="type" color="keyword-type" weight="bold"/>
    155.     <Style name="declaration" color="keyword-declaration" weight="bold"/>
    156.     <Style name="operator" color="keyword-operator"/>
    157.     <Style name="operator.declaration" color="keyword-operator-declaration" weight="bold"/>
    158.     <Style name="selection" color="keyword-selection" weight="bold"/>
    159.     <Style name="iteration" color="keyword-iteration" weight="bold"/>
    160.     <Style name="jump" color="keyword-jump" weight="bold"/>
    161.     <Style name="context" color="keyword-context" />
    162.     <Style name="exceptions" color="keyword-exceptions" weight="bold"/>
    163.     <Style name="parameter" color="keyword-parameter" weight="bold"/>
    164.     <Style name="misc" color="keyword-misc"/>
    165.     <Style name="semantic.type" color="keyword-semantic-type" weight="bold"/>
    166.     </Style>
    167.    
    168. </EditorStyle>
    169.  
     
    Last edited: Jul 29, 2011
  18. tatoforever

    tatoforever

    Joined:
    Apr 16, 2009
    Posts:
    4,369
    What i really like to see in monodevelop is better syntax/error highlight improvements.
    Undeclared variable usage aren't highlighted, casting non valid types are also ignored (unless you compile your code which takes ages btw). It will be nice to have them highlighted as in Visual Studio.
    I've also tried to open my project solution over a network and it works fine (supplying manually all the dependencies) but Unity keeps modifying the solution every time i close it, which means that i have to re-convert the solution over and over again in order to make it VS2010 compatible!
    He*l i miss Visual Studio, MonoDevelop completely su*k (sorry for the kind words).
     
  19. cybereality

    cybereality

    Joined:
    Sep 6, 2011
    Posts:
    3
    @guavaman: Thanks so much man. You totally saved me.

    So here is my color scheme, its dark blue tint. Don't understand how people code on white background, that's how you go blind at 40.

    Code (csharp):
    1. <!-- CyberStyle.xml by cybereality -->
    2.  
    3. <EditorStyle name="CyberStyle" _description="Dark colorful scheme by cybereality">
    4.  
    5.     <!-- color palette -->
    6.     <Color name="kiwi-green" value="#6ae113"/>
    7.     <Color name="blood-red" value="#fb1f25"/>
    8.     <Color name="almost-white" value="#fbfbfb"/>
    9.     <Color name="light-gray" value="#dcdcdc"/>
    10.     <Color name="nice-blue" value="#1281e8"/>
    11.     <Color name="light-blue" value="#b0cde8"/>
    12.     <Color name="bg-gray" value="#46465b"/>
    13.     <Color name="bg-gray-dark" value="#242431"/>
    14.     <Color name="bg-gray-darker" value="#101016"/>
    15.    
    16.     <Color name="light-orange" value="#ffbf31"/>
    17.     <Color name="hot-purple" value="#ec0ad9"/>
    18.    
    19.     <Color name="comment-green" value="#008000"/>
    20.     <Color name="keyword-blue" value="#0000ff"/>
    21.     <Color name="skyblue" value="#204a87"/>
    22.     <Color name="aluminium1" value="#eeeeec"/>
    23.     <Color name="aluminium2" value="#d3d7cf"/>
    24.     <Color name="aluminium3" value="#babdb6"/>
    25.     <Color name="aluminium4" value="#888a85"/>
    26.     <Color name="aluminium5" value="#555753"/>
    27.     <Color name="aluminium6" value="#2e3436"/>
    28.     <Color name="darkblue" value="#00007f"/>
    29.     <Color name="medred" value="#a31515"/>
    30.     <Color name="medcyan" value="#2b91af"/>
    31.     <Color name="medcyan2" value="#007f7f"/>
    32.     <Color name="red" value="#cc0000"/>
    33.     <Color name="paleblue" value="#bfd2f9"/>
    34.    
    35.     <!-- environment -->
    36.     <Style name="text" color="almost-white" bgColor="bg-gray-dark"/>
    37.     <Style name="text.selection" color="light-gray" bgColor="bg-gray"/>
    38.     <Style name="text.background.searchresult" color="bg-gray-darker"/>
    39.    
    40.     <Style name="text.link" color="skyblue"/>
    41.    
    42.     <Style name="caret" color="black" bgColor="white"/>
    43.    
    44.     <Style name="marker.line" color="aluminium1"/>
    45.    
    46.     <Style name="marker.ruler" color="aluminium3"/>
    47.     <Style name="marker.whitespace" color="medcyan"/>
    48.     <Style name="marker.invalidline" color="red"/>
    49.     <Style name="marker.bracket" color="aluminium4" bgColor="aluminium1"/>
    50.    
    51.     <Style name="marker.bookmark.color1" color="black"/>
    52.     <Style name="marker.bookmark.color2" color="paleblue"/>
    53.    
    54.     <Style name="linenumber" color="white" bgColor="bg-gray-darker"/>
    55.     <Style name="linenumber.highlight" color="bg-gray"/>
    56.    
    57.     <Style name="iconbar" color="aluminium1"/>
    58.     <Style name="iconbar.separator" color="aluminium3"/>
    59.    
    60.     <Style name="fold" color="aluminium3" bgColor="white"/>
    61.     <Style name="fold.highlight" color="aluminium5"/>
    62.     <Style name="fold.togglemarker" color="black"/>
    63.    
    64.     <!-- highlighting -->
    65.     <Style name="comment" color="kiwi-green"/>
    66.  
    67.     <Style name="text.preprocessor" color="hot-purple"/>
    68.     <Style name="text.markup" color="nice-blue"/>
    69.    
    70.     <Style name="constant" color="light-blue"/>
    71.     <Style name="constant.language" color="nice-blue" weight="bold"/>
    72.  
    73.     <Style name="string" color="blood-red"/>
    74.     <Style name="string.single" color="blood-red"/>
    75.     <Style name="string.double" color="blood-red"/>
    76.     <Style name="string.other" color="blood-red"/>
    77.    
    78.     <Style name="keyword" color="nice-blue" weight="bold">
    79.         <Style name="access" color="black" weight="bold" />
    80.         <Style name="namespace" color="light-orange" weight="bold"/>
    81.         <Style name="property" color="nice-blue" weight="bold"/>
    82.         <Style name="modifier" color="nice-blue" weight="bold"/>
    83.         <Style name="type" color="nice-blue" weight="bold"/>
    84.         <Style name="declaration" color="nice-blue" weight="bold"/>
    85.         <Style name="operator" color="almost-white"/>
    86.         <Style name="operator.declaration" color="light-gray" weight="bold"/>
    87.         <Style name="selection" color="nice-blue" weight="bold"/>
    88.         <Style name="iteration" color="nice-blue" weight="bold"/>
    89.         <Style name="jump" color="nice-blue" weight="bold"/>
    90.         <Style name="context" color="nice-blue" />
    91.         <Style name="exceptions" color="light-orange" weight="bold"/>
    92.         <Style name="parameter" color="nice-blue" weight="bold"/>
    93.     </Style>
    94.    
    95. </EditorStyle>
     
  20. iindigo

    iindigo

    Joined:
    Aug 8, 2011
    Posts:
    37
    I wouldn't know since I haven't jumped into Unity development yet (other things in life have kept me busy), but is there anything special that MonoDevelop does that isn't covered by a standard programming text editor? If not, TextMate on OS X and Sublime Text on Windows with Mono plugins installed might make snappier, more flexible editors than MonoDevelop. I use TextMate for Lua, PHP, HTML, and CSS and it works quite beautifully.

    Of course, if MD is more like an IDE then these might not work as complete replacements, but could still be used for the text editing portion of projects.