summaryrefslogtreecommitdiff
path: root/src/fl_color.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2006-09-25 16:36:52 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2006-09-25 16:36:52 +0000
commitfaddffcf182e60b5ed41781e350dc1fddedb6fac (patch)
tree01a0f22ec02fc64d076a87de287b83ee2df70f7c /src/fl_color.cxx
parent69dcc7c685455496ca9654e53e984bd4dec9fd6d (diff)
src/Fl_Button.cxx:
- Fl_Button::draw(): Only use fl_contrast() on the label color when value() is non-zero. src/fl_color.cxx: - fl_contrast(): Require at least 1/3 (85) instead of 1/2 (127) for contrast against the background. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@5489 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/fl_color.cxx')
-rw-r--r--src/fl_color.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fl_color.cxx b/src/fl_color.cxx
index d2dcefb1c..999287468 100644
--- a/src/fl_color.cxx
+++ b/src/fl_color.cxx
@@ -378,8 +378,8 @@ Fl_Color fl_contrast(Fl_Color fg, Fl_Color bg) {
l2 = ((c2 >> 24) * 31 + ((c2 >> 16) & 255) * 61 + ((c2 >> 8) & 255) * 8) / 100;
// Compare and return the contrasting color...
- if ((l1 - l2) > 127) return fg;
- else if ((l2 - l1) > 127) return fg;
+ if ((l1 - l2) > 85) return fg;
+ else if ((l2 - l1) > 85) return fg;
else if (l2 > 127) return FL_BLACK;
else return FL_WHITE;
}