CSS | 8 Digit Hex Color
The Eight Digit Hex color is as simple as Six Digit Hex color it contains 8 digits rather than six, it is used to define the color of your elements with the CSS. It has a prefixed hash(#) value before the digits like six-digit hex code.
The difference between 6 and 8 digit hex codes is, that 2 extra characters define the alpha channel as the name suggests in the 8 digit hex color. The last two digits will define that the color will how much transparent or opaque. If the last two digit is 00 then that will be fully transparent and if that is FF then it will be fully opaque.
Syntax:
#RRGGBBAA
Note: The first six character represent the RGB color as Six digit hex color code. Last two represent the alpha channel.
Example 1:
<!DOCTYPE html> < html > < head > < title >CSS 8 Digit Hex Color</ title > < style > body { background-color: #666600; } h1 { color: green; } article { background-color: #FFFFFF44; border: 5px solid green; margin: 15px; text-align: center; } </ style > </ head > < body > < article > < h1 >GeeksforGeeks</ h1 > </ article > </ body > </ html > |
Output:
Example 2:
<!DOCTYPE html> < html > < head > < title >CSS 8 Digit Hex Color</ title > < style > body { background-image: url( background-attachment: fixed; background-size: cover; } h2 { color: white; } article { background-color: #FFFFFF22; border: 2px solid green; background-position: center center; text-align: center; } </ style > </ head > < body > < article > < h2 >GeeksforGeeks</ h2 > </ article > </ body > </ html > |
Output:
Recommended Posts:
- CSS | 3 Digit Hex Color
- CSS | 6 Digit Hex Color
- CSS | 4 Digit Hex Color
- How to change an element color based on value of the color picker value using onclick?
- How to change text color depending on background color using JavaScript?
- How to get hex color value of RGB value ?
- p5.js | color() Function
- D3.js | color.opacity
- D3.js | color.rgb() Function
- How to set the SVG background color ?
- D3.js | d3.color() Function
- CSS | caret-color Property
- HTML | DOM HR color Property
- Node Jimp | Color mix
- Node Jimp | Color hue
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.