如何根据背景颜色确定白色或黑色字体颜色?


218

我想显示一些像这个例子的图像替代文字

填充颜​​色由数据库中的字段以十六进制颜色决定(例如:ClassX-> Color:#66FFFF)。现在,我想显示具有所选颜色的填充上方的数据(如上图所示),但我需要知道颜色是深色还是浅色,因此我知道单词应为白色还是黑色。有办法吗?ks


Answers:


345

以我对类似问题的回答为基础

您需要将十六进制代码分成三部分,以获取单独的红色,绿色和蓝色强度。代码的每2位数字以十六进制(基数16)表示。在这里,我将不介绍转换的详细信息,因为它们很容易查找。

一旦获得了每种颜色的强度,就可以确定颜色的整体强度并选择相应的文本。

if (red*0.299 + green*0.587 + blue*0.114) > 186 use #000000 else use #ffffff

阈值186是基于理论的,但是可以根据口味进行调整。根据下面的评论,阈值150可能对您更好。


编辑:上面的操作很简单,并且运行良好,并且似乎在StackOverflow上得到了很好的接受。但是,以下评论之一表明,在某些情况下,它可能导致不遵守W3C准则的情况。因此,我得出了一个修改后的表格,该表格始终根据准则选择最高的对比度。如果你没有需要遵循W3C规则,那么我会用上述简单的公式坚持。

W3C建议书中用于对比的公式为(L1 + 0.05) / (L2 + 0.05),其中L1L2最浅颜色的亮度,是最深颜色的亮度,范围为0.0-1.0。黑色的亮度为0.0,白色的亮度为1.0,因此用这些值替换可以确定对比度最高的值。如果黑色的对比度大于白色的对比度,请使用黑色,否则请使用白色。给定要测试的颜色的亮度,L测试将变为:

if (L + 0.05) / (0.0 + 0.05) > (1.0 + 0.05) / (L + 0.05) use #000000 else use #ffffff

这将代数简化为:

if L > sqrt(1.05 * 0.05) - 0.05

或大约:

if L > 0.179 use #000000 else use #ffffff

剩下的唯一事情就是计算L准则中给出了该公式,看起来是从sRGB到线性RGB的转换,随后是ITU-R建议BT.709的亮度。

for each c in r,g,b:
    c = c / 255.0
    if c <= 0.03928 then c = c/12.92 else c = ((c+0.055)/1.055) ^ 2.4
L = 0.2126 * r + 0.7152 * g + 0.0722 * b

阈值0.179不应更改,因为它与W3C准则有关。如果发现结果不符合您的喜好,请尝试上述更简单的公式。


2
Tks马克。尝试了一些更改:仅通过第一个数字计算出红色,绿色和蓝色(精确度较低,但是权重更大的数字),而不是使用186的9。对我来说效果更好一些,尤其是绿色。
DJPB

2
这个公式有很多错误。举一个例子,它使黄色#D6B508的值为171,因此为白色的对比度。但是,对比度应为黑色(在此处确认:webaim.org/resources/contrastchecker
McGarnagle 2014年

1
@MarkRansom是的,在我看来,黑色与黄色相比看起来要好得多。由于我只使用有限的几种颜色,因此我能够将截止值从186更改为较低的值。
McGarnagle 2014年

3
这是另一个演示,比较了此答案中给出的两个公式。使用颜色选择器(在最近的Firefox或Chrome中),您可以检查任何颜色的对比度。
切斯通

3
在玩完@chetstone的演示后,我认为简单公式对我来说最合适,除了我不同意阈值建议。根据纯绿色的结果,我尝试将阈值设置为149,在我看来效果更好。 我做了一个愚蠢的小提琴来证明这个 ; 您可以尝试更改左上角的阈值以查看原始建议。
Miral

29

我不相信此代码,因为它不是我的,但我将其留在此处,以便其他人在将来快速找到:

根据Mark Ransoms的答案,这是简单版本的代码段:

function pickTextColorBasedOnBgColorSimple(bgColor, lightColor, darkColor) {
  var color = (bgColor.charAt(0) === '#') ? bgColor.substring(1, 7) : bgColor;
  var r = parseInt(color.substring(0, 2), 16); // hexToR
  var g = parseInt(color.substring(2, 4), 16); // hexToG
  var b = parseInt(color.substring(4, 6), 16); // hexToB
  return (((r * 0.299) + (g * 0.587) + (b * 0.114)) > 186) ?
    darkColor : lightColor;
}

这是高级版本的代码片段:

function pickTextColorBasedOnBgColorAdvanced(bgColor, lightColor, darkColor) {
  var color = (bgColor.charAt(0) === '#') ? bgColor.substring(1, 7) : bgColor;
  var r = parseInt(color.substring(0, 2), 16); // hexToR
  var g = parseInt(color.substring(2, 4), 16); // hexToG
  var b = parseInt(color.substring(4, 6), 16); // hexToB
  var uicolors = [r / 255, g / 255, b / 255];
  var c = uicolors.map((col) => {
    if (col <= 0.03928) {
      return col / 12.92;
    }
    return Math.pow((col + 0.055) / 1.055, 2.4);
  });
  var L = (0.2126 * c[0]) + (0.7152 * c[1]) + (0.0722 * c[2]);
  return (L > 0.179) ? darkColor : lightColor;
}

要使用它们,只需调用:

var color = '#EEACAE' // this can be any color
pickTextColorBasedOnBgColorSimple(color, '#FFFFFF', '#000000');

另外,感谢Alxchetstone


1
我使用了简单的函数,然后将其简化了一些:删除了最后两个参数isDark(bgColor)'color': isDark(color)?'white':'black'
并重

1
对我来说就像一个魅力。非常感谢你!在php中完成了,尽管只是简单地转换了语法和函数。
CezarBastos

18

怎么样(JavaScript代码)?

/**
 * Get color (black/white) depending on bgColor so it would be clearly seen.
 * @param bgColor
 * @returns {string}
 */
getColorByBgColor(bgColor) {
    if (!bgColor) { return ''; }
    return (parseInt(bgColor.replace('#', ''), 16) > 0xffffff / 2) ? '#000' : '#fff';
}

1
这在大多数情况下都有效,但是在某些情况下,例如i.imgur.com/3pOUDe5.jpg看起来很奇怪,背景颜色实际上是rgb(6,247,241);
madprops

对于尚未将颜色转换为rgb值的情况,这是一种相对便宜的方法来执行对比度计算(不是那太困难,只需额外的数学步骤)
frumbert

12

除了算术解决方案外,还可以使用AI神经网络。优点是您可以根据自己的喜好和需求对其进行定制(即,明亮的饱和红色上的灰白色文本看起来不错,并且与黑色一样可读)。

这是一个说明概念的简洁Javascript演示。您还可以在演示中直接生成自己的JS公式。

https://harthur.github.io/brain/

以下是一些图表,可帮助我弄清问题所在。在第一个图表中,亮度是常数128,而色相和饱和度却在变化。在第二张图表中,饱和度为常数255,而色相和明度变化。

在第一个图表中,亮度是常数128,而色相和饱和度则有所不同:

饱和度是常数255,而色相和明度会变化:


8

这是我的Java for Android解决方案:

// Put this method in whichever class you deem appropriate
// static or non-static, up to you.
public static int getContrastColor(int colorIntValue) {
    int red = Color.red(colorIntValue);
    int green = Color.green(colorIntValue);
    int blue = Color.blue(colorIntValue);
    double lum = (((0.299 * red) + ((0.587 * green) + (0.114 * blue))));
    return lum > 186 ? 0xFF000000 : 0xFFFFFFFF;
}

// Usage
// If Color is represented as HEX code:
String colorHex = "#484588";
int color = Color.parseColor(colorHex);

// Or if color is Integer:
int color = 0xFF484588;

// Get White (0xFFFFFFFF) or Black (0xFF000000)
int contrastColor = WhateverClass.getContrastColor(color);

2
真的“完美”吗?尝试使用纯绿色背景#00FF00。
安德烈亚斯·雷布兰德

没错,这并不是针对所有颜色经过测试的。。。。但是,谁将纯绿色背景用于并非旨在烦扰用户的内容?
mwieczorek '18

@mwieczorek依靠用户生成的内容或随机选择的颜色的人。
Marc Plano-Lesay

4

基于@MarkRansom的答案,我创建了一个PHP脚本,您可以在这里找到:

function calcC($c) {
    if ($c <= 0.03928) {
        return $c / 12.92;
    }
    else {
        return pow(($c + 0.055) / 1.055, 2.4);
    }
}

function cutHex($h) {
    return ($h[0] == "#") ? substr($h, 1, 7) : $h;
}

function hexToR($h) {
    return hexdec(substr(cutHex($h), 0, 2));
}

function hexToG($h) {
    return hexdec(substr(cutHex($h), 2, 2)); // Edited
}

function hexToB($h) {
    return hexdec(substr(cutHex($h), 4, 2)); // Edited
}

function computeTextColor($color) {
    $r = hexToR($color);
    $g = hexToG($color);
    $b = hexToB($color);
    $uicolors = [$r / 255, $g / 255, $b / 255];


    $c = array_map("calcC", $uicolors);

    $l = 0.2126 * $c[0] + 0.7152 * $c[1] + 0.0722 * $c[2];
    return ($l > 0.179) ? '#000000' : '#ffffff';
}

3

这是Mark Ransom的答案的快速版本,它是UIColor的扩展

extension UIColor {

// Get the rgba components in CGFloat
var rgba: (red: CGFloat, green: CGFloat, blue: CGFloat, alpha: CGFloat) {
    var red: CGFloat = 0, green: CGFloat = 0, blue: CGFloat = 0, alpha: CGFloat = 0

    getRed(&red, green: &green, blue: &blue, alpha: &alpha)

    return (red, green, blue, alpha)
}

/// Return the better contrasting color, white or black
func contrastColor() -> UIColor {
    let rgbArray = [rgba.red, rgba.green, rgba.blue]

    let luminanceArray = rgbArray.map({ value -> (CGFloat) in
        if value < 0.03928 {
            return (value / 12.92)
        } else {
            return (pow( (value + 0.55) / 1.055, 2.4) )
        }
    })

    let luminance = 0.2126 * luminanceArray[0] +
        0.7152 * luminanceArray[1] +
        0.0722 * luminanceArray[2]

    return luminance > 0.179 ? UIColor.black : UIColor.white
} }

2

这只是一个示例,当单击一个元素时,它将更改SVG复选标记的颜色。它将基于单击元素的背景颜色将选中标记颜色设置为黑色或白色。

checkmarkColor: function(el) {
    var self = el;
    var contrast = function checkContrast(rgb) {
        // @TODO check for HEX value

        // Get RGB value between parenthesis, and remove any whitespace
        rgb = rgb.split(/\(([^)]+)\)/)[1].replace(/ /g, '');

        // map RGB values to variables
        var r = parseInt(rgb.split(',')[0], 10),
            g = parseInt(rgb.split(',')[1], 10),
            b = parseInt(rgb.split(',')[2], 10),
            a;

        // if RGBA, map alpha to variable (not currently in use)
        if (rgb.split(',')[3] !== null) {
            a = parseInt(rgb.split(',')[3], 10);
        }

        // calculate contrast of color (standard grayscale algorithmic formula)
        var contrast = (Math.round(r * 299) + Math.round(g * 587) + Math.round(b * 114)) / 1000;

        return (contrast >= 128) ? 'black' : 'white';
    };

    $('#steps .step.color .color-item .icon-ui-checkmark-shadow svg').css({
        'fill': contrast($(self).css('background-color'))
    });
}

