diff --git a/src/views/branchNode.ts b/src/views/branchNode.ts index 64364ca..166f537 100644 --- a/src/views/branchNode.ts +++ b/src/views/branchNode.ts @@ -65,10 +65,10 @@ export class BranchNode extends ExplorerRefNode { if (this.branch.state.ahead || this.branch.state.behind) { if (this.branch.state.behind) { - iconSuffix = '-yellow'; + iconSuffix = '-red'; } if (this.branch.state.ahead) { - iconSuffix = this.branch.state.behind ? '-red' : '-green'; + iconSuffix = this.branch.state.behind ? '-yellow' : '-green'; } } } diff --git a/src/views/statusNode.ts b/src/views/statusNode.ts index 07f2f13..39d5edc 100644 --- a/src/views/statusNode.ts +++ b/src/views/statusNode.ts @@ -83,10 +83,10 @@ export class StatusNode extends ExplorerNode { hasChildren = true; if (status.state.behind) { - iconSuffix = '-yellow'; + iconSuffix = '-red'; } if (status.state.ahead) { - iconSuffix = status.state.behind ? '-red' : '-green'; + iconSuffix = status.state.behind ? '-yellow' : '-green'; } } }