HEX: #7D7EDF
RGB: (125,126,223)
#7D7EDF contains mainly blue color. Web safe color of #7D7EDF is #6666CC (or #66C).
#7D7EDF color RGB value is (125,126,223).
RGB: (125,126,223) (49%,49%,87%)
R 125 of 255 = 49%
G 126 of 255 = 49%
B 223 of 255 = 87%
R + G + B ~ 62%. #7D7EDF is quite light color.
R + G + B =
125 + 126 + 223 = 474 (100%)
R 125 of 474 ~ 26.37%
G 126 of 474 ~ 26.58%
B 223 of 474 ~ 47.05%
#7D7EDF color CMYK value is (44,43,0,13).
CMYK: (44,43,0,13) C44M43Y0K13 (44%,43%,0%,13%) (0.44/0.43/0.00/0.13)
7D | 7E | DF | |
---|---|---|---|
RGB | 125 | 126 | 223 |
HSL | 239° | 60.49% | 68.24% |
HSB/HSV | 239° | 43.95% | 87.45% |
CMYK | 43.95% | 43.50% | 0.00% |
12.55% |
HEX | 7D | 7E | DF |
Decimal | 125 | 126 | 223 |
Binary | 1111101 | 1111110 | 11011111 |
Octal | 175 | 176 | 337 |
Examples of css and html codes for elements with #7D7EDF color. Also use rgb(125,126,223) instead hex code.
.myTextColor { color: #7D7EDF; }
<p style="color:#7D7EDF">This sample text font color is #7D7EDF.</p>
This text font color is #7D7EDF.
.myBgColor { background-color: #7D7EDF; }
<div style="background-color:#7D7EDF">Inner text</div>
This div background color is #7D7EDF.
.myBorderColor { border: 1px solid #7D7EDF; }
<div style="border:3px solid #7D7EDF">Div</div>
This div border color is #7D7EDF.
.myOpacity80 { color: #7D7EDF; opacity: 0.8; }
<p style="color:#7D7EDF;opacity:0.8;">80%</p>
Text with #7D7EDF color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #7D7EDF;}
<p style="text-shadow: 3px 3px 1px #7D7EDF">Text here.</p>
This text has shadow with #7D7EDF color.
.textShadow {text-shadow: 3px 3px 1px #7D7EDF, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #7D7EDF, 5px 5px 20px red">Text here.</p>
This text has shadow with #7D7EDF primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#7D7EDF, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#7D7EDF, Direction=45, Strength=4)">Text</p>
This text has shadow with #7D7EDF and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #7D7EDF; -webkit-box-shadow: 1px 1px 3px 2px #7D7EDF; box-shadow: 1px 1px 3px 2px #7D7EDF; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #7D7EDF; -webkit-box-shadow: 1px 1px 3px 2px #7D7EDF; box-shadow:1px 1px 3px 2px #7D7EDF;">
Div content here</div>
This text has color #7D7EDF on black background.
This text has color #7D7EDF on white background.
This text has black color on #7D7EDF background.
This text has white color on #7D7EDF background.