sorry for the late reply - I plan to add an option to remove certain element’s shadow from the theme via style settings in the near future! (or option to style callouts)
i’ll take note of this and add it to the tracker.
in the mean time, you can do so with this little snippet:
.callout {
box-shadow: none;
}
.theme-light .callout {
outline: 1px solid color-mix(in srgb, rgb(var(--callout-color), 0.35) 90%, black);
}
.theme-dark .callout {
outline: 1px solid color-mix(in srgb, rgb(var(--callout-color), 0.35) 90%, white);
}
.callout-title {
box-shadow: none;
}
.callout-content {
box-shadow: none;
}
it will result in callouts like this:
hope this helps! @rudex