Skip to content

Commit

Permalink
Fix light line number colors
Browse files Browse the repository at this point in the history
  • Loading branch information
praeclarum committed Dec 13, 2018
1 parent 6962279 commit 014abd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Editor/Mac/Theme.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public Theme (bool isDark, double fontScale)
Font = NativeFont.BoldSystemFontOfSize (NativeFont.SystemFontSize),
}.Dictionary;
LineNumberFont = Font (codeFont.GetFontName (), (int)(NativeFont.SystemFontSize * 0.8 * fontScale + 0.5));
LineNumberColor = isDark ? Gray (255).ColorWithAlphaComponent (0.125f) : Gray (255).ColorWithAlphaComponent (0.75f);
LineNumberColor = !isDark ? Gray (0).ColorWithAlphaComponent (0.25f) : Gray (255).ColorWithAlphaComponent (0.125f);
LineNumberAttributes = MakeLineNumberAttrs ();
ColorAttributes = Enumerable.Repeat (defaultAttrs, 16).ToArray ();

Expand Down

0 comments on commit 014abd9

Please sign in to comment.