HEX: #D37EC6
RGB: (211,126,198)
#D37EC6 contains mainly red and blue colors. Web safe color of #D37EC6 is #CC66CC (or #C6C).
#D37EC6 color RGB value is (211,126,198).
RGB: (211,126,198) (83%,49%,78%)
R 211 of 255 = 83%
G 126 of 255 = 49%
B 198 of 255 = 78%
R + G + B ~ 70%. #D37EC6 is quite light color.
R + G + B =
211 + 126 + 198 = 535 (100%)
R 211 of 535 ~ 39.44%
G 126 of 535 ~ 23.55%
B 198 of 535 ~ 37.01%
#D37EC6 color CMYK value is (0,40,6,17).
CMYK: (0,40,6,17) C0M40Y6K17 (0%,40%,6%,17%) (0.00/0.40/0.06/0.17)
D3 | 7E | C6 | |
---|---|---|---|
RGB | 211 | 126 | 198 |
HSL | 309° | 49.13% | 66.08% |
HSB/HSV | 309° | 40.28% | 82.75% |
CMYK | 0.00% | 40.28% | 6.16% |
17.25% |
HEX | D3 | 7E | C6 |
Decimal | 211 | 126 | 198 |
Binary | 11010011 | 1111110 | 11000110 |
Octal | 323 | 176 | 306 |
Examples of css and html codes for elements with #D37EC6 color. Also use rgb(211,126,198) instead hex code.
.myTextColor { color: #D37EC6; }
<p style="color:#D37EC6">This sample text font color is #D37EC6.</p>
This text font color is #D37EC6.
.myBgColor { background-color: #D37EC6; }
<div style="background-color:#D37EC6">Inner text</div>
This div background color is #D37EC6.
.myBorderColor { border: 1px solid #D37EC6; }
<div style="border:3px solid #D37EC6">Div</div>
This div border color is #D37EC6.
.myOpacity80 { color: #D37EC6; opacity: 0.8; }
<p style="color:#D37EC6;opacity:0.8;">80%</p>
Text with #D37EC6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D37EC6;}
<p style="text-shadow: 3px 3px 1px #D37EC6">Text here.</p>
This text has shadow with #D37EC6 color.
.textShadow {text-shadow: 3px 3px 1px #D37EC6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D37EC6, 5px 5px 20px red">Text here.</p>
This text has shadow with #D37EC6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D37EC6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D37EC6, Direction=45, Strength=4)">Text</p>
This text has shadow with #D37EC6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D37EC6; -webkit-box-shadow: 1px 1px 3px 2px #D37EC6; box-shadow: 1px 1px 3px 2px #D37EC6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D37EC6; -webkit-box-shadow: 1px 1px 3px 2px #D37EC6; box-shadow:1px 1px 3px 2px #D37EC6;">
Div content here</div>
This text has color #D37EC6 on black background.
This text has color #D37EC6 on white background.
This text has black color on #D37EC6 background.
This text has white color on #D37EC6 background.