mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-01 12:42:59 -05:00
💄
This commit is contained in:
@@ -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%",
|
||||
|
||||
@@ -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.",
|
||||
|
||||
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user