HEX: #487DAC
RGB: (72,125,172)
#487DAC contains mainly green and blue colors. Web safe color of #487DAC is #336699 (or #369).
#487DAC color RGB value is (72,125,172).
RGB: (72,125,172) (28%,49%,67%)
R 72 of 255 = 28%
G 125 of 255 = 49%
B 172 of 255 = 67%
R + G + B ~ 48%. #487DAC is middle color (not dark and not light).
R + G + B =
72 + 125 + 172 = 369 (100%)
R 72 of 369 ~ 19.51%
G 125 of 369 ~ 33.88%
B 172 of 369 ~ 46.61%
#487DAC color CMYK value is (58,27,0,33).
CMYK: (58,27,0,33) C58M27Y0K33 (58%,27%,0%,33%) (0.58/0.27/0.00/0.33)
48 | 7D | AC | |
---|---|---|---|
RGB | 72 | 125 | 172 |
HSL | 208° | 40.98% | 47.84% |
HSB/HSV | 208° | 58.14% | 67.45% |
CMYK | 58.14% | 27.33% | 0.00% |
32.55% |
HEX | 48 | 7D | AC |
Decimal | 72 | 125 | 172 |
Binary | 1001000 | 1111101 | 10101100 |
Octal | 110 | 175 | 254 |
Examples of css and html codes for elements with #487DAC color. Also use rgb(72,125,172) instead hex code.
.myTextColor { color: #487DAC; }
<p style="color:#487DAC">This sample text font color is #487DAC.</p>
This text font color is #487DAC.
.myBgColor { background-color: #487DAC; }
<div style="background-color:#487DAC">Inner text</div>
This div background color is #487DAC.
.myBorderColor { border: 1px solid #487DAC; }
<div style="border:3px solid #487DAC">Div</div>
This div border color is #487DAC.
.myOpacity80 { color: #487DAC; opacity: 0.8; }
<p style="color:#487DAC;opacity:0.8;">80%</p>
Text with #487DAC color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #487DAC;}
<p style="text-shadow: 3px 3px 1px #487DAC">Text here.</p>
This text has shadow with #487DAC color.
.textShadow {text-shadow: 3px 3px 1px #487DAC, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #487DAC, 5px 5px 20px red">Text here.</p>
This text has shadow with #487DAC primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#487DAC, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#487DAC, Direction=45, Strength=4)">Text</p>
This text has shadow with #487DAC and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #487DAC; -webkit-box-shadow: 1px 1px 3px 2px #487DAC; box-shadow: 1px 1px 3px 2px #487DAC; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #487DAC; -webkit-box-shadow: 1px 1px 3px 2px #487DAC; box-shadow:1px 1px 3px 2px #487DAC;">
Div content here</div>
This text has color #487DAC on black background.
This text has color #487DAC on white background.
This text has black color on #487DAC background.
This text has white color on #487DAC background.