OneBite.Dev - Coding blog in a bite size

change font color in css

Code snippet for how to change font color in css with sample and detail explanation

CSS, or Cascading Style Sheets, plays a significant role in web design by enabling developers to alter various elements on their web pages. One such element that can be changed using CSS is font color.

Code Snippet

For changing the font color in CSS, you can use the ‘color’ property. Below is a simple example of CSS code that changes the color of a paragraph text to blue:

p {
  color: blue;
}

The p refers to the HTML ‘paragraph’ element, and the ‘color’ property is used to specify the text color. You can replace ‘blue’ with any preferred color or even hex and RGB values.

Code Explanation

In the provided snippet, a CSS rule is defined for the ‘p’ (paragraph) selector.

The rule is well defined between the curly braces {}. The property to be changed is ‘color’. After the colon, the value of the property is specified. In the code snippet above, the value is ‘blue’.

This piece of code will change the color of all paragraph text present on the webpage to blue.

If you wish to use different shades of color or a color not commonly known, you can use Hex values, like #0000FF for blue, or even RGB values like rgb(0, 0, 255) for blue.

p {
  color: #0000FF;
}

or

p {
  color: rgb(0, 0, 255);
}

By following the above code structures, you can easily change the font color of any HTML element in your website or web application using CSS.

css