HEX: #B5AEBD
RGB: (181,174,189)
#B5AEBD contains red, green and blue colors in about the same proportion. Web safe color of #B5AEBD is #CC99CC (or #C9C).
#B5AEBD color RGB value is (181,174,189).
RGB: (181,174,189) (71%,68%,74%)
R 181 of 255 = 71%
G 174 of 255 = 68%
B 189 of 255 = 74%
R + G + B ~ 71%. #B5AEBD is quite light color.
R + G + B =
181 + 174 + 189 = 544 (100%)
R 181 of 544 ~ 33.27%
G 174 of 544 ~ 31.99%
B 189 of 544 ~ 34.74%
#B5AEBD color CMYK value is (4,8,0,26).
CMYK: (4,8,0,26) C4M8Y0K26 (4%,8%,0%,26%) (0.04/0.08/0.00/0.26)
B5 | AE | BD | |
---|---|---|---|
RGB | 181 | 174 | 189 |
HSL | 268° | 10.20% | 71.18% |
HSB/HSV | 268° | 7.94% | 74.12% |
CMYK | 4.23% | 7.94% | 0.00% |
25.88% |
HEX | B5 | AE | BD |
Decimal | 181 | 174 | 189 |
Binary | 10110101 | 10101110 | 10111101 |
Octal | 265 | 256 | 275 |
Examples of css and html codes for elements with #B5AEBD color. Also use rgb(181,174,189) instead hex code.
.myTextColor { color: #B5AEBD; }
<p style="color:#B5AEBD">This sample text font color is #B5AEBD.</p>
This text font color is #B5AEBD.
.myBgColor { background-color: #B5AEBD; }
<div style="background-color:#B5AEBD">Inner text</div>
This div background color is #B5AEBD.
.myBorderColor { border: 1px solid #B5AEBD; }
<div style="border:3px solid #B5AEBD">Div</div>
This div border color is #B5AEBD.
.myOpacity80 { color: #B5AEBD; opacity: 0.8; }
<p style="color:#B5AEBD;opacity:0.8;">80%</p>
Text with #B5AEBD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B5AEBD;}
<p style="text-shadow: 3px 3px 1px #B5AEBD">Text here.</p>
This text has shadow with #B5AEBD color.
.textShadow {text-shadow: 3px 3px 1px #B5AEBD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B5AEBD, 5px 5px 20px red">Text here.</p>
This text has shadow with #B5AEBD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B5AEBD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B5AEBD, Direction=45, Strength=4)">Text</p>
This text has shadow with #B5AEBD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B5AEBD; -webkit-box-shadow: 1px 1px 3px 2px #B5AEBD; box-shadow: 1px 1px 3px 2px #B5AEBD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B5AEBD; -webkit-box-shadow: 1px 1px 3px 2px #B5AEBD; box-shadow:1px 1px 3px 2px #B5AEBD;">
Div content here</div>
This text has color #B5AEBD on black background.
This text has color #B5AEBD on white background.
This text has black color on #B5AEBD background.
This text has white color on #B5AEBD background.