I'd like to set the dark mode theme on a non-default Kibana Space using a curl command.
Is this possible?
For the default space, I can use the command below, but I can't find anything for specific spaces.
curl -XPUT "#{kibana_url}/api/saved_objects/config/7.1.1" -H "Content-Type: application/json" -H "kbn-xsrf: true" -d'                                                                                                                                                                                                                                                                                                                                                                                                                                    {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
  "attributes": {                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 
    "theme:darkMode": true                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           }                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   }'