onClickExtColor: function(evt) {
    var self = this;

    self.checkmarkColor(evt.currentTarget);
}

https://gist.github.com/dcondrey/183971f17808e9277572


2

我使用此JavaScript函数将rgb/ 转换rgba'white'or 'black'

function getTextColor(rgba) {
    rgba = rgba.match(/\d+/g);
    if ((rgba[0] * 0.299) + (rgba[1] * 0.587) + (rgba[2] * 0.114) > 186) {
        return 'black';
    } else {
        return 'white';
    }
}

您可以输入这些格式中的任何一种,它将输出'black''white'

  • rgb(255,255,255)
  • rgba(255,255,255,0.1)
  • color:rgba(255,255,255,0.1)
  • 255,255,255,0.1

现在,尝试使用纯绿色背景:#00FF00。
安德烈亚斯·雷布兰德

这次真是万分感谢!转换为swift,并在我的ios应用中使用了它!
Lucas P.

2

马克的详细答案非常有用。这是JavaScript的实现:

function lum(rgb) {
    var lrgb = [];
    rgb.forEach(function(c) {
        c = c / 255.0;
        if (c <= 0.03928) {
            c = c / 12.92;
        } else {
            c = Math.pow((c + 0.055) / 1.055, 2.4);
        }
        lrgb.push(c);
    });
    var lum = 0.2126 * lrgb[0] + 0.7152 * lrgb[1] + 0.0722 * lrgb[2];
    return (lum > 0.179) ? '#000000' : '#ffffff';
}

