CSS Colors

最終更新:2026-09-13

CSS Colors

CSS colors can be expressed as keywords, hex, rgb/rgba, hsl/hsla, hwb and currentColor. This hub lists the notations and common named colors.

Color Formats

CSS ColorsDescription
Hex #rrggbbHexadecimal RGB, e.g. #ff0000 is red.
rgb()/rgba()Red/green/blue with optional alpha.
hsl()/hsla()Hue/saturation/lightness with optional alpha.
hwb()Hue/whiteness/blackness notation.
currentColorUses the element's current color value.
transparentFully transparent (alpha 0).

Common Named Colors

CSS ColorsDescription
red #ff0000Pure red.
green #008000Standard green.
blue #0000ffPure blue.
black #000000Pure black.
white #ffffffPure white.
gray #808080Mid gray.
orange #ffa500Orange.
purple #800080Purple.
teal #008080Teal.
navy #000080Navy.
gold #ffd700Gold.
pink #ffc0cbPink.
cyan #00ffffCyan.
lime #00ff00Lime.
brown #a52a2aBrown.
silver #c0c0c0Silver.
Web-Tutorial.com

Web-Tutorial 技術チーム

複数の開発者によって共同維持されているプログラミングチュートリアルプラットフォーム。各チュートリアルは専門分野の開発者が執筆・レビューしています。正確で信頼性の高いコンテンツを目指しています — 問題を見つけた場合はお知らせください。

100%