Criei (ou tentei criar) um tema para o SyntaxHighlighter Evolved baseado nas cores do Visual Studio. Ficaram boas para código, estranhas para xml ou aspx. De qualquer forma, é gratuito e basta seguir as instruções abaixo para instalá-lo. Pode modificar a vontade. O endereço de download é http://www.marlosfabris.com/download.html.
I tried to create a new theme to SyntaxHighlighter Evolved, based on Visual Studio colors. It’s a little bit weird for xml code (also aspx), but it is very close to Visual Studio coloring for other languages. Feel free to modify it as you wish. It’s completely free. To download it, go to http://www.marlosfabris.com/download.html.
Instalação/Installation:
- Abra o arquivo para edição “syntaxhighlighter/syntaxhighlighter.php“.
Edit the file “syntaxhighlighter/syntaxhighlighter.php“. - Localize a string:
'none' Â Â Â =>; __( '[None]', Â Â Â 'syntaxhighlighter'),
Find the string:
'none' Â Â Â =>; __( '[None]', Â Â Â 'syntaxhighlighter'),
- Antes da linha encontrada, insira a linha:
'vs' Â Â Â Â =>; __( 'Visual Studio','syntaxhighlighter'),
Insert the string below, before the previous string found:
'vs' Â Â Â Â =>; __( 'Visual Studio','syntaxhighlighter')
- Localize a string “// Register theme stylesheets”, sem as asplas duplas.
Find the string “// Register theme stylesheets”, without the double quotes. - Adicione a linha abaixo depois da string encontrada.
Add the line below after the found string.
- Copie o arquivo de tema “shThemeVS.css” para a pasta “wp-content/plugins/syntaxhighlighter/syntaxhighlighter/styles/“.
Copy the theme file  named “shThemeVS.css” to the folder “wp-content/plugins/syntaxhighlighter/syntaxhighlighter/styles/“.
wp_register_style( Â 'syntaxhighlighter-theme-vs', Â Â plugins_url('syntaxhighlighter/syntaxhighlighter/styles/shThemeVS.css'), Â Â array('syntaxhighlighter-core'), $this->agshver );