Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix the text visibility(Issue: #1648) #1663

Merged
merged 3 commits into from
Nov 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -456,22 +456,27 @@ body.dark-mode footer .phone{
color: #c74b3b;
text-decoration: none;
}
.feature-post .text-title {
color: #b0b0b0; /* Light grey color for titles */
}
/* .feature-post .text-title {
color: #726464; /* Light grey color for titles */

.feature-post .secondary-title {
color: #a0a0a0; /* Slightly lighter grey for secondary text */
}
/* .feature-post .secondary-title {
color: #a0a0a0; /* Slightly lighter grey for secondary text*/
*/

.feature-post .text-secondary {
color: #9e9e9e; /* Light grey for date/time text */
}
/* .feature-post .text-secondary {
color: #5d5353; /* Light grey for date/time text */
*/

.feature-post a {
text-decoration: none; /* Remove underline for links */
}

/* [data-theme='dark'] .feature-post .text-title {
color: var(--text-color);
}
[data-theme='dark'] .feature-post .secondary-title {
color:var(--text-color);
} */


.form-popup {
Expand Down
Loading