然后可以调用此函数lum([111, 22, 255])获得白色或黑色。


1

我从来没有做过这样的事情,但是写一个函数来对照Hex 7F(FF / 2)的中间颜色检查每种颜色的值呢?如果三种颜色中的两种大于7F,则说明您正在使用较深的颜色。


1

根据链接的不同输入,根据背景和该线程使前景色为黑色或白色,我为Color扩展了一个类,为您提供所需的对比色。

代码如下:

 public static class ColorExtension
{       
    public static int PerceivedBrightness(this Color c)
    {
        return (int)Math.Sqrt(
        c.R * c.R * .299 +
        c.G * c.G * .587 +
        c.B * c.B * .114);
    }
    public static Color ContrastColor(this Color iColor, Color darkColor,Color lightColor)
    {
        //  Counting the perceptive luminance (aka luma) - human eye favors green color... 
        double luma = (iColor.PerceivedBrightness() / 255);

        // Return black for bright colors, white for dark colors
        return luma > 0.5 ? darkColor : lightColor;
    }
    public static Color ContrastColor(this Color iColor) => iColor.ContrastColor(Color.Black);
    public static Color ContrastColor(this Color iColor, Color darkColor) => iColor.ContrastColor(darkColor, Color.White);
    // Converts a given Color to gray
    public static Color ToGray(this Color input)
    {
        int g = (int)(input.R * .299) + (int)(input.G * .587) + (int)(input.B * .114);
        return Color.FromArgb(input.A, g, g, g);
    }
}

