Journal queries background

Is it possible to show queries from :default-queries (in the journal) in a darker green box (similar to the scheduled and deadlines)?

1 Like

I’ve been thinking the same thing.

The top row, “TODAY AND OVERDUE,” is a query set in config.edn.

“SCHEDULED AND DEADLINE” is easier to see because the background color is set.

Could set a css rule in file custom.css like this:

#today-queries {
  background: darkseagreen;
}

or

#today-queries {
  background: var(--ls-tertiary-background-color);
}
1 Like

Thank you very much.