- CSS Tutorial
- CSS Introduction
- CSS Syntax
- CSS Comments
- CSS Selectors
- CSS Fonts
- CSS Colors
- CSS Backgrounds
- CSS Box Model
- CSS Borders
- CSS Margins
- CSS Padding
- CSS Text
- CSS Images
- CSS Links
- CSS Lists
- CSS Tables
- CSS Outline
- CSS Icons
- CSS Display
- CSS max-witdh
- CSS Position
- CSS z-index
- CSS Overflow
- CSS Float
- CSS Align
- CSS Opacity
- CSS Navigation Bar
- CSS Dropdowns
- CSS Forms
- CSS Units
- CSS !important
- CSS Specificity
- CSS Combinators
- CSS inline-block
- CSS Hover
- CSS Cursors
- CSS Selectors
- CSS Type Selector
- CSS Class Selector
- CSS ID Selector
- CSS Attribute Selector
- CSS Pseudo-class Selector
- CSS Pseudo-element Selector
- CSS Universal Selector
- CSS Advanced
- CSS Text Formatting
- CSS Gradients
- CSS Shadow
- CSS Rounded Corners
- CSS Text Effects
- CSS 2D Transform
- CSS 3D Transform
- CSS Border Images
- CSS Inherit
- CSS Transitions
- CSS Animations
- CSS Box Sizing
- CSS Tooltip
- CSS Masking
- CSS Pagination
- CSS Styling Images
- CSS object-fit
- CSS object-position
- CSS Buttons
- CSS Multiple Columns
- CSS Variables
- CSS Flexbox
- CSS Grid
- CSS Media Queries
CSS: Colors
Colors play a significant role in web design, and CSS provides several ways to specify colors for text, backgrounds, borders, and other elements. Here are some common methods for working with colors in CSS:
- Named Colors: CSS provides a set of predefined color names that you can use directly in your stylesheets. For example:
Some commonly named colors include red, blue, green, black, white, yellow, purple, orange, etc.
body {
color: red;
background-color: lightblue;
}
- Hexadecimal Colors: Hexadecimal colors are represented using a six-digit code preceded by a hash symbol (#). Each pair of digits represents the red, green, and blue (RGB) components of the color. For example:
h1 {
color: #FFA500; /* Orange color */
background-color: #00FF00; /* Green color */
}
- RGB Colors: RGB colors specify the amount of red, green, and blue in a color using the rgb() function. Each value ranges from 0 to 255. For example:
p {
color: rgb(255, 0, 0); /* Red color */
background-color: rgb(0, 128, 255); /* Blue color */
}
- RGBA Colors: RGBA colors are similar to RGB but include an additional alpha channel that specifies the opacity of the color (from 0 to 1). This allows you to create transparent colors.
For example:
.transparent {
background-color: rgba(255, 0, 0, 0.5); /* Semi-transparent red */
}
- HSL and HSLA Colors: HSL (Hue, Saturation, Lightness) colors use the hsl() function to specify colors based on their hue (0 to 360 degrees), saturation (0% to 100%), and lightness (0% to 100%). HSLA is similar to HSL but includes an alpha channel for transparency. For example:
.highlight {
background-color: hsl(120, 100%, 50%); /* Bright green */
}
.semi-transparent {
background-color: hsla(240, 100%, 50%, 0.5); /* Semi-transparent blue */
}
- Color Names and Keywords: In addition to named colors, CSS also supports color keywords such as transparent (fully transparent), inherit (inherits the color from the parent element), and currentColor (uses the current color value).
.transparent-bg {
background-color: transparent; /* Fully transparent background */
}
.inherit-color {
color: inherit; /* Inherits color from parent element */
}
These methods provide flexibility in specifying colors in CSS, allowing you to create visually appealing and customized designs for your web pages.