HEX: #B4828E
RGB: (180,130,142)
#B4828E contains red, green and blue colors in about the same proportion. Web safe color of #B4828E is #CC9999 (or #C99).
#B4828E color RGB value is (180,130,142).
RGB: (180,130,142) (71%,51%,56%)
R 180 of 255 = 71%
G 130 of 255 = 51%
B 142 of 255 = 56%
R + G + B ~ 59%. #B4828E is middle color (not dark and not light).
R + G + B =
180 + 130 + 142 = 452 (100%)
R 180 of 452 ~ 39.82%
G 130 of 452 ~ 28.76%
B 142 of 452 ~ 31.42%
#B4828E color CMYK value is (0,28,21,29).
CMYK: (0,28,21,29) C0M28Y21K29 (0%,28%,21%,29%) (0.00/0.28/0.21/0.29)
B4 | 82 | 8E | |
---|---|---|---|
RGB | 180 | 130 | 142 |
HSL | 346° | 25.00% | 60.78% |
HSB/HSV | 346° | 27.78% | 70.59% |
CMYK | 0.00% | 27.78% | 21.11% |
29.41% |
HEX | B4 | 82 | 8E |
Decimal | 180 | 130 | 142 |
Binary | 10110100 | 10000010 | 10001110 |
Octal | 264 | 202 | 216 |
Examples of css and html codes for elements with #B4828E color. Also use rgb(180,130,142) instead hex code.
.myTextColor { color: #B4828E; }
<p style="color:#B4828E">This sample text font color is #B4828E.</p>
This text font color is #B4828E.
.myBgColor { background-color: #B4828E; }
<div style="background-color:#B4828E">Inner text</div>
This div background color is #B4828E.
.myBorderColor { border: 1px solid #B4828E; }
<div style="border:3px solid #B4828E">Div</div>
This div border color is #B4828E.
.myOpacity80 { color: #B4828E; opacity: 0.8; }
<p style="color:#B4828E;opacity:0.8;">80%</p>
Text with #B4828E color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4828E;}
<p style="text-shadow: 3px 3px 1px #B4828E">Text here.</p>
This text has shadow with #B4828E color.
.textShadow {text-shadow: 3px 3px 1px #B4828E, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4828E, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4828E primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4828E, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4828E, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4828E and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4828E; -webkit-box-shadow: 1px 1px 3px 2px #B4828E; box-shadow: 1px 1px 3px 2px #B4828E; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4828E; -webkit-box-shadow: 1px 1px 3px 2px #B4828E; box-shadow:1px 1px 3px 2px #B4828E;">
Div content here</div>
This text has color #B4828E on black background.
This text has color #B4828E on white background.
This text has black color on #B4828E background.
This text has white color on #B4828E background.