HEX: #B4909D
RGB: (180,144,157)
#B4909D contains red, green and blue colors in about the same proportion. Web safe color of #B4909D is #CC9999 (or #C99).
#B4909D color RGB value is (180,144,157).
RGB: (180,144,157) (71%,56%,62%)
R 180 of 255 = 71%
G 144 of 255 = 56%
B 157 of 255 = 62%
R + G + B ~ 63%. #B4909D is quite light color.
R + G + B =
180 + 144 + 157 = 481 (100%)
R 180 of 481 ~ 37.42%
G 144 of 481 ~ 29.94%
B 157 of 481 ~ 32.64%
#B4909D color CMYK value is (0,20,13,29).
CMYK: (0,20,13,29) C0M20Y13K29 (0%,20%,13%,29%) (0.00/0.20/0.13/0.29)
B4 | 90 | 9D | |
---|---|---|---|
RGB | 180 | 144 | 157 |
HSL | 338° | 19.35% | 63.53% |
HSB/HSV | 338° | 20.00% | 70.59% |
CMYK | 0.00% | 20.00% | 12.78% |
29.41% |
HEX | B4 | 90 | 9D |
Decimal | 180 | 144 | 157 |
Binary | 10110100 | 10010000 | 10011101 |
Octal | 264 | 220 | 235 |
Examples of css and html codes for elements with #B4909D color. Also use rgb(180,144,157) instead hex code.
.myTextColor { color: #B4909D; }
<p style="color:#B4909D">This sample text font color is #B4909D.</p>
This text font color is #B4909D.
.myBgColor { background-color: #B4909D; }
<div style="background-color:#B4909D">Inner text</div>
This div background color is #B4909D.
.myBorderColor { border: 1px solid #B4909D; }
<div style="border:3px solid #B4909D">Div</div>
This div border color is #B4909D.
.myOpacity80 { color: #B4909D; opacity: 0.8; }
<p style="color:#B4909D;opacity:0.8;">80%</p>
Text with #B4909D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4909D;}
<p style="text-shadow: 3px 3px 1px #B4909D">Text here.</p>
This text has shadow with #B4909D color.
.textShadow {text-shadow: 3px 3px 1px #B4909D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4909D, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4909D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4909D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4909D, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4909D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4909D; -webkit-box-shadow: 1px 1px 3px 2px #B4909D; box-shadow: 1px 1px 3px 2px #B4909D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4909D; -webkit-box-shadow: 1px 1px 3px 2px #B4909D; box-shadow:1px 1px 3px 2px #B4909D;">
Div content here</div>
This text has color #B4909D on black background.
This text has color #B4909D on white background.
This text has black color on #B4909D background.
This text has white color on #B4909D background.