-
Notifications
You must be signed in to change notification settings - Fork 0
LLC: Webmaking with HTML and CSS
Jonathan edited this page Jun 16, 2023
·
19 revisions
- Slides:
- Learner reference:
- Development environment & starter project:
-
Some colours can be specified by name, e.g.,
background-color: red; -
Note that the color name is not enclosed in quotes, i.e., it is
redand not'red'. -
Select named colours, some of which are used in the starter project, include:
darkslategraygoldgoldenrodhotpinklightcyanlightgraylightgreenmediumvioletredskybluewhitewhitesmokeyellowgreen
-
A full list of named colours can be found in the MDN Web Docs References - <named-color> (External link)
MDN Web Docs References - rgb()
- Colours can be specified using an expression,
rgb( R, G, B)where each ofR,G, andBrefer to the amount of red, green, and blue present in a colour. -
R,G, andBcan be written in one of three ways:- as a
number, between0%and255. e.g.rgb(31 120 50)(dark green) - as a
percentage, between0and100%, e.g.rgb(30% 20% 50%)(purple) - using the keyword
none
- as a
- All of the values must be of the same type (i.e., all numbers or all percentages) or
none