diff --git a/README.md b/README.md
index 30f73ea..0b593c1 100644
--- a/README.md
+++ b/README.md
@@ -67,19 +67,30 @@ The Project uses [Feather icons](https://feathericons.com/) for the icons, and y
#### Colors
In the CSS code you can always change the variables for both themes (Dark and Light)
-
-
-
-
-
Light mode (default)
-
+```css
+ /* Light theme */
+:root {
+ --accent: #186efdaa;
+ --bg: #f5f5f5;
+ --sbg: #e4e6e6;
+ --fg: #3a3a3a;
+ --imgcol: linear-gradient(
+ rgba(255, 255, 255, 0.7),
+ rgba(255, 255, 255, 0.7)
+ );
+}
+
+ /* Dark theme */
+.darktheme {
+ --accent: #186efd60;
+ --bg: #1e1f21;
+ --sbg: #2c2d31;
+ --fg: #d8dee9;
+ --imgcol: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
+}
+```
+
-
-
-
-
-
Dark mode
-
#### Image Background