This callback triggered after theme is deleted.

~~~
<?php
function my_component_init(){
ossn_register_callback('theme', 'deleted', 'my_component_cb');
}
function my_component_cb($callback, $type, $params){
//$params['theme'] contains the ID of the theme
}
ossn_register_callback('ossn', 'init', 'my_component_init');
~~~

Theme after deleted