TEXT REPRESENTATION LOWER CASE ==> java full stack UPPER CASE ==> JAVA FULL STACK TITLE CASE ==> Java full stack CAPITALIZE CASE ==> Java Full Stack CAMEL CASE ==> java Full Stack small-caps capitals if the first letter of data in Upper case already: first letter ==> Larger in size ===================================================== COLOR PROPERTY: =============== Syntax: color : color-name | hexacode | rgb() | rgba() | hsl() | hsla(); 1) with color-name: =================== ==> color : blue; 2) with hexacode: ================= start with '#' length: 6-characters characters: numbers (0 to 9) and Alphabets (a to f) syntax: #rrggbb ex: color : #112233|#a1b2f3 | Syntax: color : #rrggbb; 3) with rgb() ============= Syntax: color : rgb() r ==> red ==> 1byte size ==> 256 values ==> 0 to 255 g ==> green ==> 256 ==> 0 to 255 b ==> blue ==> 256 ==> 0 to 255 Syntax: color : rgb(123,199,215) 4) with rgba() ============== syntax: color : rgba(red, green, blue, Alpha) alpha ==> opacity transparency of the color 0.0 to 1.0 5) with hsl(): ============= Syntax: color : hsl(hue, saturation, light) hue ==> can define in degrees color wheel ==> 0 to 360 deg 0 deg ==> red 120 deg ==> green 240 deg ==> blue saturation ==> shade of the text % light ==> thin or thick % 6) with hsla(): ============== Syntax: color : hsla(hue, saturation, light, alpha) alpha ==> 0.0 to 1.0 ==================================== Background-color property: ========================== Syntax: background-color : color-name | rgb() | hexacode | rgba() | hsl() | hsla() bgcolor : values;