HEX: #DB697A
RGB: (219,105,122)
#DB697A contains mainly red color. Web safe color of #DB697A is #CC6666 (or #C66).
#DB697A color RGB value is (219,105,122).
RGB: (219,105,122) (86%,41%,48%)
R 219 of 255 = 86%
G 105 of 255 = 41%
B 122 of 255 = 48%
R + G + B ~ 58%. #DB697A is middle color (not dark and not light).
R + G + B =
219 + 105 + 122 = 446 (100%)
R 219 of 446 ~ 49.1%
G 105 of 446 ~ 23.54%
B 122 of 446 ~ 27.35%
#DB697A color CMYK value is (0,52,44,14).
CMYK: (0,52,44,14) C0M52Y44K14 (0%,52%,44%,14%) (0.00/0.52/0.44/0.14)
DB | 69 | 7A | |
---|---|---|---|
RGB | 219 | 105 | 122 |
HSL | 351° | 61.29% | 63.53% |
HSB/HSV | 351° | 52.05% | 85.88% |
CMYK | 0.00% | 52.05% | 44.29% |
14.12% |
HEX | DB | 69 | 7A |
Decimal | 219 | 105 | 122 |
Binary | 11011011 | 1101001 | 1111010 |
Octal | 333 | 151 | 172 |
Examples of css and html codes for elements with #DB697A color. Also use rgb(219,105,122) instead hex code.
.myTextColor { color: #DB697A; }
<p style="color:#DB697A">This sample text font color is #DB697A.</p>
This text font color is #DB697A.
.myBgColor { background-color: #DB697A; }
<div style="background-color:#DB697A">Inner text</div>
This div background color is #DB697A.
.myBorderColor { border: 1px solid #DB697A; }
<div style="border:3px solid #DB697A">Div</div>
This div border color is #DB697A.
.myOpacity80 { color: #DB697A; opacity: 0.8; }
<p style="color:#DB697A;opacity:0.8;">80%</p>
Text with #DB697A color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #DB697A;}
<p style="text-shadow: 3px 3px 1px #DB697A">Text here.</p>
This text has shadow with #DB697A color.
.textShadow {text-shadow: 3px 3px 1px #DB697A, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #DB697A, 5px 5px 20px red">Text here.</p>
This text has shadow with #DB697A primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#DB697A, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#DB697A, Direction=45, Strength=4)">Text</p>
This text has shadow with #DB697A and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #DB697A; -webkit-box-shadow: 1px 1px 3px 2px #DB697A; box-shadow: 1px 1px 3px 2px #DB697A; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #DB697A; -webkit-box-shadow: 1px 1px 3px 2px #DB697A; box-shadow:1px 1px 3px 2px #DB697A;">
Div content here</div>
This text has color #DB697A on black background.
This text has color #DB697A on white background.
This text has black color on #DB697A background.
This text has white color on #DB697A background.