灰度到黑色不透明度转换

时间:2017-09-08 06:48:00

标签: css colors hex rgb opacity

我发现color: rgb(51, 51, 51);color: #333333color: black; opacity: 0.8;会产生等效的灰色阴影。我怎么能概括这个呢?

换句话说,给定任意RGB或HEX颜色/灰色阴影,如何在opacity时确定color: black;的等效值?

Here is the Codepen Demo.

<style>
  div {
    font-family: sans-serif;
    font-size: 48px;
    margin: 20px;
    padding: 60px;
  }
  .rgb {
    color: rgb(51, 51, 51); /* given this value... */
  }
  .hex {
    color: #333333; /* ...or given this value */
  }
  .opacity {
    color: black;
    opacity: 0.8; /* how can I determine this value? */
  }
<style>

<body>
  <div class="rgb">rgb(51, 51, 51)</div>
  <div class="hex">hex #333333</div>
  <div class="opacity">opacity 0.8</div>
</body>

1 个答案:

答案 0 :(得分:1)

您也可以使用此Hextool网站。使用RGBA。第四个值是该颜色的不透明度。

<强>如: -

rgba(51, 51, 51, 0.87)

87%不透明度

十六进制不透明度值

100% — FF
95% — F2
90% — E6
85% — D9
80% — CC
75% — BF
70% — B3
65% — A6
60% — 99
55% — 8C
50% — 80
45% — 73
40% — 66
35% — 59
30% — 4D
25% — 40
20% — 33
15% — 26
10% — 1A
5% — 0D
0% — 00