Contents
Changing CSS text color
By using the color
property, you can change the CSS font color for the text:
If the descendants and borders of the element don't have their own color specified, they will inherit the defined CSS font color. It will also apply to item markers in lists.
CSS font color syntax
To change the text color in CSS, follow the syntax example below:
color: value;
The value can be defined in color names, RGB, RGBA, HEX, HSL or HSLA values. In the example below, you can see the same color defined in different ways:
body {
color: lime;
}
h1 {
color: #00fa00;
}
p {
color: rgb(0, 250, 0);
}
section {
  color: inherit;
}
Tip: to get the value for the exact color tone you need, use the Pickeristic color picker.
- Easy to use with a learn-by-doing approach
- Offers quality content
- Gamified in-browser coding experience
- The price matches the quality
- Suitable for learners ranging from beginner to advanced
- Free certificates of completion
- Focused on data science skills
- Flexible learning timetable
- Simplistic design (no unnecessary information)
- High-quality courses (even the free ones)
- Variety of features
- Nanodegree programs
- Suitable for enterprises
- Paid Certificates of completion
- A wide range of learning programs
- University-level courses
- Easy to navigate
- Verified certificates
- Free learning track available
- University-level courses
- Suitable for enterprises
- Verified certificates of completion
How to change text color in HTML
The simplest way to change the font color for an HTML element is called inline styling. For that, you will need to use the style
attribute and define the CSS font color in a name-value pair:
<p style="color: rgb(255, 0, 255);">I am a unicorn</p>
<p style="color: #42f4ee;">I am a star</p>
<p style="color: lime;">I am a lime</p>
Note: find more about using CSS styles in HTML in the HTML styles tutorial.