Skip to content

Commit 6c6a3ec

Browse files
authored
[doc] Make png images readable in dark mode (#3935)
1 parent 789ed7e commit 6c6a3ec

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/modules/ROOT/pages/advancedFeatures/advanced-mutualizing-operator-usage.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Flux.fromIterable(Arrays.asList("blue", "green", "orange", "purple"))
3030

3131
The following image shows how the `transform` operator encapsulates flows:
3232

33-
image::gs-transform.png[Transform Operator : encapsulate flows]
33+
image::gs-transform.png[Transform Operator : encapsulate flows, role="invert-dark"]
3434

3535
The preceding example produces the following output:
3636

@@ -77,7 +77,7 @@ composedFlux.subscribe(d -> System.out.println("Subscriber 2 to Composed MapAndF
7777

7878
The following image shows how the `transformDeferred` operator works with per-subscriber transformations:
7979

80-
image::gs-compose.png[Compose Operator : Per Subscriber transformation]
80+
image::gs-compose.png[Compose Operator : Per Subscriber transformation, role="invert-dark"]
8181

8282
The preceding example produces the following output:
8383

docs/modules/ROOT/pages/advancedFeatures/reactor-hotCold.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Subscriber 2: PURPLE
6161

6262
The following image shows the replay behavior:
6363

64-
image::gs-cold.png[Replaying behavior]
64+
image::gs-cold.png[Replaying behavior, role="invert-dark"]
6565

6666
Both subscribers catch all four colors, because each subscriber causes the
6767
process defined by the operators on the `Flux` to run.
@@ -105,7 +105,7 @@ Subscriber 2 to Hot Source: PURPLE
105105

106106
The following image shows how a subscription is broadcast:
107107

108-
image::gs-hot.png[Broadcasting a subscription]
108+
image::gs-hot.png[Broadcasting a subscription, role="invert-dark"]
109109

110110
Subscriber 1 catches all four colors. Subscriber 2, having been created after the first
111111
two colors were produced, catches only the last two colors. This difference accounts for

0 commit comments

Comments
 (0)