HEX: #BB4426
RGB: (187,68,38)
#BB4426 contains mainly red color. Web safe color of #BB4426 is #CC3333 (or #C33).
#BB4426 color RGB value is (187,68,38).
RGB: (187,68,38) (73%,27%,15%)
R 187 of 255 = 73%
G 68 of 255 = 27%
B 38 of 255 = 15%
R + G + B ~ 38%. #BB4426 is quite dark color.
R + G + B =
187 + 68 + 38 = 293 (100%)
R 187 of 293 ~ 63.82%
G 68 of 293 ~ 23.21%
B 38 of 293 ~ 12.97%
#BB4426 color CMYK value is (0,64,80,27).
CMYK: (0,64,80,27) C0M64Y80K27 (0%,64%,80%,27%) (0.00/0.64/0.80/0.27)
BB | 44 | 26 | |
---|---|---|---|
RGB | 187 | 68 | 38 |
HSL | 12° | 66.22% | 44.12% |
HSB/HSV | 12° | 79.68% | 73.33% |
CMYK | 0.00% | 63.64% | 79.68% |
26.67% |
HEX | BB | 44 | 26 |
Decimal | 187 | 68 | 38 |
Binary | 10111011 | 1000100 | 100110 |
Octal | 273 | 104 | 46 |
Examples of css and html codes for elements with #BB4426 color. Also use rgb(187,68,38) instead hex code.
.myTextColor { color: #BB4426; }
<p style="color:#BB4426">This sample text font color is #BB4426.</p>
This text font color is #BB4426.
.myBgColor { background-color: #BB4426; }
<div style="background-color:#BB4426">Inner text</div>
This div background color is #BB4426.
.myBorderColor { border: 1px solid #BB4426; }
<div style="border:3px solid #BB4426">Div</div>
This div border color is #BB4426.
.myOpacity80 { color: #BB4426; opacity: 0.8; }
<p style="color:#BB4426;opacity:0.8;">80%</p>
Text with #BB4426 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BB4426;}
<p style="text-shadow: 3px 3px 1px #BB4426">Text here.</p>
This text has shadow with #BB4426 color.
.textShadow {text-shadow: 3px 3px 1px #BB4426, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BB4426, 5px 5px 20px red">Text here.</p>
This text has shadow with #BB4426 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BB4426, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BB4426, Direction=45, Strength=4)">Text</p>
This text has shadow with #BB4426 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BB4426; -webkit-box-shadow: 1px 1px 3px 2px #BB4426; box-shadow: 1px 1px 3px 2px #BB4426; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BB4426; -webkit-box-shadow: 1px 1px 3px 2px #BB4426; box-shadow:1px 1px 3px 2px #BB4426;">
Div content here</div>
This text has color #BB4426 on black background.
This text has color #BB4426 on white background.
This text has black color on #BB4426 background.
This text has white color on #BB4426 background.