More actions
Futureself (talk | contribs) No edit summary |
Futureself (talk | contribs) No edit summary |
||
| Line 1: | Line 1: | ||
/* | /* Apply custom background and text color */ | ||
body { | |||
background-color: #1a1a1a | background-color: #1a1a1a; /* Dark background */ | ||
color: #ffffff | color: #ffffff; /* White text */ | ||
} | |||
/* Ensure links are readable */ | |||
a { | |||
color: #4ea6ea; /* Light blue links */ | |||
} | |||
a:visited { | |||
color: #b85cfa; /* Light purple for visited links */ | |||
} | } | ||
Revision as of 12:46, 28 February 2025
/* Apply custom background and text color */
body {
background-color: #1a1a1a; /* Dark background */
color: #ffffff; /* White text */
}
/* Ensure links are readable */
a {
color: #4ea6ea; /* Light blue links */
}
a:visited {
color: #b85cfa; /* Light purple for visited links */
}