HEX: #BC3A25
RGB: (188,58,37)
#BC3A25 contains mainly red color. Web safe color of #BC3A25 is #CC3333 (or #C33).
#BC3A25 color RGB value is (188,58,37).
RGB: (188,58,37) (74%,23%,15%)
R 188 of 255 = 74%
G 58 of 255 = 23%
B 37 of 255 = 15%
R + G + B ~ 37%. #BC3A25 is quite dark color.
R + G + B =
188 + 58 + 37 = 283 (100%)
R 188 of 283 ~ 66.43%
G 58 of 283 ~ 20.49%
B 37 of 283 ~ 13.07%
#BC3A25 color CMYK value is (0,69,80,26).
CMYK: (0,69,80,26) C0M69Y80K26 (0%,69%,80%,26%) (0.00/0.69/0.80/0.26)
BC | 3A | 25 | |
---|---|---|---|
RGB | 188 | 58 | 37 |
HSL | 8° | 67.11% | 44.12% |
HSB/HSV | 8° | 80.32% | 73.73% |
CMYK | 0.00% | 69.15% | 80.32% |
26.27% |
HEX | BC | 3A | 25 |
Decimal | 188 | 58 | 37 |
Binary | 10111100 | 111010 | 100101 |
Octal | 274 | 72 | 45 |
Examples of css and html codes for elements with #BC3A25 color. Also use rgb(188,58,37) instead hex code.
.myTextColor { color: #BC3A25; }
<p style="color:#BC3A25">This sample text font color is #BC3A25.</p>
This text font color is #BC3A25.
.myBgColor { background-color: #BC3A25; }
<div style="background-color:#BC3A25">Inner text</div>
This div background color is #BC3A25.
.myBorderColor { border: 1px solid #BC3A25; }
<div style="border:3px solid #BC3A25">Div</div>
This div border color is #BC3A25.
.myOpacity80 { color: #BC3A25; opacity: 0.8; }
<p style="color:#BC3A25;opacity:0.8;">80%</p>
Text with #BC3A25 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #BC3A25;}
<p style="text-shadow: 3px 3px 1px #BC3A25">Text here.</p>
This text has shadow with #BC3A25 color.
.textShadow {text-shadow: 3px 3px 1px #BC3A25, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #BC3A25, 5px 5px 20px red">Text here.</p>
This text has shadow with #BC3A25 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#BC3A25, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#BC3A25, Direction=45, Strength=4)">Text</p>
This text has shadow with #BC3A25 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #BC3A25; -webkit-box-shadow: 1px 1px 3px 2px #BC3A25; box-shadow: 1px 1px 3px 2px #BC3A25; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #BC3A25; -webkit-box-shadow: 1px 1px 3px 2px #BC3A25; box-shadow:1px 1px 3px 2px #BC3A25;">
Div content here</div>
This text has color #BC3A25 on black background.
This text has color #BC3A25 on white background.
This text has black color on #BC3A25 background.
This text has white color on #BC3A25 background.