Skip to content

Commit 9bf5a5b

Browse files
committed
generated by the form
1 parent 52f40d0 commit 9bf5a5b

1 file changed

Lines changed: 30 additions & 26 deletions

File tree

css3-color/Overview.html

Lines changed: 30 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,11 @@
6060

6161
<h1>CSS Color Module Level 3</h1>
6262

63-
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 28 September
64-
2010</h2>
63+
<h2 class="no-num no-toc" id=longstatus-date>Editor's Draft 7 October 2010</h2>
6564

6665
<dl>
6766
<dt>This version:</dt>
68-
<!-- <dd><a href="http://www.w3.org/TR/2010/ED-css3-color-20100928">http://www.w3.org/TR/2010/ED-css3-color-20100928</a></dd> -->
67+
<!-- <dd><a href="http://www.w3.org/TR/2010/ED-css3-color-20101007">http://www.w3.org/TR/2010/ED-css3-color-20101007</a></dd> -->
6968

7069
<dd><a
7170
href="http://dev.w3.org/csswg/css3-color/">http://dev.w3.org/csswg/css3-color/</a>
@@ -895,7 +894,7 @@ <h4 id=transparent><span class=secno>4.2.3. </span>&lsquo;<a
895894
<dt><dfn id=transparent-def>transparent</dfn>
896895

897896
<dd>Fully transparent. This keyword can be considered a shorthand for
898-
rgba(0,0,0,0), which is its computed value.
897+
transparent black, rgba(0,0,0,0), which is its computed value.
899898
</dl>
900899

