改变jupyter的匹配括号颜色

时间:2016-09-25 11:00:28

标签: css jupyter-notebook jupyter codemirror

如何更改jupyter中匹配括号的颜色?当它们显示为匹配对时,常规,方形和花括号都以亮绿色显示,并且在浅色背景中很难看到。

通过添加<p> <?php echo"hello p tag i am from php "; ?> </p> 修改~/.jupyter/custom/custom.css似乎对我没有任何帮助。

2 个答案:

答案 0 :(得分:1)

在〜/ .jupyter / custom / custom.css中尝试添加以下内容:

.cm-s-ipython .CodeMirror-matchingbracket { color: black !important;} 如果您不希望颜色为黑色,则可以使用您喜欢的任何webcolors

答案 1 :(得分:0)

~/.jupyter/custom/custom.css中,我使用以下命令更改了方括号及其背景颜色(以下内容将其更改为带有黄色背景的红色,但您可以根据需要对其进行修改)

div.CodeMirror span.CodeMirror-matchingbracket {
    color: #FF0000;
    background-color: #FFFF00;
}