Skip to content

Commit

Permalink
More meaningful and (I hope) pleasant default colors (#11748)
Browse files Browse the repository at this point in the history
* Selected revision (blue) => Same author (**light** blue)
* Selected text (mauve) => Same text (**light** mauve)
  • Loading branch information
pmiossec committed May 23, 2024
1 parent 1c78100 commit 967ecc4
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 @@ -8,8 +8,8 @@ public static class AppColorDefaults
new()
{
{ AppColor.OtherTag, Color.Gray },
{ AppColor.AuthoredHighlight, Color.LightYellow },
{ AppColor.HighlightAllOccurences, Color.LightYellow },
{ AppColor.AuthoredHighlight, Color.FromArgb(0xea, 0xf1, 0xff) },
{ AppColor.HighlightAllOccurences, Color.FromArgb(0xe8, 0xe8, 0xff) },
{ AppColor.Tag, Color.DarkBlue },
{ AppColor.Graph, Color.DarkRed },
{ AppColor.Branch, Color.FromArgb(0x00, 0x80, 0x00) },
Expand Down
4 changes: 2 additions & 2 deletions GitUI/Themes/invariant.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

/* Application colors */
.OtherTag { color: #808080; }
.AuthoredHighlight { color: #ffffe0; }
.HighlightAllOccurences { color: #ffffe0; }
.AuthoredHighlight { color: #eaf1ff; }
.HighlightAllOccurences { color: #e8e8ff; }
.Tag { color: #00008b; }
.Graph { color: #8b0000; }
.Branch { color: #008000; }
Expand Down

0 comments on commit 967ecc4

Please sign in to comment.