Skip to content

Commit f107801

Browse files
committed
Darken the tooltip text a bit
1 parent bd85ca3 commit f107801

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source/ExcelDna.IntelliSense/ToolTipForm.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ public ToolTipForm(IntPtr hwndOwner)
5353
{ FontStyle.Bold | FontStyle.Italic, new Font("Segoe UI", 9, FontStyle.Bold | FontStyle.Italic) },
5454

5555
};
56-
_textBrush = new SolidBrush(Color.FromArgb(68, 68, 68));
56+
//_textBrush = new SolidBrush(Color.FromArgb(68, 68, 68)); // Best matches Excel's built-in color, but I think a bit too light
57+
_textBrush = new SolidBrush(Color.FromArgb(52, 52, 52));
5758
_linkBrush = new SolidBrush(Color.Blue);
5859
_borderPen = new Pen(Color.FromArgb(195, 195, 195));
5960
_borderLightPen = new Pen(Color.FromArgb(225, 225, 225));

0 commit comments

Comments
 (0)