How Do I Reference an Image in Theme Config?

I’m using the Developer theme as a starting point.
http://themes.benjamin-regler.de/developer

I’ve created a user/config/themes/developer.yaml file.

profile:
name: "New Name"
desc: "New Description"
avatar_url: “…/…/pages/images/headlogo.svg”

Name and description changes the page as I want, but I cannot get my logo to replace the image that is there.

I’ve also edited user/themes/developer/templates/default.html.twig

{{ theme_config.profile.name | default(site.author.name) }}

I guess I just don’t know the relative path to the file. “…/…/pages/images/headlogo.svg” obviously is wrong. “…/pages/images/headlogo.svg” doesn’t work either.

I found a way to get around this by using this src="{{ base_url }}/user/pages/images/headlogo.svg" in my default.html.twig file, but that does not satisfy my curiosity, nor am I sure that is the best way.

Note: my underscores are not showing up in the above post, I hope that does not lead to too much confusion.

frankly i would do this:

avatar_url: headlogo.svg

Then in my twig do this as you are already storing the image under a page called images:

{% set avatar_image = themeconfig.profile.avatar_url %}
{% set avatar_url = page.find('/images').media[avatar_name] %}
{% set avatar_name = themeconfig.profile.name | default(site.author.name)
<img class=“profile-image img-responsive pull-left img-circle” src=“{{ avatar_url }}” alt=“{{ avatar_name }}” height=“180” />

I figured out I could do this:

<img src="{{ base_url_relative }}/user/pages/images/logo.svg" alt="logo" height="100" />

no need to mess with the yaml file.