Slashdot Mirror


User: livion462

livion462's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Find the ideal font color based on background (bg) on What Font Color Is Best For Eyes? · · Score: 1

    using System.Graphics.Drawing;

    public Color IdealTextColor(Color bg)
    {
            int nThreshold = 105;
            int bgDelta = Convert.ToInt32((bg.R * 0.299) + (bg.G * 0.587) + (bg.B * 0.114));
            Color foreColor = (255 - bgDelta nThreshold) ? Color.Black : Color.White;
            return foreColor;
    }