HEX: #B4848A
RGB: (180,132,138)
#B4848A contains red, green and blue colors in about the same proportion. Web safe color of #B4848A is #CC9999 (or #C99).
#B4848A color RGB value is (180,132,138).
RGB: (180,132,138) (71%,52%,54%)
R 180 of 255 = 71%
G 132 of 255 = 52%
B 138 of 255 = 54%
R + G + B ~ 59%. #B4848A is middle color (not dark and not light).
R + G + B =
180 + 132 + 138 = 450 (100%)
R 180 of 450 ~ 40%
G 132 of 450 ~ 29.33%
B 138 of 450 ~ 30.67%
#B4848A color CMYK value is (0,27,23,29).
CMYK: (0,27,23,29) C0M27Y23K29 (0%,27%,23%,29%) (0.00/0.27/0.23/0.29)
B4 | 84 | 8A | |
---|---|---|---|
RGB | 180 | 132 | 138 |
HSL | 353° | 24.24% | 61.18% |
HSB/HSV | 353° | 26.67% | 70.59% |
CMYK | 0.00% | 26.67% | 23.33% |
29.41% |
HEX | B4 | 84 | 8A |
Decimal | 180 | 132 | 138 |
Binary | 10110100 | 10000100 | 10001010 |
Octal | 264 | 204 | 212 |
Examples of css and html codes for elements with #B4848A color. Also use rgb(180,132,138) instead hex code.
.myTextColor { color: #B4848A; }
<p style="color:#B4848A">This sample text font color is #B4848A.</p>
This text font color is #B4848A.
.myBgColor { background-color: #B4848A; }
<div style="background-color:#B4848A">Inner text</div>
This div background color is #B4848A.
.myBorderColor { border: 1px solid #B4848A; }
<div style="border:3px solid #B4848A">Div</div>
This div border color is #B4848A.
.myOpacity80 { color: #B4848A; opacity: 0.8; }
<p style="color:#B4848A;opacity:0.8;">80%</p>
Text with #B4848A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4848A;}
<p style="text-shadow: 3px 3px 1px #B4848A">Text here.</p>
This text has shadow with #B4848A color.
.textShadow {text-shadow: 3px 3px 1px #B4848A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4848A, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4848A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4848A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4848A, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4848A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4848A; -webkit-box-shadow: 1px 1px 3px 2px #B4848A; box-shadow: 1px 1px 3px 2px #B4848A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4848A; -webkit-box-shadow: 1px 1px 3px 2px #B4848A; box-shadow:1px 1px 3px 2px #B4848A;">
Div content here</div>
This text has color #B4848A on black background.
This text has color #B4848A on white background.
This text has black color on #B4848A background.
This text has white color on #B4848A background.