From da2f2bc3801e73386fb1d883ceba21f0ae2ea067 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Thu, 6 Mar 2025 16:00:35 +0000 Subject: [PATCH] #4 Added new vscode colour scheme option. --- static/themes/vscode-dark.css | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 static/themes/vscode-dark.css diff --git a/static/themes/vscode-dark.css b/static/themes/vscode-dark.css new file mode 100644 index 0000000..9223bda --- /dev/null +++ b/static/themes/vscode-dark.css @@ -0,0 +1,18 @@ +:root { + --bg: #1e1e1e; /* Dark neutral background */ + --bg-secondary: #252526; /* Slightly lighter for separation */ + --accent: #569cd6; /* Signature VS Code blue */ + + --header: #9cdcfe; /* Brighter cyan for contrast */ + --fg: #d4d4d4; /* Light grey for readability */ + + --input: #333; /* Dark but still visible */ + + --link: #4fc1ff; /* Brighter blue for hyperlinks */ + --glow: #2a3f5f; /* Soft deep blue glow */ + --hover: #7bb8e8; /* Brighter accent on hover */ + + --green: #4ec9b0; /* Soft green */ + --red: #d16969; /* Coding red */ + --blue: #9cdcfe; /* Soft bright cyan */ +} \ No newline at end of file