HEX: #B4443A
RGB: (180,68,58)
#B4443A contains mainly red color. Web safe color of #B4443A is #CC3333 (or #C33).
#B4443A color RGB value is (180,68,58).
RGB: (180,68,58) (71%,27%,23%)
R 180 of 255 = 71%
G 68 of 255 = 27%
B 58 of 255 = 23%
R + G + B ~ 40%. #B4443A is middle color (not dark and not light).
R + G + B =
180 + 68 + 58 = 306 (100%)
R 180 of 306 ~ 58.82%
G 68 of 306 ~ 22.22%
B 58 of 306 ~ 18.95%
#B4443A color CMYK value is (0,62,68,29).
CMYK: (0,62,68,29) C0M62Y68K29 (0%,62%,68%,29%) (0.00/0.62/0.68/0.29)
B4 | 44 | 3A | |
---|---|---|---|
RGB | 180 | 68 | 58 |
HSL | 5° | 51.26% | 46.67% |
HSB/HSV | 5° | 67.78% | 70.59% |
CMYK | 0.00% | 62.22% | 67.78% |
29.41% |
HEX | B4 | 44 | 3A |
Decimal | 180 | 68 | 58 |
Binary | 10110100 | 1000100 | 111010 |
Octal | 264 | 104 | 72 |
Examples of css and html codes for elements with #B4443A color. Also use rgb(180,68,58) instead hex code.
.myTextColor { color: #B4443A; }
<p style="color:#B4443A">This sample text font color is #B4443A.</p>
This text font color is #B4443A.
.myBgColor { background-color: #B4443A; }
<div style="background-color:#B4443A">Inner text</div>
This div background color is #B4443A.
.myBorderColor { border: 1px solid #B4443A; }
<div style="border:3px solid #B4443A">Div</div>
This div border color is #B4443A.
.myOpacity80 { color: #B4443A; opacity: 0.8; }
<p style="color:#B4443A;opacity:0.8;">80%</p>
Text with #B4443A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #B4443A;}
<p style="text-shadow: 3px 3px 1px #B4443A">Text here.</p>
This text has shadow with #B4443A color.
.textShadow {text-shadow: 3px 3px 1px #B4443A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #B4443A, 5px 5px 20px red">Text here.</p>
This text has shadow with #B4443A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#B4443A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#B4443A, Direction=45, Strength=4)">Text</p>
This text has shadow with #B4443A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #B4443A; -webkit-box-shadow: 1px 1px 3px 2px #B4443A; box-shadow: 1px 1px 3px 2px #B4443A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #B4443A; -webkit-box-shadow: 1px 1px 3px 2px #B4443A; box-shadow:1px 1px 3px 2px #B4443A;">
Div content here</div>
This text has color #B4443A on black background.
This text has color #B4443A on white background.
This text has black color on #B4443A background.
This text has white color on #B4443A background.