HEX: #7D82CB
RGB: (125,130,203)
#7D82CB contains mainly blue color. Web safe color of #7D82CB is #6699CC (or #69C).
#7D82CB color RGB value is (125,130,203).
RGB: (125,130,203) (49%,51%,80%)
R 125 of 255 = 49%
G 130 of 255 = 51%
B 203 of 255 = 80%
R + G + B ~ 60%. #7D82CB is middle color (not dark and not light).
R + G + B =
125 + 130 + 203 = 458 (100%)
R 125 of 458 ~ 27.29%
G 130 of 458 ~ 28.38%
B 203 of 458 ~ 44.32%
#7D82CB color CMYK value is (38,36,0,20).
CMYK: (38,36,0,20) C38M36Y0K20 (38%,36%,0%,20%) (0.38/0.36/0.00/0.20)
7D | 82 | CB | |
---|---|---|---|
RGB | 125 | 130 | 203 |
HSL | 236° | 42.86% | 64.31% |
HSB/HSV | 236° | 38.42% | 79.61% |
CMYK | 38.42% | 35.96% | 0.00% |
20.39% |
HEX | 7D | 82 | CB |
Decimal | 125 | 130 | 203 |
Binary | 1111101 | 10000010 | 11001011 |
Octal | 175 | 202 | 313 |
Examples of css and html codes for elements with #7D82CB color. Also use rgb(125,130,203) instead hex code.
.myTextColor { color: #7D82CB; }
<p style="color:#7D82CB">This sample text font color is #7D82CB.</p>
This text font color is #7D82CB.
.myBgColor { background-color: #7D82CB; }
<div style="background-color:#7D82CB">Inner text</div>
This div background color is #7D82CB.
.myBorderColor { border: 1px solid #7D82CB; }
<div style="border:3px solid #7D82CB">Div</div>
This div border color is #7D82CB.
.myOpacity80 { color: #7D82CB; opacity: 0.8; }
<p style="color:#7D82CB;opacity:0.8;">80%</p>
Text with #7D82CB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D82CB;}
<p style="text-shadow: 3px 3px 1px #7D82CB">Text here.</p>
This text has shadow with #7D82CB color.
.textShadow {text-shadow: 3px 3px 1px #7D82CB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D82CB, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D82CB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D82CB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D82CB, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D82CB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D82CB; -webkit-box-shadow: 1px 1px 3px 2px #7D82CB; box-shadow: 1px 1px 3px 2px #7D82CB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D82CB; -webkit-box-shadow: 1px 1px 3px 2px #7D82CB; box-shadow:1px 1px 3px 2px #7D82CB;">
Div content here</div>
This text has color #7D82CB on black background.
This text has color #7D82CB on white background.
This text has black color on #7D82CB background.
This text has white color on #7D82CB background.