roovo / obsidian-card-board

An Obsidian plugin to make working with tasks a pleasure (hopefully anyway).
MIT License
494 stars 21 forks source link

UI option to change color indicators in Dated board #131

Open davebhc71 opened 1 year ago

davebhc71 commented 1 year ago

Would like to change colors for Past and Current items. Orange and Red are too similar!😉

roovo commented 1 year ago

thanks btw :)

davebhc71 commented 1 year ago

👍, and I’m testing the latest build without issues…😉On Jan 20, 2023, at 10:39 AM, roovo @.***> wrote: thanks btw :)

—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: @.***>

davebhc71 commented 1 year ago

Just to follow up on this FR - Green for Today would be nice. And, I’m not asking for the User to be able to change the color, but that you consider a ‘universal’ change for Today to Green in the next update. 😉

roovo commented 10 months ago

Just realised that you should be able to use a css snippet along these lines to customise the colours:

.card-board-view .card-board-card-highlight-area.critical {
  background-color: red;
}

.card-board-view .card-board-card-highlight-area.good {
  background-color: green;
}

.card-board-view .card-board-card-highlight-area.important {
  background-color: orange;
}
roovo commented 10 months ago

I have updated the readme with info on doing this and have just released a related feature: via snippets, you can set the color indicators based on tags too.