I'm using Googles excellent Code Prettify and I'm quite happy with it.

But: Does anybody happen to have a alternate CSS stylesheet so it'll render a bit more like Visual Studios default coloring? Green comments, red text/strings, etc.

link|improve this question

73% accept rate
This seems more appropriate for superuser.com, no? – sfarbota Nov 3 '09 at 18:44
2  
Hmm, I don't know: I was hoping somebody have had the same "problem" and modified the CSS accordingly. So it takes a tiny bit of programming.... – Jakob Gade Nov 3 '09 at 23:55
feedback

2 Answers

up vote 11 down vote accepted

It took me a while but I replicated exactly my Visual Studio's color configuration. Enjoy.

.com { color: #008000; }
.str, .tag { color: #A31515; }
.kwd, .atv { color: #0000FF; }
.typ { color: #2B91AF; }
.lit, .atn { color: #FF0000; }
.pun, .pln { color: #000000; }
.dec { color: purple; }

Comments are green, strings/tags reddish, keywords blue, types bluish, numbers red, punctuation black, declarations purple.

link|improve this answer
Works as advertized - absolutely brilliant! Thanks! :) – Jakob Gade Feb 1 '10 at 4:45
feedback

I don't use Visual Studio so I don't know the color scheme but Prettify is easy enough to modify.

  1. Download the full version (not the small version, as the CSS has been minified)
  2. Open the prettify.css file in the src directory. There are 10 or so "elements" you can change the color of.
  3. Grab the hex values of each color out of Visual Studio (if available; if not, you could use a color picker app to obtain the hex values).
  4. Replace the color attribute for each element in the CSS file.

I'd throw it together myself really quick if I knew the colors but hopefully this helps!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.