Hex #ffc125 Color

#ffc125
equivalent to

RGB

(255, 193, 37)

Details of #ffc125

RGB
XYZ
HSL
CMYK
CIE-Lab
Yxy
HSV
Hunter Lab
255
60.6439
0.12
0.00
81.5840
59.5335
43°
77.1580
193
59.5335
1.00
0.24
9.8263
0.4657
85°
5.2697
37
10.0451
0.57
0.85   0.00
77.8774
0.4572
100°
46.2932

Base Numbers

Base
Binary
Octal
Decimal
Hex
Red
11111111
377
255
FF
Green
11000001
301
193
C1
Blue
100101
45
37
25

RGB in % of #ffc125

%52.58
%39.79
%7.63

CMYK in % of #ffc125

%0
%24
%85
%0

Triads of color #ffc125

#ffc125 #c125ff #25ff25

Similar Colors to #ffc125

#ffc125 #ff5425 #d0ff25

Preview Color #ffc125 on black ground

#ffc125 is very interesting for text.

Preview Color #ffc125 on white ground

#ffc125 is very interesting for text.

CSS Codes #ffc125 color

.mybgcolor {background-color:#ffc125; }
.myforecolor {color:#ffc125; }
.mybordercolor {border:3px solid #ffc125; }

Text Font Color #ffc125

<p style="color:#ffc125">Text here</p>

This sample text font color is #ffc125
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.


Background Color #ffc125

<div style="background-color:#ffc125">
Div content here</div>

This div background color is #ffc125


Border Color #ffc125

<div style="border:3px solid #ffc125">
Div here</div>

The color of this border is #ffc125


Examples Css3

.textShadowRgb {text-shadow: 4px 4px 2px rgba(0,0,0, 0.8); }
.textShadowHex {
text-shadow: 4px 4px 2px #ffc125; }
.divShadow {
-moz-box-shadow: 1px 1px 3px 2px #ffc125;
-webkit-box-shadow: 1px 1px 3px 2px #ffc125;
box-shadow:         1px 1px 3px 2px #ffc125; }
				

Text Shadow using RGB

<p style="text-shadow: 4px 4px 2px rgba(0,0,0, 0.8);">Text here</p>
				

The shadow of this text using RGB.


Text Shadow using Hex

<p style="text-shadow: 4px 4px 2px #ffc125">Text here</p>
				

The shadow of this text using hex.


Shadow of Div

<div style="-moz-box-shadow: 1px 1px 3px 2px #ffc125;
  -webkit-box-shadow: 1px 1px 3px 2px #ffc125;
  box-shadow:         1px 1px 3px 2px #ffc125;">
Div content here</div>

The shadow of div box using color #ffc125