Tutorialschevron_rightCSS Tutorialchevron_rightCSS ColorsCSS Colorsformat_list_numberedLesson 3 of 5schedule1 min readview_agenda1 sectionauto_awesomeAI tutor ready01Specifying ColorsColors in CSS can be specified by color name, RGB, HEX, HSL, RGBA, or HSLA values.Exampleh1 { color: Tomato; } h2 { color: #00ff00; } p { color: rgb(255, 99, 71); }Try it Yourself »arrow_back PreviousCSS SelectorsNext arrow_forwardCSS Margins