HEX: #B4554C
RGB: (180,85,76)
#B4554C contains mainly red color. Web safe color of #B4554C is #CC6633 (or #C63).
#B4554C color RGB value is (180,85,76).
RGB: (180,85,76) (71%,33%,30%)
R 180 of 255 = 71%
G 85 of 255 = 33%
B 76 of 255 = 30%
R + G + B ~ 45%. #B4554C is middle color (not dark and not light).
R + G + B =
180 + 85 + 76 = 341 (100%)
R 180 of 341 ~ 52.79%
G 85 of 341 ~ 24.93%
B 76 of 341 ~ 22.29%
#B4554C color CMYK value is (0,53,58,29).
CMYK: (0,53,58,29) C0M53Y58K29 (0%,53%,58%,29%) (0.00/0.53/0.58/0.29)
B4 | 55 | 4C | |
---|---|---|---|
RGB | 180 | 85 | 76 |
HSL | 5° | 40.94% | 50.20% |
HSB/HSV | 5° | 57.78% | 70.59% |
CMYK | 0.00% | 52.78% | 57.78% |
29.41% |
HEX | B4 | 55 | 4C |
Decimal | 180 | 85 | 76 |
Binary | 10110100 | 1010101 | 1001100 |
Octal | 264 | 125 | 114 |
Examples of css and html codes for elements with #B4554C color. Also use rgb(180,85,76) instead hex code.
.myTextColor { color: #B4554C; }
<p style="color:#B4554C">This sample text font color is #B4554C.</p>
This text font color is #B4554C.
.myBgColor { background-color: #B4554C; }
<div style="background-color:#B4554C">Inner text</div>
This div background color is #B4554C.
.myBorderColor { border: 1px solid #B4554C; }
<div style="border:3px solid #B4554C">Div</div>
This div border color is #B4554C.
.myOpacity80 { color: #B4554C; opacity: 0.8; }
<p style="color:#B4554C;opacity:0.8;">80%</p>
Text with #B4554C color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4554C;}
<p style="text-shadow: 3px 3px 1px #B4554C">Text here.</p>
This text has shadow with #B4554C color.
.textShadow {text-shadow: 3px 3px 1px #B4554C, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4554C, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4554C primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4554C, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4554C, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4554C and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4554C; -webkit-box-shadow: 1px 1px 3px 2px #B4554C; box-shadow: 1px 1px 3px 2px #B4554C; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4554C; -webkit-box-shadow: 1px 1px 3px 2px #B4554C; box-shadow:1px 1px 3px 2px #B4554C;">
Div content here</div>
This text has color #B4554C on black background.
This text has color #B4554C on white background.
This text has black color on #B4554C background.
This text has white color on #B4554C background.