diff --git a/README.md b/README.md
index e7b8278..e4afc9b 100644
--- a/README.md
+++ b/README.md
@@ -25,7 +25,7 @@ println!("{}", "Hello, world!".fg(red()));
Output:
-Hello, world!
+![Red on natural](https://i.imgur.com/odonuth.png)
# Background colors
@@ -37,7 +37,7 @@ println!("{}", "Hello, world!".bg(red()));
Output:
-Hello, world!
+![Natural on red](https://i.imgur.com/fU1unJ9.png)
# Mix and match
@@ -58,7 +58,7 @@ println!("{}", "Yuck".fg(fg).bg(bg));
Output:
-Yuck
+![Yuck](https://i.imgur.com/ippM4tf.png)
# Anything formattable
@@ -72,7 +72,7 @@ println!("{:?}", foo.fg(green()));
Output:
-Foo(1, 2)
+![Green foo](https://i.imgur.com/f3sFuIV.png)
# Windows users