HEX: #B4AEBB
RGB: (180,174,187)
#B4AEBB contains red, green and blue colors in about the same proportion. Web safe color of #B4AEBB is #CC99CC (or #C9C).
#B4AEBB color RGB value is (180,174,187).
RGB: (180,174,187) (71%,68%,73%)
R 180 of 255 = 71%
G 174 of 255 = 68%
B 187 of 255 = 73%
R + G + B ~ 71%. #B4AEBB is quite light color.
R + G + B =
180 + 174 + 187 = 541 (100%)
R 180 of 541 ~ 33.27%
G 174 of 541 ~ 32.16%
B 187 of 541 ~ 34.57%
#B4AEBB color CMYK value is (4,7,0,27).
CMYK: (4,7,0,27) C4M7Y0K27 (4%,7%,0%,27%) (0.04/0.07/0.00/0.27)
B4 | AE | BB | |
---|---|---|---|
RGB | 180 | 174 | 187 |
HSL | 268° | 8.72% | 70.78% |
HSB/HSV | 268° | 6.95% | 73.33% |
CMYK | 3.74% | 6.95% | 0.00% |
26.67% |
HEX | B4 | AE | BB |
Decimal | 180 | 174 | 187 |
Binary | 10110100 | 10101110 | 10111011 |
Octal | 264 | 256 | 273 |
Examples of css and html codes for elements with #B4AEBB color. Also use rgb(180,174,187) instead hex code.
.myTextColor { color: #B4AEBB; }
<p style="color:#B4AEBB">This sample text font color is #B4AEBB.</p>
This text font color is #B4AEBB.
.myBgColor { background-color: #B4AEBB; }
<div style="background-color:#B4AEBB">Inner text</div>
This div background color is #B4AEBB.
.myBorderColor { border: 1px solid #B4AEBB; }
<div style="border:3px solid #B4AEBB">Div</div>
This div border color is #B4AEBB.
.myOpacity80 { color: #B4AEBB; opacity: 0.8; }
<p style="color:#B4AEBB;opacity:0.8;">80%</p>
Text with #B4AEBB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4AEBB;}
<p style="text-shadow: 3px 3px 1px #B4AEBB">Text here.</p>
This text has shadow with #B4AEBB color.
.textShadow {text-shadow: 3px 3px 1px #B4AEBB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4AEBB, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4AEBB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4AEBB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4AEBB, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4AEBB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4AEBB; -webkit-box-shadow: 1px 1px 3px 2px #B4AEBB; box-shadow: 1px 1px 3px 2px #B4AEBB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4AEBB; -webkit-box-shadow: 1px 1px 3px 2px #B4AEBB; box-shadow:1px 1px 3px 2px #B4AEBB;">
Div content here</div>
This text has color #B4AEBB on black background.
This text has color #B4AEBB on white background.
This text has black color on #B4AEBB background.
This text has white color on #B4AEBB background.