some CSS changes on titel and links colors

This commit is contained in:
Yeghro
2025-01-24 23:19:36 -08:00
parent f9e57d7fb0
commit bcf564a72b
3 changed files with 23 additions and 29 deletions

View File

@@ -174,6 +174,25 @@ body {
color: var(--text-color);
}
.resource-title a {
color: var(--primary-color);
text-decoration: none;
transition: color 0.2s ease;
}
.resource-title a:hover {
color: var(--hover-color);
}
/* Dark theme adjustment */
[data-theme="dark"] .resource-title a {
color: #a48ec7; /* A lighter shade of purple for dark mode */
}
[data-theme="dark"] .resource-title a:hover {
color: #b9a8d7; /* Even lighter shade for hover in dark mode */
}
.resource-link {
margin-bottom: 12px;
}
@@ -364,6 +383,10 @@ body {
color: #f1c40f;
}
#resources-container h2 {
color: var(--primary-color);
}
/* Main content scrollbar styles */
.main-content::-webkit-scrollbar {
width: 8px;