_content/security/fuzz: fix transparent image for dark theme

Fixes golang/go#54954

Change-Id: Ie2db42fe32e791111486cbbe8f3a392934f4a174
Reviewed-on: https://go-review.googlesource.com/c/website/+/454875
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
TryBot-Result: Gopher Robot <gobot@golang.org>
Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
diff --git a/_content/security/fuzz/example-dark.png b/_content/security/fuzz/example-dark.png
new file mode 100644
index 0000000..9a8bfe6
--- /dev/null
+++ b/_content/security/fuzz/example-dark.png
Binary files differ
diff --git a/_content/security/fuzz/index.md b/_content/security/fuzz/index.md
index 3ba7a5b..201c838 100644
--- a/_content/security/fuzz/index.md
+++ b/_content/security/fuzz/index.md
@@ -22,11 +22,16 @@
 Below is an example of a [fuzz test](#glos-fuzz-test), highlighting its main
 components.
 
+<img class="DarkMode-img" alt="Example code showing the overall fuzz test, with a fuzz target within
+it. Before the fuzz target is a corpus addition with f.Add, and the parameters
+of the fuzz target are highlighted as the fuzzing arguments."
+src="/security/fuzz/example-dark.png" style="width: 600px; height:
+auto;"/>
 <img alt="Example code showing the overall fuzz test, with a fuzz target within
 it. Before the fuzz target is a corpus addition with f.Add, and the parameters
 of the fuzz target are highlighted as the fuzzing arguments."
-src="/security/fuzz/example.png" style="display: block; width: 600px; height:
-auto;"/>
+src="/security/fuzz/example.png" style="width: 600px; height:
+auto;" class="LightMode-img"/>
 
 ## Writing fuzz tests