HEX: #53C5CD
RGB: (83,197,205)
#53C5CD contains mainly green and blue colors. Web safe color of #53C5CD is #66CCCC (or #6CC).
#53C5CD color RGB value is (83,197,205).
RGB: (83,197,205) (33%,77%,80%)
R 83 of 255 = 33%
G 197 of 255 = 77%
B 205 of 255 = 80%
R + G + B ~ 63%. #53C5CD is quite light color.
R + G + B =
83 + 197 + 205 = 485 (100%)
R 83 of 485 ~ 17.11%
G 197 of 485 ~ 40.62%
B 205 of 485 ~ 42.27%
#53C5CD color CMYK value is (60,4,0,20).
CMYK: (60,4,0,20) C60M4Y0K20 (60%,4%,0%,20%) (0.60/0.04/0.00/0.20)
53 | C5 | CD | |
---|---|---|---|
RGB | 83 | 197 | 205 |
HSL | 184° | 54.95% | 56.47% |
HSB/HSV | 184° | 59.51% | 80.39% |
CMYK | 59.51% | 3.90% | 0.00% |
19.61% |
HEX | 53 | C5 | CD |
Decimal | 83 | 197 | 205 |
Binary | 1010011 | 11000101 | 11001101 |
Octal | 123 | 305 | 315 |
Examples of css and html codes for elements with #53C5CD color. Also use rgb(83,197,205) instead hex code.
.myTextColor { color: #53C5CD; }
<p style="color:#53C5CD">This sample text font color is #53C5CD.</p>
This text font color is #53C5CD.
.myBgColor { background-color: #53C5CD; }
<div style="background-color:#53C5CD">Inner text</div>
This div background color is #53C5CD.
.myBorderColor { border: 1px solid #53C5CD; }
<div style="border:3px solid #53C5CD">Div</div>
This div border color is #53C5CD.
.myOpacity80 { color: #53C5CD; opacity: 0.8; }
<p style="color:#53C5CD;opacity:0.8;">80%</p>
Text with #53C5CD color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #53C5CD;}
<p style="text-shadow: 3px 3px 1px #53C5CD">Text here.</p>
This text has shadow with #53C5CD color.
.textShadow {text-shadow: 3px 3px 1px #53C5CD, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #53C5CD, 5px 5px 20px red">Text here.</p>
This text has shadow with #53C5CD primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#53C5CD, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#53C5CD, Direction=45, Strength=4)">Text</p>
This text has shadow with #53C5CD and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #53C5CD; -webkit-box-shadow: 1px 1px 3px 2px #53C5CD; box-shadow: 1px 1px 3px 2px #53C5CD; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #53C5CD; -webkit-box-shadow: 1px 1px 3px 2px #53C5CD; box-shadow:1px 1px 3px 2px #53C5CD;">
Div content here</div>
This text has color #53C5CD on black background.
This text has color #53C5CD on white background.
This text has black color on #53C5CD background.
This text has white color on #53C5CD background.