HEX: #BB4839
RGB: (187,72,57)
#BB4839 contains mainly red color. Web safe color of #BB4839 is #CC3333 (or #C33).
#BB4839 color RGB value is (187,72,57).
RGB: (187,72,57) (73%,28%,22%)
R 187 of 255 = 73%
G 72 of 255 = 28%
B 57 of 255 = 22%
R + G + B ~ 41%. #BB4839 is middle color (not dark and not light).
R + G + B =
187 + 72 + 57 = 316 (100%)
R 187 of 316 ~ 59.18%
G 72 of 316 ~ 22.78%
B 57 of 316 ~ 18.04%
#BB4839 color CMYK value is (0,61,70,27).
CMYK: (0,61,70,27) C0M61Y70K27 (0%,61%,70%,27%) (0.00/0.61/0.70/0.27)
BB | 48 | 39 | |
---|---|---|---|
RGB | 187 | 72 | 57 |
HSL | 7° | 53.28% | 47.84% |
HSB/HSV | 7° | 69.52% | 73.33% |
CMYK | 0.00% | 61.50% | 69.52% |
26.67% |
HEX | BB | 48 | 39 |
Decimal | 187 | 72 | 57 |
Binary | 10111011 | 1001000 | 111001 |
Octal | 273 | 110 | 71 |
Examples of css and html codes for elements with #BB4839 color. Also use rgb(187,72,57) instead hex code.
.myTextColor { color: #BB4839; }
<p style="color:#BB4839">This sample text font color is #BB4839.</p>
This text font color is #BB4839.
.myBgColor { background-color: #BB4839; }
<div style="background-color:#BB4839">Inner text</div>
This div background color is #BB4839.
.myBorderColor { border: 1px solid #BB4839; }
<div style="border:3px solid #BB4839">Div</div>
This div border color is #BB4839.
.myOpacity80 { color: #BB4839; opacity: 0.8; }
<p style="color:#BB4839;opacity:0.8;">80%</p>
Text with #BB4839 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB4839;}
<p style="text-shadow: 3px 3px 1px #BB4839">Text here.</p>
This text has shadow with #BB4839 color.
.textShadow {text-shadow: 3px 3px 1px #BB4839, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB4839, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB4839 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB4839, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB4839, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB4839 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB4839; -webkit-box-shadow: 1px 1px 3px 2px #BB4839; box-shadow: 1px 1px 3px 2px #BB4839; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB4839; -webkit-box-shadow: 1px 1px 3px 2px #BB4839; box-shadow:1px 1px 3px 2px #BB4839;">
Div content here</div>
This text has color #BB4839 on black background.
This text has color #BB4839 on white background.
This text has black color on #BB4839 background.
This text has white color on #BB4839 background.