将Atom的“ git diff”包主题更改为Github主题

时间:2018-10-10 10:35:08

标签: atom-editor git-diff

Atom的Git Diff软件包的默认主题是

enter image description here 它显示dark green中的更改,dark red中已删除的行,并具有black背景。

有没有一种方法可以显示差异,如下图所示,请参见Github控制台。 enter image description here

我尝试将下面的代码添加到styles.less文件中,但是该代码不会突出显示已修改的文本,并且不会修改未暂存的更改中的颜色,但是会在处理文件时修改颜色。(请参阅图片代码下方)

atom-text-editor .gutter .line-number {
&[class*="git"] {
    padding-left: 0 !important;
    border-left: none !important;
    color: #ffffff;
    opacity: 1;
}

&.git-line-added {
    background-color: rgba(168, 255, 96, 0.6);
}

&.git-line-modified {
    background-color: rgba(233, 192, 98, 0.6);
}

&.git-line-removed {
    background-color: rgba(204, 102, 102, 0.6);
}}

enter image description here

0 个答案:

没有答案