901900
<h4 id=hsl-color><span class=secno>4.2.4. </span>HSL color values</h4>
@@ -924,7 +923,8 @@ <h4 id=hsl-color><span class=secno>4.2.4. </span>HSL color values</h4>
924923
given. By definition red=0=360, and the other colors are spread around the
925924
circle, so green=120, blue=240, etc. As an angle, it implicitly wraps
926925
around such that -120=240 and 480=120. One way an implementation could
927-
normalize such an angle x to the range [0,360) is to compute (((x mod 360)
926+
normalize such an angle x to the range [0,360) (<em>i.e.</em> zero
927+
degrees, inclusive, to 360 degrees, exclusive) is to compute (((x mod 360)
928928
+ 360) mod 360). Saturation and lightness are represented as percentages.
929929
100% is full saturation, and 0% is a shade of gray. 0% lightness is black,
930930
100% lightness is white, and 50% lightness is &ldquo;normal&rdquo;.
@@ -936,7 +936,7 @@ <h4 id=hsl-color><span class=secno>4.2.4. </span>HSL color values</h4>
936936

937937
<pre>
938938
* { color: hsl(0, 100%, 50%) } /* red */
939-
* { color: hsl(120, 100%, 50%) } /* green */
939+
* { color: hsl(120, 100%, 50%) } /* lime */
940940
* { color: hsl(120, 100%, 25%) } /* dark green */
941941
* { color: hsl(120, 100%, 75%) } /* light green */
942942
* { color: hsl(120, 75%, 75%) } /* pastel green, and so on */
@@ -997,7 +997,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
997997
<tr>
998998
<th>
999999

1000-
<th colspan=5>0&deg; Red
1000+
<th colspan=5>0&deg; Reds
10011001

10021002
<tr>
10031003
<th>
@@ -1140,7 +1140,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
11401140
<tr>
11411141
<th>
11421142

1143-
<th colspan=5>30&deg; Red-Yellow (=Orange)
1143+
<th colspan=5>30&deg; Red-Yellows (=Oranges)
11441144

11451145
<tr>
11461146
<th>
@@ -1283,7 +1283,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
12831283
<tr>
12841284
<th>
12851285

1286-
<th colspan=5>60&deg; Yellow
1286+
<th colspan=5>60&deg; Yellows
12871287

12881288
<tr>
12891289
<th>
@@ -1426,7 +1426,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
14261426
<tr>
14271427
<th>
14281428

1429-
<th colspan=5>90&deg; Yellow-Green
1429+
<th colspan=5>90&deg; Yellow-Greens
14301430

14311431
<tr>
14321432
<th>
@@ -1569,7 +1569,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
15691569
<tr>
15701570
<th>
15711571

1572-
<th colspan=5>120&deg; Green
1572+
<th colspan=5>120&deg; Greens
15731573

15741574
<tr>
15751575
<th>
@@ -1712,7 +1712,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
17121712
<tr>
17131713
<th>
17141714

1715-
<th colspan=5>150&deg; Green-Cyan
1715+
<th colspan=5>150&deg; Green-Cyans
17161716

17171717
<tr>
17181718
<th>
@@ -1855,7 +1855,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
18551855
<tr>
18561856
<th>
18571857

1858-
<th colspan=5>180&deg; Cyan
1858+
<th colspan=5>180&deg; Cyans
18591859

18601860
<tr>
18611861
<th>
@@ -1998,7 +1998,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
19981998
<tr>
19991999
<th>
20002000

2001-
<th colspan=5>210&deg; Cyan-Blue
2001+
<th colspan=5>210&deg; Cyan-Blues
20022002

20032003
<tr>
20042004
<th>
@@ -2141,7 +2141,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
21412141
<tr>
21422142
<th>
21432143

2144-
<th colspan=5>240&deg; Blue
2144+
<th colspan=5>240&deg; Blues
21452145

21462146
<tr>
21472147
<th>
@@ -2284,7 +2284,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
22842284
<tr>
22852285
<th>
22862286

2287-
<th colspan=5>270&deg; Blue-Magenta
2287+
<th colspan=5>270&deg; Blue-Magentas
22882288

22892289
<tr>
22902290
<th>
@@ -2427,7 +2427,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
24272427
<tr>
24282428
<th>
24292429

2430-
<th colspan=5>300&deg; Magenta
2430+
<th colspan=5>300&deg; Magentas
24312431

24322432
<tr>
24332433
<th>
@@ -2570,7 +2570,7 @@ <h5 id=hsl-examples><span class=secno>4.2.4.1. </span>HSL examples</h5>
25702570
<tr>
25712571
<th>
25722572

2573-
<th colspan=5>330&deg; Magenta-Red
2573+
<th colspan=5>330&deg; Magenta-Reds
25742574

25752575
<tr>
25762576
<th>
@@ -4922,8 +4922,12 @@ <h3 id=normative><span class=secno>11.1. </span>Normative</h3>
49224922

49234923
<dt id=COLORIMETRY>[COLORIMETRY]
49244924

4925-
<dd><cite>Colorimetry, Second Edition.</cite> CIE Publication 15.2-1986.
4926-
ISBN 3-900-734-00-3</dd>
4925+
<dd><a
4926+
href="http://www.cie.co.at/publ/abst/15-2004.html"><cite>Colorimetry,
4927+
Third Edition.</cite></a> CIE Publication 15:2004. ISBN 978-3-901906-33-6
4928+
URL: <a
4929+
href="http://www.cie.co.at/publ/abst/15-2004.html">http://www.cie.co.at/publ/abst/15-2004.html</a>
4930+
</dd>
49274931
<!---->
49284932

49294933
<dt id=CSS21>[CSS21]
@@ -4941,8 +4945,8 @@ <h3 id=normative><span class=secno>11.1. </span>Normative</h3>
49414945
<dd><a href="http://www.iec.ch/nr1899.htm"><cite>Multimedia systems and
49424946
equipment - Colour measurement and management - Part 2-1: Colour
49434947
management - Default RGB colour space - sRGB.</cite></a> IEC 61966-2-1
4944-
(1999-10). ISBN: 2-8318-4989-6 - ICS codes: 33.160.60, 37.080 - TC 100 -
4945-
51 pp. URL: <a
4948+
(1999-10) ISBN: 2-8318-4989-6 - ICS codes: 33.160.60, 37.080 - TC 100 -
4949+
51 pp. as amended by Amendment A1:2003. URL: <a
49464950
href="http://www.iec.ch/nr1899.htm">http://www.iec.ch/nr1899.htm</a></dd>
49474951
<!---->
49484952

@@ -5055,10 +5059,10 @@ <h3 id=informative><span class=secno>11.2. </span>Informative</h3>
50555059
<dt id=XML10>[XML10]
50565060

50575061
<dd>C. M. Sperberg-McQueen; et al. <a
5058-
href="http://www.w3.org/TR/2008/PER-xml-20080205"><cite>Extensible Markup
5059-
Language (XML) 1.0 (Fifth Edition).</cite></a> 10 February 1998. W3C
5060-
Proposed Edited Recommendation. Revised 5 February 2008 URL: <a
5061-
href="http://www.w3.org/TR/2008/PER-xml-20080205">http://www.w3.org/TR/2008/PER-xml-20080205</a>
5062+
href="http://www.w3.org/TR/2008/REC-xml-20081126/"><cite>Extensible
5063+
Markup Language (XML) 1.0 (Fifth Edition).</cite></a> 26 November 2008.
5064+
W3C Recommendation. URL: <a
5065+
href="http://www.w3.org/TR/2008/REC-xml-20081126/">http://www.w3.org/TR/2008/REC-xml-20081126/</a>
50625066
</dd>
50635067
<!---->
50645068
</dl>

0 commit comments

Comments
 (0)