Skip to content

Commit

Permalink
Accessibility: revision grid branch colors (#9207)
Browse files Browse the repository at this point in the history
revert 5572115

(cherry picked from commit 1199e3f) (#9207)
  • Loading branch information
gerhardol committed Jun 20, 2021
1 parent 920edbb commit 892e5a2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions GitExtUtils/GitUI/Theming/AppColorDefaults.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ public static class AppColorDefaults
{ AppColor.HighlightAllOccurences, Color.LightYellow },
{ AppColor.Tag, Color.DarkBlue },
{ AppColor.Graph, Color.DarkRed },
{ AppColor.Branch, Color.FromArgb(34, 166, 57) },
{ AppColor.RemoteBranch, Color.FromArgb(230, 99, 99) },
{ AppColor.Branch, Color.FromArgb(0x00, 0x80, 0x00) },
{ AppColor.RemoteBranch, Color.FromArgb(0x8b, 0x00, 0x09) },
{ AppColor.DiffSection, Color.FromArgb(230, 230, 230) },
{ AppColor.DiffRemoved, Color.FromArgb(255, 200, 200) },
{ AppColor.DiffRemovedExtra, Color.FromArgb(255, 165, 165) },
Expand Down
4 changes: 2 additions & 2 deletions GitUI/Themes/invariant.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
.HighlightAllOccurences { color: #ffffe0; }
.Tag { color: #00008b; }
.Graph { color: #8b0000; }
.Branch { color: #22a639; }
.RemoteBranch { color: #e66363; }
.Branch { color: #008000; }
.RemoteBranch { color: #8b0009; }
.DiffSection { color: #e6e6e6; }
.DiffRemoved { color: #ffc8c8; }
.DiffRemovedExtra { color: #ffa5a5; }
Expand Down

0 comments on commit 892e5a2

Please sign in to comment.