diff --git a/README.md b/README.md
index b129d21..60d3256 100644
--- a/README.md
+++ b/README.md
@@ -1,16 +1,16 @@
-# Simple light theme
+# Simple Light Theme
-Inspired by [IDEA like light Theme][inspired-by] and [GitLabs][gitlab-theme]
+Inspired by [IDEA like light Theme][inspired-by] and [GitLab's][gitlab-theme]
light highlighting syntax.
## Goal
Don't expect any fancy colors.
-More colors equals more distraction, we don't want to waste cognitive capacity
+More colors equal more distraction; we don't want to waste cognitive capacity
on that. The goal of this theme is to have the minimum meaningful colors.
-## Supported languages
+## Supported Languages
- TypeScript
- JavaScript
@@ -22,53 +22,21 @@ on that. The goal of this theme is to have the minimum meaningful colors.
- Markdown
- CSS, SCSS, Less
-Others comming soon...
+Others coming soon...
## Preview
-
+![JavaScript preview](docs/js-preview.png)
+![Go preview](docs/go-preview.png)
+![Java preview](docs/java-preview.png)
+![HTML preview](docs/html-preview.png)
+![CSS preview](docs/css-preview.png)
+![Python preview](docs/py-preview.png)
+![C++ preview](docs/cpp-preview.png)
-
- Go
-
-
+## Related
-
- Java
-
-
-
-
- HTML
-
-
-
-
- CSS
-
-
-
-
-
- Python
-
-
-
-
- C++
-
-
-
-## Contributors
-
-Thank for feedback:
-
-- @MarcelGeo
-- @dderevjanik
-
-## Related projects
-
-– [vscode-ideal-theme][inspired-by] – IDEA like light Theme
+- [vscode-ideal-theme][inspired-by] – IDEA like light Theme
[inspired-by]: https://github.com/karsany/vscode-ideal-theme
[gitlab-theme]: https://docs.gitlab.com/ee/user/profile/preferences.html#syntax-highlighting-theme
diff --git a/docs/cpp-preview.png b/docs/cpp-preview.png
new file mode 100644
index 0000000..f0e4596
Binary files /dev/null and b/docs/cpp-preview.png differ
diff --git a/docs/css-preview.png b/docs/css-preview.png
new file mode 100644
index 0000000..f945bc9
Binary files /dev/null and b/docs/css-preview.png differ
diff --git a/docs/go-preview.png b/docs/go-preview.png
new file mode 100644
index 0000000..c6f36c3
Binary files /dev/null and b/docs/go-preview.png differ
diff --git a/docs/html-preview.png b/docs/html-preview.png
new file mode 100644
index 0000000..4815c2e
Binary files /dev/null and b/docs/html-preview.png differ
diff --git a/docs/images.sh b/docs/images.sh
new file mode 100755
index 0000000..5f759e7
--- /dev/null
+++ b/docs/images.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+declare -A images=(
+ ["js-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-js-preview-6m4.svg"
+ ["go-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-go-preview-6m4.svg"
+ ["java-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-java-preview-6m4.svg"
+ ["html-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-html-preview-6m4.svg"
+ ["css-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-css-preview-6m4.svg"
+ ["py-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-py-preview-6m4.svg"
+ ["cpp-preview"]="https://images.vscodethemes.com/xseman.simple-light/simple-light-cpp-preview-6m4.svg"
+)
+
+for name in "${!images[@]}"; do
+ url="${images[$name]}"
+
+ svg_path="${name}.svg"
+ png_path="${name}.png"
+
+ curl -o "${svg_path}" "${url}"
+ convert "${svg_path}" -quality 100 "${png_path}"
+
+ rm "${svg_path}"
+done
diff --git a/docs/java-preview.png b/docs/java-preview.png
new file mode 100644
index 0000000..5f76bf2
Binary files /dev/null and b/docs/java-preview.png differ
diff --git a/docs/js-preview.png b/docs/js-preview.png
new file mode 100644
index 0000000..c62a933
Binary files /dev/null and b/docs/js-preview.png differ
diff --git a/docs/py-preview.png b/docs/py-preview.png
new file mode 100644
index 0000000..ea5c711
Binary files /dev/null and b/docs/py-preview.png differ