COLOR NAMES
CSS CODE
COPY HEX CODE
PALETTE
HASHTAGCOLOR

#ffc0cb

(Pink) rgb(255,192,203)

#ffc0cb HTML & CSS CODE

CSS text color using an HTML tag
 <p style='color:#ffc0cb'>Lorem ipsum consectetur adipiscing.</p> 
clipboard
CSS text, background, border color using a class
 .text_color{color:#ffc0cb;} /*create a class called text_color*/ 
clipboard
 .color_name{color:Pink;} 
clipboard
 .bg_color{background-color:#ffc0cb;} 
clipboard
 .border_color{border:2px solid #ffc0cb;} 
clipboard
 .text_color_rgb{color:rgb(255,192,203);} 
clipboard
 .bg_opacity{background-color:rgba(255,192,203,0.5);} 
clipboard
 <div class='text_color'>Lorem ipsum consectetur adipiscing.</p>
 /*How to use the class called text_color or use another class name*/
clipboard
rgba = red, green, blue, alpha where alpha is a number between 0 (Transparent) and 1 (Opaque)
© 2024 - Hashtagcolor.com - v2.1 - - Cookies - Privacy - infos
im