HEX: #D493CC
RGB: (212,147,204)
#D493CC contains mainly red and blue colors. Web safe color of #D493CC is #CC99CC (or #C9C).
#D493CC color RGB value is (212,147,204).
RGB: (212,147,204) (83%,58%,80%)
R 212 of 255 = 83%
G 147 of 255 = 58%
B 204 of 255 = 80%
R + G + B ~ 74%. #D493CC is quite light color.
R + G + B =
212 + 147 + 204 = 563 (100%)
R 212 of 563 ~ 37.66%
G 147 of 563 ~ 26.11%
B 204 of 563 ~ 36.23%
#D493CC color CMYK value is (0,31,4,17).
CMYK: (0,31,4,17) C0M31Y4K17 (0%,31%,4%,17%) (0.00/0.31/0.04/0.17)
D4 | 93 | CC | |
---|---|---|---|
RGB | 212 | 147 | 204 |
HSL | 307° | 43.05% | 70.39% |
HSB/HSV | 307° | 30.66% | 83.14% |
CMYK | 0.00% | 30.66% | 3.77% |
16.86% |
HEX | D4 | 93 | CC |
Decimal | 212 | 147 | 204 |
Binary | 11010100 | 10010011 | 11001100 |
Octal | 324 | 223 | 314 |
Examples of css and html codes for elements with #D493CC color. Also use rgb(212,147,204) instead hex code.
.myTextColor { color: #D493CC; }
<p style="color:#D493CC">This sample text font color is #D493CC.</p>
This text font color is #D493CC.
.myBgColor { background-color: #D493CC; }
<div style="background-color:#D493CC">Inner text</div>
This div background color is #D493CC.
.myBorderColor { border: 1px solid #D493CC; }
<div style="border:3px solid #D493CC">Div</div>
This div border color is #D493CC.
.myOpacity80 { color: #D493CC; opacity: 0.8; }
<p style="color:#D493CC;opacity:0.8;">80%</p>
Text with #D493CC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D493CC;}
<p style="text-shadow: 3px 3px 1px #D493CC">Text here.</p>
This text has shadow with #D493CC color.
.textShadow {text-shadow: 3px 3px 1px #D493CC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D493CC, 5px 5px 20px red">Text here.</p>
This text has shadow with #D493CC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D493CC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D493CC, Direction=45, Strength=4)">Text</p>
This text has shadow with #D493CC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D493CC; -webkit-box-shadow: 1px 1px 3px 2px #D493CC; box-shadow: 1px 1px 3px 2px #D493CC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D493CC; -webkit-box-shadow: 1px 1px 3px 2px #D493CC; box-shadow:1px 1px 3px 2px #D493CC;">
Div content here</div>
This text has color #D493CC on black background.
This text has color #D493CC on white background.
This text has black color on #D493CC background.
This text has white color on #D493CC background.