Un-enqueue styles for certain built-in Gutenberg block types?

In Gutenberg and plugins for Gutenberg are all styles involved via wp_enqueue_style. I would to see all developers use wp_register_style before, makes easier to deregister. However you should un-enqueue the style via the core function wp_dequeue_style.

So this should work, in dependency of the hook and handle of the style and his handle, here for example gutenberg-handle-foo.

add_action('wp_print_styles', function() {
    wp_dequeue_style('gutenberg-handle-foo');
}, 99);

A screenshot

about handle examaples in the WP Admin Edit Post screen, version 5.2 of WP.

enter image description here