HEX: #D44D7D
RGB: (212,77,125)
#D44D7D contains mainly red color. Web safe color of #D44D7D is #CC3366 (or #C36).
#D44D7D color RGB value is (212,77,125).
RGB: (212,77,125) (83%,30%,49%)
R 212 of 255 = 83%
G 77 of 255 = 30%
B 125 of 255 = 49%
R + G + B ~ 54%. #D44D7D is middle color (not dark and not light).
R + G + B =
212 + 77 + 125 = 414 (100%)
R 212 of 414 ~ 51.21%
G 77 of 414 ~ 18.6%
B 125 of 414 ~ 30.19%
#D44D7D color CMYK value is (0,64,41,17).
CMYK: (0,64,41,17) C0M64Y41K17 (0%,64%,41%,17%) (0.00/0.64/0.41/0.17)
D4 | 4D | 7D | |
---|---|---|---|
RGB | 212 | 77 | 125 |
HSL | 339° | 61.09% | 56.67% |
HSB/HSV | 339° | 63.68% | 83.14% |
CMYK | 0.00% | 63.68% | 41.04% |
16.86% |
HEX | D4 | 4D | 7D |
Decimal | 212 | 77 | 125 |
Binary | 11010100 | 1001101 | 1111101 |
Octal | 324 | 115 | 175 |
Examples of css and html codes for elements with #D44D7D color. Also use rgb(212,77,125) instead hex code.
.myTextColor { color: #D44D7D; }
<p style="color:#D44D7D">This sample text font color is #D44D7D.</p>
This text font color is #D44D7D.
.myBgColor { background-color: #D44D7D; }
<div style="background-color:#D44D7D">Inner text</div>
This div background color is #D44D7D.
.myBorderColor { border: 1px solid #D44D7D; }
<div style="border:3px solid #D44D7D">Div</div>
This div border color is #D44D7D.
.myOpacity80 { color: #D44D7D; opacity: 0.8; }
<p style="color:#D44D7D;opacity:0.8;">80%</p>
Text with #D44D7D color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #D44D7D;}
<p style="text-shadow: 3px 3px 1px #D44D7D">Text here.</p>
This text has shadow with #D44D7D color.
.textShadow {text-shadow: 3px 3px 1px #D44D7D, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #D44D7D, 5px 5px 20px red">Text here.</p>
This text has shadow with #D44D7D primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#D44D7D, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#D44D7D, Direction=45, Strength=4)">Text</p>
This text has shadow with #D44D7D and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #D44D7D; -webkit-box-shadow: 1px 1px 3px 2px #D44D7D; box-shadow: 1px 1px 3px 2px #D44D7D; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #D44D7D; -webkit-box-shadow: 1px 1px 3px 2px #D44D7D; box-shadow:1px 1px 3px 2px #D44D7D;">
Div content here</div>
This text has color #D44D7D on black background.
This text has color #D44D7D on white background.
This text has black color on #D44D7D background.
This text has white color on #D44D7D background.