HEX: #7D8BD3
RGB: (125,139,211)
#7D8BD3 contains mainly blue color. Web safe color of #7D8BD3 is #6699CC (or #69C).
#7D8BD3 color RGB value is (125,139,211).
RGB: (125,139,211) (49%,55%,83%)
R 125 of 255 = 49%
G 139 of 255 = 55%
B 211 of 255 = 83%
R + G + B ~ 62%. #7D8BD3 is quite light color.
R + G + B =
125 + 139 + 211 = 475 (100%)
R 125 of 475 ~ 26.32%
G 139 of 475 ~ 29.26%
B 211 of 475 ~ 44.42%
#7D8BD3 color CMYK value is (41,34,0,17).
CMYK: (41,34,0,17) C41M34Y0K17 (41%,34%,0%,17%) (0.41/0.34/0.00/0.17)
7D | 8B | D3 | |
---|---|---|---|
RGB | 125 | 139 | 211 |
HSL | 230° | 49.43% | 65.88% |
HSB/HSV | 230° | 40.76% | 82.75% |
CMYK | 40.76% | 34.12% | 0.00% |
17.25% |
HEX | 7D | 8B | D3 |
Decimal | 125 | 139 | 211 |
Binary | 1111101 | 10001011 | 11010011 |
Octal | 175 | 213 | 323 |
Examples of css and html codes for elements with #7D8BD3 color. Also use rgb(125,139,211) instead hex code.
.myTextColor { color: #7D8BD3; }
<p style="color:#7D8BD3">This sample text font color is #7D8BD3.</p>
This text font color is #7D8BD3.
.myBgColor { background-color: #7D8BD3; }
<div style="background-color:#7D8BD3">Inner text</div>
This div background color is #7D8BD3.
.myBorderColor { border: 1px solid #7D8BD3; }
<div style="border:3px solid #7D8BD3">Div</div>
This div border color is #7D8BD3.
.myOpacity80 { color: #7D8BD3; opacity: 0.8; }
<p style="color:#7D8BD3;opacity:0.8;">80%</p>
Text with #7D8BD3 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D8BD3;}
<p style="text-shadow: 3px 3px 1px #7D8BD3">Text here.</p>
This text has shadow with #7D8BD3 color.
.textShadow {text-shadow: 3px 3px 1px #7D8BD3, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D8BD3, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D8BD3 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D8BD3, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D8BD3, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D8BD3 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D8BD3; -webkit-box-shadow: 1px 1px 3px 2px #7D8BD3; box-shadow: 1px 1px 3px 2px #7D8BD3; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D8BD3; -webkit-box-shadow: 1px 1px 3px 2px #7D8BD3; box-shadow:1px 1px 3px 2px #7D8BD3;">
Div content here</div>
This text has color #7D8BD3 on black background.
This text has color #7D8BD3 on white background.
This text has black color on #7D8BD3 background.
This text has white color on #7D8BD3 background.