diff --git a/docs/source/styles/opacity.blade.md b/docs/source/styles/opacity.blade.md
index b1d59e045..3b5e91855 100644
--- a/docs/source/styles/opacity.blade.md
+++ b/docs/source/styles/opacity.blade.md
@@ -5,16 +5,86 @@ title: "Opacity"
# Opacity
-
+
Utilities for controlling the opacity of an element.
-
-
Responsive
-
Customizing
+
+
+
+
+ | .opacity-100 |
+ opacity: 1; |
+ Set the opacity of an element to 100%. |
+
+
+ | .opacity-75 |
+ opacity: .75; |
+ Set the opacity of an element to 75%. |
+
+
+ | .opacity-50 |
+ opacity: .5; |
+ Set the opacity of an element to 50%. |
+
+
+ | .opacity-25 |
+ opacity: .25; |
+ Set the opacity of an element to 25%. |
+
+
+ | .opacity-0 |
+ opacity: 0; |
+ Set the opacity of an element to 0%. |
+
+
+
-Control the opacity of an element in Tailwind using the `.opacity` utilities.
+
+
+
+
+## Example
@component('_partials.code-sample')