18 lines
621 B
CSS
18 lines
621 B
CSS
|
: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 */
|
||
|
}
|