How to get Google Prettify to render more like Visual Studio

前端 未结 3 606
南方客
南方客 2020-12-13 02:21

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

3条回答
  •  轮回少年
    2020-12-13 02:54

    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;
        }
    }
    

提交回复
热议问题