HEX: #CEB025
RGB: (206,176,37)
#CEB025 contains mainly red and green colors. Web safe color of #CEB025 is #CC9933 (or #C93).
#CEB025 color RGB value is (206,176,37).
RGB: (206,176,37) (81%,69%,15%)
R 206 of 255 = 81%
G 176 of 255 = 69%
B 37 of 255 = 15%
R + G + B ~ 55%. #CEB025 is middle color (not dark and not light).
R + G + B =
206 + 176 + 37 = 419 (100%)
R 206 of 419 ~ 49.16%
G 176 of 419 ~ 42%
B 37 of 419 ~ 8.83%
#CEB025 color CMYK value is (0,15,82,19).
CMYK: (0,15,82,19) C0M15Y82K19 (0%,15%,82%,19%) (0.00/0.15/0.82/0.19)
CE | B0 | 25 | |
---|---|---|---|
RGB | 206 | 176 | 37 |
HSL | 49° | 69.55% | 47.65% |
HSB/HSV | 49° | 82.04% | 80.78% |
CMYK | 0.00% | 14.56% | 82.04% |
19.22% |
HEX | CE | B0 | 25 |
Decimal | 206 | 176 | 37 |
Binary | 11001110 | 10110000 | 100101 |
Octal | 316 | 260 | 45 |
Examples of css and html codes for elements with #CEB025 color. Also use rgb(206,176,37) instead hex code.
.myTextColor { color: #CEB025; }
<p style="color:#CEB025">This sample text font color is #CEB025.</p>
This text font color is #CEB025.
.myBgColor { background-color: #CEB025; }
<div style="background-color:#CEB025">Inner text</div>
This div background color is #CEB025.
.myBorderColor { border: 1px solid #CEB025; }
<div style="border:3px solid #CEB025">Div</div>
This div border color is #CEB025.
.myOpacity80 { color: #CEB025; opacity: 0.8; }
<p style="color:#CEB025;opacity:0.8;">80%</p>
Text with #CEB025 color and opacity 100% | 80% | 50% | 30%.
.textShadow {text-shadow: 3px 3px 1px #CEB025;}
<p style="text-shadow: 3px 3px 1px #CEB025">Text here.</p>
This text has shadow with #CEB025 color.
.textShadow {text-shadow: 3px 3px 1px #CEB025, 3px 3px 1px red;}
<p style="text-shadow: 3px 3px 1px #CEB025, 5px 5px 20px red">Text here.</p>
This text has shadow with #CEB025 primary color and red secondary color.
Styles for old Internet Explorer:
.textShadow {filter: Shadow(Color=#CEB025, Direction=45, Strength=4)}
<p style="filter: Shadow(Color=#CEB025, Direction=45, Strength=4)">Text</p>
This text has shadow with #CEB025 and red colors in old Internet Explorer.
/* css code */ .divShadow { -moz-box-shadow: 1px 1px 3px 2px #CEB025; -webkit-box-shadow: 1px 1px 3px 2px #CEB025; box-shadow: 1px 1px 3px 2px #CEB025; } /* html code with inline style */ <div style="-moz-box-shadow: 1px 1px 3px 2px #CEB025; -webkit-box-shadow: 1px 1px 3px 2px #CEB025; box-shadow:1px 1px 3px 2px #CEB025;">
Div content here</div>
This text has color #CEB025 on black background.
This text has color #CEB025 on white background.
This text has black color on #CEB025 background.
This text has white color on #CEB025 background.