1

如果像我一样,您正在寻找一个考虑到alpha的RGBA版本,那么该版本可以很好地实现高对比度。

function getContrastColor(R, G, B, A) {
  const brightness = R * 0.299 + G * 0.587 + B * 0.114 + (1 - A) * 255;

  return brightness > 186 ? "#000000" : "#FFFFFF";
}

1

这是Mark Ransom答案的R版本,仅使用基数R。

hex_bw <- function(hex_code) {

  myrgb <- as.integer(col2rgb(hex_code))

  rgb_conv <- lapply(myrgb, function(x) {
    i <- x / 255
    if (i <= 0.03928) {
      i <- i / 12.92
    } else {
      i <- ((i + 0.055) / 1.055) ^ 2.4
    }
    return(i)
  })

 rgb_calc <- (0.2126*rgb_conv[[1]]) + (0.7152*rgb_conv[[2]]) + (0.0722*rgb_conv[[3]])

 if (rgb_calc > 0.179) return("#000000") else return("#ffffff")

}

> hex_bw("#8FBC8F")
[1] "#000000"
> hex_bw("#7fa5e3")
[1] "#000000"
> hex_bw("#0054de")
[1] "#ffffff"
> hex_bw("#2064d4")
[1] "#ffffff"
> hex_bw("#5387db")
[1] "#000000"

0

@SoBiT,我看着您的回答,看起来不错,但是其中有一个小错误。您的函数hexToG和hextoB需要进行较小的编辑。substr中的最后一个数字是字符串的长度,因此在这种情况下,它应该是“ 2”,而不是4或6。

function hexToR($h) {
    return hexdec(substr(cutHex($h), 0, 2));
}
function hexToG($h) {
    return hexdec(substr(cutHex($h), 2, 2));
}
function hexToB($h) {
    return hexdec(substr(cutHex($h), 4, 2));
}

0

LESS的contrast()功能不错,对我来说效果很好,请参阅http://lesscss.org/functions/#color-operations-contrast

“选择两种颜色中的哪一种可以提供最大的对比度。这对于确保一种颜色可在背景下可读是很有用的,这对于可访问性也很有用。此功能的作用方式与Compass for SASS中的对比度功能相同。根据WCAG 2.0,使用经过伽玛校正的亮度值而不是亮度来比较颜色。”

