HEX: #D53E36
RGB: (213,62,54)
#D53E36 contains mainly red color. Web safe color of #D53E36 is #CC3333 (or #C33).
#D53E36 color RGB value is (213,62,54).
RGB: (213,62,54) (84%,24%,21%)
R 213 of 255 = 84%
G 62 of 255 = 24%
B 54 of 255 = 21%
R + G + B ~ 43%. #D53E36 is middle color (not dark and not light).
R + G + B =
213 + 62 + 54 = 329 (100%)
R 213 of 329 ~ 64.74%
G 62 of 329 ~ 18.84%
B 54 of 329 ~ 16.41%
#D53E36 color CMYK value is (0,71,75,16).
CMYK: (0,71,75,16) C0M71Y75K16 (0%,71%,75%,16%) (0.00/0.71/0.75/0.16)
D5 | 3E | 36 | |
---|---|---|---|
RGB | 213 | 62 | 54 |
HSL | 3° | 65.43% | 52.35% |
HSB/HSV | 3° | 74.65% | 83.53% |
CMYK | 0.00% | 70.89% | 74.65% |
16.47% |
HEX | D5 | 3E | 36 |
Decimal | 213 | 62 | 54 |
Binary | 11010101 | 111110 | 110110 |
Octal | 325 | 76 | 66 |
Examples of css and html codes for elements with #D53E36 color. Also use rgb(213,62,54) instead hex code.
.myTextColor { color: #D53E36; }
<p style="color:#D53E36">This sample text font color is #D53E36.</p>
This text font color is #D53E36.
.myBgColor { background-color: #D53E36; }
<div style="background-color:#D53E36">Inner text</div>
This div background color is #D53E36.
.myBorderColor { border: 1px solid #D53E36; }
<div style="border:3px solid #D53E36">Div</div>
This div border color is #D53E36.
.myOpacity80 { color: #D53E36; opacity: 0.8; }
<p style="color:#D53E36;opacity:0.8;">80%</p>
Text with #D53E36 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D53E36;}
<p style="text-shadow: 3px 3px 1px #D53E36">Text here.</p>
This text has shadow with #D53E36 color.
.textShadow {text-shadow: 3px 3px 1px #D53E36, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D53E36, 5px 5px 20px red">Text here.</p>
This text has shadow with #D53E36 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D53E36, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D53E36, Direction=45, Strength=4)">Text</p>
This text has shadow with #D53E36 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D53E36; -webkit-box-shadow: 1px 1px 3px 2px #D53E36; box-shadow: 1px 1px 3px 2px #D53E36; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D53E36; -webkit-box-shadow: 1px 1px 3px 2px #D53E36; box-shadow:1px 1px 3px 2px #D53E36;">
Div content here</div>
This text has color #D53E36 on black background.
This text has color #D53E36 on white background.
This text has black color on #D53E36 background.
This text has white color on #D53E36 background.