如何更改IPython(Jupyter)中代码的高亮颜色样式? [英] How do I change the highlight color style of the code in the IPython(Jupyter)?

查看:3401
本文介绍了如何更改IPython(Jupyter)中代码的高亮颜色样式?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的问题显示在下面的图片中。我想更改下面的图片中红色矩形指定的代码区域的高亮颜色样式。但是我不知道我应该改变哪种标记。

My question is showed in the following picutre. I want to change the highlight color style of the code region that is specified by the red rectangle in the picutre below. But I dont' know which token I should change style of.

我的pygment样式设置代码低于

My pygment style setting code is below

from pygments.style import Style
from pygments.token import Keyword, Name, Comment, String, Error, \
     Number, Operator, Generic, Whitespace, Token


class EmacsStyle(Style):
    """
    The default style (inspired by Emacs 22).
    """

    background_color = "#333333"
    highlight_color = "#a7a695"
    default_style = ""

    styles = {
        Token:                     "#ffffff",
        Whitespace:                "#bbbbbb",
        Comment:                   "italic #008800",
        Comment.Preproc:           "noitalic",
        Comment.Special:           "noitalic bold",

        Keyword:                   "bold #B541FF",
        Keyword.Pseudo:            "nobold",
        Keyword.Type:              "bold #00BB00",

        Operator:                  "#666666",
        Operator.Word:             "bold #AA22FF",

        Name.Builtin:              "#B541FF",
        Name.Function:             "#00A000",
        Name.Class:                "#4242FF",
        Name.Namespace:            "bold #4242FF",
        Name.Exception:            "bold #D2413A",
        Name.Variable:             "#B8860B",
        Name.Constant:             "#880000",
        Name.Label:                "#A0A000",
        Name.Entity:               "bold #999999",
        Name.Attribute:            "#BB4444",
        Name.Tag:                  "bold #008000",
        Name.Decorator:            "#AA22FF",

        String:                    "#BB4444",
        String.Doc:                "italic",
        String.Interpol:           "bold #BB6688",
        String.Escape:             "bold #BB6622",
        String.Regex:              "#BB6688",
        String.Symbol:             "#B8860B",
        String.Other:              "#008000",
        Number:                    "#666666",

        Generic.Heading:           "bold #4242FF",
        Generic.Subheading:        "bold #B541FF",
        Generic.Deleted:           "#D2413A",
        Generic.Inserted:          "#00A000",
        Generic.Error:             "#FF0000",
        Generic.Emph:              "italic",
        Generic.Strong:            "bold",
        Generic.Prompt:            "bold #4242FF",
        Generic.Output:            "#888",
        Generic.Traceback:         "#04D",

        Error:                     "border:#FF0000"
    }


推荐答案

我发现了一个改变颜色的IPython魔术命令(在Mac上):

I've found a IPython magic command to change the color (on Mac):

%colors NoColor

或(在Linux上)

%colors Linux

这不是一个完美的分辨率,但有效。

This is not a perfect resolution but works.

这篇关于如何更改IPython(Jupyter)中代码的高亮颜色样式?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