HEX: #7DB4DC
RGB: (125,180,220)
#7DB4DC contains mainly green and blue colors. Web safe color of #7DB4DC is #66CCCC (or #6CC).
#7DB4DC color RGB value is (125,180,220).
RGB: (125,180,220) (49%,71%,86%)
R 125 of 255 = 49%
G 180 of 255 = 71%
B 220 of 255 = 86%
R + G + B ~ 69%. #7DB4DC is quite light color.
R + G + B =
125 + 180 + 220 = 525 (100%)
R 125 of 525 ~ 23.81%
G 180 of 525 ~ 34.29%
B 220 of 525 ~ 41.9%
#7DB4DC color CMYK value is (43,18,0,14).
CMYK: (43,18,0,14) C43M18Y0K14 (43%,18%,0%,14%) (0.43/0.18/0.00/0.14)
7D | B4 | DC | |
---|---|---|---|
RGB | 125 | 180 | 220 |
HSL | 205° | 57.58% | 67.65% |
HSB/HSV | 205° | 43.18% | 86.27% |
CMYK | 43.18% | 18.18% | 0.00% |
13.73% |
HEX | 7D | B4 | DC |
Decimal | 125 | 180 | 220 |
Binary | 1111101 | 10110100 | 11011100 |
Octal | 175 | 264 | 334 |
Examples of css and html codes for elements with #7DB4DC color. Also use rgb(125,180,220) instead hex code.
.myTextColor { color: #7DB4DC; }
<p style="color:#7DB4DC">This sample text font color is #7DB4DC.</p>
This text font color is #7DB4DC.
.myBgColor { background-color: #7DB4DC; }
<div style="background-color:#7DB4DC">Inner text</div>
This div background color is #7DB4DC.
.myBorderColor { border: 1px solid #7DB4DC; }
<div style="border:3px solid #7DB4DC">Div</div>
This div border color is #7DB4DC.
.myOpacity80 { color: #7DB4DC; opacity: 0.8; }
<p style="color:#7DB4DC;opacity:0.8;">80%</p>
Text with #7DB4DC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7DB4DC;}
<p style="text-shadow: 3px 3px 1px #7DB4DC">Text here.</p>
This text has shadow with #7DB4DC color.
.textShadow {text-shadow: 3px 3px 1px #7DB4DC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7DB4DC, 5px 5px 20px red">Text here.</p>
This text has shadow with #7DB4DC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7DB4DC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7DB4DC, Direction=45, Strength=4)">Text</p>
This text has shadow with #7DB4DC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7DB4DC; -webkit-box-shadow: 1px 1px 3px 2px #7DB4DC; box-shadow: 1px 1px 3px 2px #7DB4DC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7DB4DC; -webkit-box-shadow: 1px 1px 3px 2px #7DB4DC; box-shadow:1px 1px 3px 2px #7DB4DC;">
Div content here</div>
This text has color #7DB4DC on black background.
This text has color #7DB4DC on white background.
This text has black color on #7DB4DC background.
This text has white color on #7DB4DC background.