HEX: #83A5C6
RGB: (131,165,198)
#83A5C6 contains mainly green and blue colors. Web safe color of #83A5C6 is #9999CC (or #99C).
#83A5C6 color RGB value is (131,165,198).
RGB: (131,165,198) (51%,65%,78%)
R 131 of 255 = 51%
G 165 of 255 = 65%
B 198 of 255 = 78%
R + G + B ~ 65%. #83A5C6 is quite light color.
R + G + B =
131 + 165 + 198 = 494 (100%)
R 131 of 494 ~ 26.52%
G 165 of 494 ~ 33.4%
B 198 of 494 ~ 40.08%
#83A5C6 color CMYK value is (34,17,0,22).
CMYK: (34,17,0,22) C34M17Y0K22 (34%,17%,0%,22%) (0.34/0.17/0.00/0.22)
83 | A5 | C6 | |
---|---|---|---|
RGB | 131 | 165 | 198 |
HSL | 210° | 37.02% | 64.51% |
HSB/HSV | 210° | 33.84% | 77.65% |
CMYK | 33.84% | 16.67% | 0.00% |
22.35% |
HEX | 83 | A5 | C6 |
Decimal | 131 | 165 | 198 |
Binary | 10000011 | 10100101 | 11000110 |
Octal | 203 | 245 | 306 |
Examples of css and html codes for elements with #83A5C6 color. Also use rgb(131,165,198) instead hex code.
.myTextColor { color: #83A5C6; }
<p style="color:#83A5C6">This sample text font color is #83A5C6.</p>
This text font color is #83A5C6.
.myBgColor { background-color: #83A5C6; }
<div style="background-color:#83A5C6">Inner text</div>
This div background color is #83A5C6.
.myBorderColor { border: 1px solid #83A5C6; }
<div style="border:3px solid #83A5C6">Div</div>
This div border color is #83A5C6.
.myOpacity80 { color: #83A5C6; opacity: 0.8; }
<p style="color:#83A5C6;opacity:0.8;">80%</p>
Text with #83A5C6 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #83A5C6;}
<p style="text-shadow: 3px 3px 1px #83A5C6">Text here.</p>
This text has shadow with #83A5C6 color.
.textShadow {text-shadow: 3px 3px 1px #83A5C6, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #83A5C6, 5px 5px 20px red">Text here.</p>
This text has shadow with #83A5C6 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#83A5C6, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#83A5C6, Direction=45, Strength=4)">Text</p>
This text has shadow with #83A5C6 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #83A5C6; -webkit-box-shadow: 1px 1px 3px 2px #83A5C6; box-shadow: 1px 1px 3px 2px #83A5C6; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #83A5C6; -webkit-box-shadow: 1px 1px 3px 2px #83A5C6; box-shadow:1px 1px 3px 2px #83A5C6;">
Div content here</div>
This text has color #83A5C6 on black background.
This text has color #83A5C6 on white background.
This text has black color on #83A5C6 background.
This text has white color on #83A5C6 background.