From 1b02dd957112c767e8df1e273ec35fa348ece736 Mon Sep 17 00:00:00 2001 From: Rod Date: Sat, 10 Oct 2020 20:26:19 -0500 Subject: [PATCH] Replaced code images with code --- README.md | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) 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