Skip to content
This repository was archived by the owner on Aug 25, 2018. It is now read-only.

Commit 6a0f4d9

Browse files
committed
🐛 Make git status colors consistent
1 parent f409987 commit 6a0f4d9

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

styles/git.less

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.status { .text(normal); }
2-
.status-added { .text(info); }
3-
.status-ignored { .text(subtle); }
4-
.status-modified { .text(warning); }
5-
.status-removed { .text(error); }
6-
.status-renamed { .text(success); }
2+
.status-added { .text(success); } // green
3+
.status-ignored { .text(subtle); } // faded
4+
.status-modified { .text(warning); } // orange
5+
.status-removed { .text(error); } // red
6+
.status-renamed { .text(info); } // blue

styles/lists.less

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131

3232
}
3333

34-
.generate-list-item-status-color(@text-color-subtle, ignored);
3534
.generate-list-item-status-color(@text-color-added, added);
36-
.generate-list-item-status-color(@text-color-renamed, renamed);
35+
.generate-list-item-status-color(@text-color-ignored, ignored);
3736
.generate-list-item-status-color(@text-color-modified, modified);
3837
.generate-list-item-status-color(@text-color-removed, removed);
38+
.generate-list-item-status-color(@text-color-renamed, renamed);
3939

4040
li:not(.list-nested-item).selected,
4141
li.list-nested-item.selected > .list-item {

styles/ui-variables.less

+5-5
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@
139139
@text-color-warning: hsl( 37, 90%, 44%);
140140
@text-color-error: hsl( 0, 90%, 56%);
141141

142-
@text-color-ignored: @text-color-subtle;
143-
@text-color-added: @text-color-success;
144-
@text-color-renamed: @text-color-info;
145-
@text-color-modified: @text-color-warning;
146-
@text-color-removed: @text-color-error;
142+
@text-color-added: @text-color-success; // green
143+
@text-color-ignored: @text-color-subtle; // faded
144+
@text-color-modified: @text-color-warning; // orange
145+
@text-color-removed: @text-color-error; // red
146+
@text-color-renamed: @text-color-info; // blue
147147

148148

149149
// Sizes

0 commit comments

Comments
 (0)