最适合网络开发者的网站
HTML 颜色。初学者课程

尿素

Colors HEX


Hex Calculator


 
rgb(255, 0, 0)#000000
hsl(0, 0%, 0%)


R:
G:
B:

Hexadecimal Colors

Hexadecimal color values are also supported in all browsers.

A hexadecimal color is specified with: #RRGGBB.

RR (red), GG (green) and BB (blue) are hexadecimal integers between 00 and FF specifying the intensity of the color.

For example, #0000FF is displayed as blue, because the blue component is set to its highest value (FF) and the others are set to 00.


Try it Yourself

Hexadecimal color values are supported in all browsers.

Example

<style>
div {
    background-color: #00bfff;
    color: #ffffff;
}
</style>
亲自尝试 »