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.
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.
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: #800080; }
Comments are green, strings/tags reddish, keywords blue, types bluish, numbers red, punctuation black, declarations purple.
For those who are interested. This is the color scheme for the Dark Color Theme. Made with the VS 2019 colors.
.darkmode {
.com {
color: #57A64A;
}
.str, .tag {
color: #D69D85;
}
.kwd, .atv {
color: #569CD6;
}
.typ {
color: #4EC9B0;
}
.lit, .atn {
color: #B5CEA8;
}
.pun, .pln {
color: #DCDCDC;
}
.dec {
color: #C284C2;
}
}