HEX: #D35E5D
RGB: (211,94,93)
#D35E5D contains mainly red color. Web safe color of #D35E5D is #CC6666 (or #C66).
#D35E5D color RGB value is (211,94,93).
RGB: (211,94,93) (83%,37%,36%)
R 211 of 255 = 83%
G 94 of 255 = 37%
B 93 of 255 = 36%
R + G + B ~ 52%. #D35E5D is middle color (not dark and not light).
R + G + B =
211 + 94 + 93 = 398 (100%)
R 211 of 398 ~ 53.02%
G 94 of 398 ~ 23.62%
B 93 of 398 ~ 23.37%
#D35E5D color CMYK value is (0,55,56,17).
CMYK: (0,55,56,17) C0M55Y56K17 (0%,55%,56%,17%) (0.00/0.55/0.56/0.17)
D3 | 5E | 5D | |
---|---|---|---|
RGB | 211 | 94 | 93 |
HSL | 1° | 57.28% | 59.61% |
HSB/HSV | 1° | 55.92% | 82.75% |
CMYK | 0.00% | 55.45% | 55.92% |
17.25% |
HEX | D3 | 5E | 5D |
Decimal | 211 | 94 | 93 |
Binary | 11010011 | 1011110 | 1011101 |
Octal | 323 | 136 | 135 |
Examples of css and html codes for elements with #D35E5D color. Also use rgb(211,94,93) instead hex code.
.myTextColor { color: #D35E5D; }
<p style="color:#D35E5D">This sample text font color is #D35E5D.</p>
This text font color is #D35E5D.
.myBgColor { background-color: #D35E5D; }
<div style="background-color:#D35E5D">Inner text</div>
This div background color is #D35E5D.
.myBorderColor { border: 1px solid #D35E5D; }
<div style="border:3px solid #D35E5D">Div</div>
This div border color is #D35E5D.
.myOpacity80 { color: #D35E5D; opacity: 0.8; }
<p style="color:#D35E5D;opacity:0.8;">80%</p>
Text with #D35E5D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D35E5D;}
<p style="text-shadow: 3px 3px 1px #D35E5D">Text here.</p>
This text has shadow with #D35E5D color.
.textShadow {text-shadow: 3px 3px 1px #D35E5D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D35E5D, 5px 5px 20px red">Text here.</p>
This text has shadow with #D35E5D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D35E5D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D35E5D, Direction=45, Strength=4)">Text</p>
This text has shadow with #D35E5D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D35E5D; -webkit-box-shadow: 1px 1px 3px 2px #D35E5D; box-shadow: 1px 1px 3px 2px #D35E5D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D35E5D; -webkit-box-shadow: 1px 1px 3px 2px #D35E5D; box-shadow:1px 1px 3px 2px #D35E5D;">
Div content here</div>
This text has color #D35E5D on black background.
This text has color #D35E5D on white background.
This text has black color on #D35E5D background.
This text has white color on #D35E5D background.