We need to find which property is applying the blur (Maybe it is in your theme, or an obsidian default). Use the inspector to check where the blur is being applied:
While using Obsidian, if you press CTRL-SHIFT-I (option-cmd-i for mac) then it will bring up the developer window. In the developer window, at the top left is an icon with a pointer in a box. This allows you to select elements on the screen and see how to refer to them and what styles. I will occasionally update this post with more pictures of how to do stuff.
[Developer Tool]
You can hover over items to see what they do and then click on an item to select it. Then go down to the styles secti…
Another guess:
.theme-light .workspace {
backdrop-filter: none!important;
background-color: transparent;
}
.theme-dark .workspace {
backdrop-filter: none!important;
background-color: transparent;
}
body {
--background-primary: transparent;
--background-secondary: transparent;
}