例:

p {
    a: contrast(#bbbbbb);
    b: contrast(#222222, #101010);
    c: contrast(#222222, #101010, #dddddd);
    d: contrast(hsl(90, 100%, 50%), #000000, #ffffff, 30%);
    e: contrast(hsl(90, 100%, 50%), #000000, #ffffff, 80%);
}

输出:

p {
    a: #000000 // black
    b: #ffffff // white
    c: #dddddd
    d: #000000 // black
    e: #ffffff // white
}

0

从十六进制到黑色或白色:

function hexToRgb(hex) {
  var result = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(hex);
  return result
    ? [
        parseInt(result[1], 16),
        parseInt(result[2], 16),
        parseInt(result[3], 16)
      ]
    : [0, 0, 0];
}

function lum(hex) {
  var rgb = hexToRgb(hex)
  var lrgb = [];
  rgb.forEach(function(c) {
    c = c / 255.0;
    if (c <= 0.03928) {
      c = c / 12.92;
    } else {
      c = Math.pow((c + 0.055) / 1.055, 2.4);
    }
    lrgb.push(c);
  });
  var lum = 0.2126 * lrgb[0] + 0.7152 * lrgb[1] + 0.0722 * lrgb[2];
  return lum > 0.179 ? "#000000" : "#ffffff";
}

0

基于Mark答案的iOS Objective-c版本代码:

- (UIColor *)contrastForegroundColor {
CGFloat red = 0, green = 0, blue = 0, alpha = 0;
[self getRed:&red green:&green blue:&blue alpha:&alpha];
NSArray<NSNumber *> *rgbArray = @[@(red), @(green), @(blue)];
NSMutableArray<NSNumber *> *parsedRGBArray = [NSMutableArray arrayWithCapacity:rgbArray.count];
for (NSNumber *item in rgbArray) {
    if (item.doubleValue <= 0.03928) {
        [parsedRGBArray addObject:@(item.doubleValue / 12.92)];
    } else {
        double newValue = pow((item.doubleValue + 0.055) / 1.055, 2.4);
        [parsedRGBArray addObject:@(newValue)];
    }
}

double luminance = 0.2126 * parsedRGBArray[0].doubleValue + 0.7152 * parsedRGBArray[1].doubleValue + 0.0722 * parsedRGBArray[2].doubleValue;

return luminance > 0.179 ? UIColor.blackColor : UIColor.whiteColor;
}

0

用所有24位颜色进行测试呢?

请注意,假设阈值为128,YIQ方法将返回1.9:1的最小对比度,该对比度不会通过AA和AAA WCAG2.0测试。

对于W3C方法,它将返回最小对比度4.58:1,对于大文本将通过AA和AAA测试,对于小文本将通过AA测试,对于每种颜色,对于小文本都不会通过AAA测试。


0

这是我一直在使用的我自己的方法,到目前为止还没有遇到问题😄

const hexCode = value.charAt(0) === '#' 
                  ? value.substr(1, 6)
                  : value;

const hexR = parseInt(hexCode.substr(0, 2), 16);
const hexG = parseInt(hexCode.substr(2, 2), 16);
const hexB = parseInt(hexCode.substr(4, 2), 16);
// Gets the average value of the colors
const contrastRatio = (hexR + hexG + hexB) / (255 * 3);

contrastRatio >= 0.5
  ? 'black'
  : 'white';


0

这是我基于Mark惊人答案的Java Swing代码:

public static Color getColorBasedOnBackground(Color background, Color darkColor, Color lightColor) {
    // Calculate foreground color based on background (based on https://stackoverflow.com/a/3943023/)
    Color color;
    double[] cL = new double[3];
    double[] colorRGB = new double[] {background.getRed(), background.getGreen(), background.getBlue()};

    for (int i = 0; i < colorRGB.length; i++)
        cL[i] = (colorRGB[i] / 255.0 <= 0.03928) ? colorRGB[i] / 255.0 / 12.92 :
                Math.pow(((colorRGB[i] / 255.0 + 0.055) / 1.055), 2.4);

    double L = 0.2126 * cL[0] + 0.7152 * cL[1] + 0.0722 * cL[2];
    color = (L > Math.sqrt(1.05 * 0.05) - 0.05) ? darkColor : lightColor;

    return color;
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.