diff --git a/source/_lovelace/light.markdown b/source/_lovelace/light.markdown
new file mode 100644
index 00000000000..75b2f59fe44
--- /dev/null
+++ b/source/_lovelace/light.markdown
@@ -0,0 +1,59 @@
+---
+layout: page
+title: "Light Card"
+sidebar_label: Light
+description: "The Light card allows you to change the brightness of the light."
+date: 2018-10-29 10:28 +00:00
+sidebar: true
+comments: false
+sharing: true
+footer: true
+---
+
+The Light card allows you to change the brightness of the light.
+
+
+
+Screenshot of the Light card.
+
+
+```yaml
+- type: light
+ entity: light.bedroom
+- type: light
+ entity: light.office
+```
+
+{% configuration %}
+type:
+ required: true
+ description: light
+ type: string
+entity:
+ required: true
+ description: Home Assistant Light Domain entity ID.
+ type: string
+name:
+ required: false
+ description: Overwrites friendly name.
+ type: string
+ default: Name of Entity
+{% endconfiguration %}
+
+## {% linkable_title Examples %}
+
+Overwriting names example:
+
+```yaml
+- type: light
+ entity: light.bedroom
+ name: Kids Bedroom
+- type: light
+ entity: light.office
+ name: My Office
+```
+
+
+
+Screenshot of the Light card names.
+
diff --git a/source/images/lovelace/lovelace_light_card.png b/source/images/lovelace/lovelace_light_card.png
new file mode 100644
index 00000000000..3e840de1ccf
Binary files /dev/null and b/source/images/lovelace/lovelace_light_card.png differ
diff --git a/source/images/lovelace/lovelace_light_complex_card.png b/source/images/lovelace/lovelace_light_complex_card.png
new file mode 100644
index 00000000000..77289dea90d
Binary files /dev/null and b/source/images/lovelace/lovelace_light_complex_card.png differ