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