HEX: #125DAE
RGB: (18,93,174)
#125DAE contains mainly blue color. Web safe color of #125DAE is #006699 (or #069).
#125DAE color RGB value is (18,93,174).
RGB: (18,93,174) (7%,36%,68%)
R 18 of 255 = 7%
G 93 of 255 = 36%
B 174 of 255 = 68%
R + G + B ~ 37%. #125DAE is quite dark color.
R + G + B =
18 + 93 + 174 = 285 (100%)
R 18 of 285 ~ 6.32%
G 93 of 285 ~ 32.63%
B 174 of 285 ~ 61.05%
#125DAE color CMYK value is (90,47,0,32).
CMYK: (90,47,0,32) C90M47Y0K32 (90%,47%,0%,32%) (0.90/0.47/0.00/0.32)
12 | 5D | AE | |
---|---|---|---|
RGB | 18 | 93 | 174 |
HSL | 211° | 81.25% | 37.65% |
HSB/HSV | 211° | 89.66% | 68.24% |
CMYK | 89.66% | 46.55% | 0.00% |
31.76% |
HEX | 12 | 5D | AE |
Decimal | 18 | 93 | 174 |
Binary | 10010 | 1011101 | 10101110 |
Octal | 22 | 135 | 256 |
Examples of css and html codes for elements with #125DAE color. Also use rgb(18,93,174) instead hex code.
.myTextColor { color: #125DAE; }
<p style="color:#125DAE">This sample text font color is #125DAE.</p>
This text font color is #125DAE.
.myBgColor { background-color: #125DAE; }
<div style="background-color:#125DAE">Inner text</div>
This div background color is #125DAE.
.myBorderColor { border: 1px solid #125DAE; }
<div style="border:3px solid #125DAE">Div</div>
This div border color is #125DAE.
.myOpacity80 { color: #125DAE; opacity: 0.8; }
<p style="color:#125DAE;opacity:0.8;">80%</p>
Text with #125DAE color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #125DAE;}
<p style="text-shadow: 3px 3px 1px #125DAE">Text here.</p>
This text has shadow with #125DAE color.
.textShadow {text-shadow: 3px 3px 1px #125DAE, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #125DAE, 5px 5px 20px red">Text here.</p>
This text has shadow with #125DAE primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#125DAE, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#125DAE, Direction=45, Strength=4)">Text</p>
This text has shadow with #125DAE and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #125DAE; -webkit-box-shadow: 1px 1px 3px 2px #125DAE; box-shadow: 1px 1px 3px 2px #125DAE; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #125DAE; -webkit-box-shadow: 1px 1px 3px 2px #125DAE; box-shadow:1px 1px 3px 2px #125DAE;">
Div content here</div>
This text has color #125DAE on black background.
This text has color #125DAE on white background.
This text has black color on #125DAE background.
This text has white color on #125DAE background.