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

Make the frame marking today more visible in dark mode #143

Open
truscobox opened this issue Feb 6, 2025 · 1 comment
Open

Make the frame marking today more visible in dark mode #143

truscobox opened this issue Feb 6, 2025 · 1 comment

Comments

@truscobox
Copy link

When there is no marking for the current day and Obsidian is set to dark mode, the marking frame for today is barely visible. Maybe a solution would be to change the color to a brighter shade of gray to better discern it.

@Opti-Digital
Copy link

Opti-Digital commented Feb 13, 2025

+1 on above.

In the mean time I am using below CSS Snippet to override the colour specifically for dark theme today border:

/* HeatMap Plugin */
.theme-dark .heatmap-calendar-boxes .today {
	border-color: #FFFFFF; /* Change today border colour to WHITE */
}

You can adjust the colour to anything you like by adjusting the #FFFFFF value.

Note: You can make the border only appear when there is data for the current day using the css below (adding .hasData class condition):

/* HeatMap Plugin */
.theme-dark .heatmap-calendar-boxes .today.hasData {
	border-color: #FFFFFF; /* Change today border colour to WHITE */
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants