如何让 Google Pretify 渲染得更像 Visual Studio

发布于 2024-08-10 00:21:54 字数 201 浏览 7 评论 0原文

我正在使用 Google 出色的Code Prettify,我对此非常满意。

但是:是否有人碰巧有一个替代的 CSS 样式表,因此它会渲染得更像 Visual Studios 默认颜色?绿色注释、红色文本/字符串等。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

为你拒绝所有暧昧 2024-08-17 00:21:54

我花了一段时间,但我完全复制了我的 Visual Studio 的颜色配置。享受。

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

注释为绿色,字符串/标签为红色,关键字为蓝色,类型为蓝色,数字为红色,标点符号为黑色,声明为紫色。

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.

悲凉≈ 2024-08-17 00:21:54

我不使用 Visual Studio,所以我不知道配色方案,但 Prettify 很容易修改。

  1. 下载完整版本(不是小版本,因为 CSS 已缩小)
  2. 打开 src 目录中的 prettify.css 文件。您可以更改大约 10 个“元素”的颜色。
  3. 从 Visual Studio 中获取每种颜色的十六进制值(如果可用;如果没有,您可以使用颜色选择器应用程序来获取十六进制值)。
  4. 替换 CSS 文件中每个元素的颜色属性。

如果我知道颜色,我会很快自己拼凑起来,但希望这会有所帮助!

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!

温馨耳语 2024-08-17 00:21:54

对于那些有兴趣的人。这是深色主题的配色方案。采用 VS 2019 颜色制成。

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

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;
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文