HEX: #7D87EB
RGB: (125,135,235)
#7D87EB contains mainly blue color. Web safe color of #7D87EB is #6699FF (or #69F).
#7D87EB color RGB value is (125,135,235).
RGB: (125,135,235) (49%,53%,92%)
R 125 of 255 = 49%
G 135 of 255 = 53%
B 235 of 255 = 92%
R + G + B ~ 65%. #7D87EB is quite light color.
R + G + B =
125 + 135 + 235 = 495 (100%)
R 125 of 495 ~ 25.25%
G 135 of 495 ~ 27.27%
B 235 of 495 ~ 47.47%
#7D87EB color CMYK value is (47,43,0,8).
CMYK: (47,43,0,8) C47M43Y0K8 (47%,43%,0%,8%) (0.47/0.43/0.00/0.08)
7D | 87 | EB | |
---|---|---|---|
RGB | 125 | 135 | 235 |
HSL | 235° | 73.33% | 70.59% |
HSB/HSV | 235° | 46.81% | 92.16% |
CMYK | 46.81% | 42.55% | 0.00% |
7.84% |
HEX | 7D | 87 | EB |
Decimal | 125 | 135 | 235 |
Binary | 1111101 | 10000111 | 11101011 |
Octal | 175 | 207 | 353 |
Examples of css and html codes for elements with #7D87EB color. Also use rgb(125,135,235) instead hex code.
.myTextColor { color: #7D87EB; }
<p style="color:#7D87EB">This sample text font color is #7D87EB.</p>
This text font color is #7D87EB.
.myBgColor { background-color: #7D87EB; }
<div style="background-color:#7D87EB">Inner text</div>
This div background color is #7D87EB.
.myBorderColor { border: 1px solid #7D87EB; }
<div style="border:3px solid #7D87EB">Div</div>
This div border color is #7D87EB.
.myOpacity80 { color: #7D87EB; opacity: 0.8; }
<p style="color:#7D87EB;opacity:0.8;">80%</p>
Text with #7D87EB color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D87EB;}
<p style="text-shadow: 3px 3px 1px #7D87EB">Text here.</p>
This text has shadow with #7D87EB color.
.textShadow {text-shadow: 3px 3px 1px #7D87EB, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D87EB, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D87EB primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D87EB, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D87EB, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D87EB and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D87EB; -webkit-box-shadow: 1px 1px 3px 2px #7D87EB; box-shadow: 1px 1px 3px 2px #7D87EB; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D87EB; -webkit-box-shadow: 1px 1px 3px 2px #7D87EB; box-shadow:1px 1px 3px 2px #7D87EB;">
Div content here</div>
This text has color #7D87EB on black background.
This text has color #7D87EB on white background.
This text has black color on #7D87EB background.
This text has white color on #7D87EB background.