drbap / magicuser-theme-for-obsidian

MagicUser theme for Obsidian.md (light and dark themes)
MIT License
33 stars 0 forks source link

Changing the Meta Bar Progress Bar Color #51

Closed Medullitus closed 4 months ago

Medullitus commented 4 months ago

Hello. How can I change the meta bar progress bar color? The visual is attached. Thank you.

unknown_2024 06 28-08 32

drbap commented 4 months ago

Hi @Medullitus,

Great question on progress bar color. Could you share details on its implementation (plugin name or code snippet)?

All the best

Medullitus commented 4 months ago

Greetings to my favorite developer!

The name of the plugin is "Meta Bind". The GitHub link for the plugin is below:

https://github.com/mProjectsCode/obsidian-meta-bind-plugin

Thank you!

drbap commented 4 months ago

Thanks!

The progress bar uses the accent color as the default background (progress indicator). In order to change its color, please use the snippet below (add the color you want).

.mb-progress-bar-progress {
  background-color: rgb(0, 136, 136); /* Add the color you want here*/
}

All the best

Medullitus commented 4 months ago

It worked! Thx...