This commit is contained in:
João Moreno 2020-09-28 16:33:29 +02:00
parent c2311f2116
commit 5a18ae699c
No known key found for this signature in database
GPG key ID: 896B853774D1A575
3 changed files with 20 additions and 31 deletions

View file

@ -1922,33 +1922,6 @@
"highContrast": "#E2C08D"
}
},
{
"id": "gitDecoration.stageAddedResourceForeground",
"description": "%colors.stageAdded%",
"defaults": {
"light": "#0a7a62",
"dark": "#02c39a",
"highContrast": "#00cea1"
}
},
{
"id": "gitDecoration.stageModifiedResourceForeground",
"description": "%colors.stageModified%",
"defaults": {
"light": "#FF661F",
"dark": "#FFAB85",
"highContrast": "#ca541d"
}
},
{
"id": "gitDecoration.stageDeletedResourceForeground",
"description": "%colors.stageDeleted%",
"defaults": {
"light": "#ad0707",
"dark": "#c74e39",
"highContrast": "#c74e39"
}
},
{
"id": "gitDecoration.deletedResourceForeground",
"description": "%colors.deleted%",
@ -1976,6 +1949,24 @@
"highContrast": "#A7A8A9"
}
},
{
"id": "gitDecoration.stageModifiedResourceForeground",
"description": "%colors.stageModified%",
"defaults": {
"light": "#895503",
"dark": "#E2C08D",
"highContrast": "#E2C08D"
}
},
{
"id": "gitDecoration.stageDeletedResourceForeground",
"description": "%colors.stageDeleted%",
"defaults": {
"light": "#ad0707",
"dark": "#c74e39",
"highContrast": "#c74e39"
}
},
{
"id": "gitDecoration.conflictingResourceForeground",
"description": "%colors.conflict%",

View file

@ -168,9 +168,8 @@
"submenu.stash": "Stash",
"colors.added": "Color for added resources.",
"colors.modified": "Color for modified resources.",
"colors.stageAdded": "Color for resources which have been staged.",
"colors.stageModified": "Color for resources which have been staged, but modified.",
"colors.stageDeleted": "Color for resources which have been staged, but deleted.",
"colors.stageModified": "Color for modified resources which have been staged.",
"colors.stageDeleted": "Color for deleted resources which have been staged.",
"colors.deleted": "Color for deleted resources.",
"colors.untracked": "Color for untracked resources.",
"colors.ignored": "Color for ignored resources.",

View file

@ -213,7 +213,6 @@ export class Resource implements SourceControlResourceState {
case Status.DELETED:
return new ThemeColor('gitDecoration.deletedResourceForeground');
case Status.INDEX_ADDED:
return new ThemeColor('gitDecoration.stageAddedResourceForeground');
case Status.INTENT_TO_ADD:
return new ThemeColor('gitDecoration.addedResourceForeground');
case Status.INDEX_RENAMED: