Skip to content

Commit 8c361f6

Browse files
committed
[css-color-5][editorial] All figures have IDs
1 parent 0dc8a83 commit 8c361f6

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

css-color-5/Overview.bs

+9-9
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Introduction {#intro}
6363
this becomes even more useful to not need to manually set color,
6464
and to instead have a single source from which schemes are calculated.
6565

66-
<figure>
66+
<figure id="fig-chloropleth">
6767
<p><img src="images/LC-picker-scale.png" alt="LC color picker" style="width: 40vmin"><br/>
6868
<img src="images/LC-picker-map2.png" alt="chloropleth map of the US" style="width: 48vmin"></p>
6969
<figcaption>Above, a color picker operating in CIE LCH space.
@@ -235,7 +235,7 @@ and a percentage of 100% returns the same color converted to the specified color
235235
The mixing is done in ''lch()'' color space.
236236
Here is a top-down view, looking along the neutral L axis:
237237

238-
<figure>
238+
<figure id="fig-LCH-peru-goldenrod">
239239
<img src="images/CH-mixing.svg" width=480 height=480>
240240
<figcaption>Mixtures of peru and palegoldenrod.
241241
Peru has a hue angle, measured from the positive a axis,
@@ -271,7 +271,7 @@ and a percentage of 100% returns the same color converted to the specified color
271271

272272
<pre class="lang-css">color-mix(in lch, teal 65%, olive);</pre>
273273

274-
<figure>
274+
<figure id="fig-LCH-teal-olive">
275275
<img src="images/CH-mixing3.svg" width=500 height=500>
276276
<figcaption>Mixtures of teal and olive.
277277
Teal has a hue angle, measured from the positive a axis,
@@ -542,7 +542,7 @@ Let's move this example to the appropriate section when we have the new syntax f
542542

543543
<pre class="lang-css">color-mix(lch(52% 58.1 22.7) hue 75.23%, lch(56% 49.1 257.1));</pre>
544544

545-
<figure>
545+
<figure id="fig-LCH-red-skyblue">
546546
<img src="images/CH-mixing2.svg" style="width: 50vmin">
547547
<figcaption>Mixtures of a red and a sky blue.
548548
The red has a hue angle, measured from the positive a axis,
@@ -573,7 +573,7 @@ Let's move this example to the appropriate section when we have the new syntax f
573573

574574
<pre class="lang-css">color-mix(lch(52% 58.1 22.7) hue longer 75.23%, lch(56% 49.1 257.1) );</pre>
575575

576-
<figure>
576+
<figure id="fig-LCH-red-skyblue-2">
577577
<img src="images/CH-mixing2b.svg" style="width: 50vmin">
578578
<figcaption>Mixtures of a red and a sky blue.
579579
The red has a hue angle, measured from the positive a axis,
@@ -695,7 +695,7 @@ which is rgb(52.446% 45.821% 62.953%)
695695

696696
<pre class="lang-css">color-mix(lab rgb(82.02% 30.21% 35.02%) a 38% b 38%, rgb(5.64% 55.94% 85.31%));</pre>
697697

698-
<figure>
698+
<figure id="fig-Lab-red-skyblue">
699699
<img src="images/CH-mixing2c.svg" style="width: 50vmin">
700700
<figcaption>Mixtures of a red and a sky blue.
701701
The red has a hue angle, measured from the positive a axis,
@@ -1147,7 +1147,7 @@ However, unlike HSL, manipulations are not guaranteed to be in-gamut.
11471147
The closest color inside the sRGB gamut would be <span class="swatch" style="--color: rgb(0% 64.2% 66.3%)"></span> lch(60.71% 37.56 201.1)
11481148
which is <span class="swatch" style="--color: rgb(0% 64.2% 66.3%)"></span> rgb(0% 64.2% 66.3%). The difference in chroma (37.5, instead of 90) is huge.
11491149

1150-
<figure>
1150+
<figure id="fig-LCH-rotation-oog">
11511151
<img src="images/LCH-rotation-oog.svg"
11521152
width="540" height="520"
11531153
alt="Diagram of CH plane showing relative color manipulation">
@@ -1778,7 +1778,7 @@ or any other color or monochrome output device which has been characterized.
17781778
(anti-aliasing, compositing, using the color in a gradient, etc)
17791779
can proceed as normal.
17801780

1781-
<figure id="fogra51-roundtrip">
1781+
<figure id="fig-fogra51-roundtrip">
17821782
<!-- See file Macbeth.txt in the workings directory for details. -->
17831783
<img src="images/macbeth-roundtrip.svg" width=670 height=450>
17841784
<figcaption>
@@ -2106,7 +2106,7 @@ or any other color or monochrome output device which has been characterized.
21062106
the dot gain,
21072107
the colorimetry of the RGB space, and so on.
21082108

2109-
<figure>
2109+
<figure id="fig-naive-cmyk">
21102110
<img src="images/macbeth-naive.svg" width=670 height=450>
21112111
<figcaption>
21122112
<p>A color checker, used for ensuring color fidelity

0 commit comments

Comments
 (0)