---
title: "💭 Background Image | Wallpaper · Issue #3059 · helix-editor/helix"
description: "!https://github.com/helix-editor/helix/issues/3059"
date: 2024-10-08
published: true
tags:
  - helix
  - thought
template: link
---


<div class="embed-card embed-card-external">
  <a href="https://github.com/helix-editor/helix/issues/3059" class="embed-card-link" target="_blank" rel="noopener noreferrer">
    <div class="embed-card-image">
      <img src="https://opengraph.githubassets.com/50aa0ae7f1ef9a5a82fb25876a3c27bf548b77347c730bc66182681ebc4ea221/helix-editor/helix/issues/3059" alt="Background Image | Wallpaper · Issue #3059 · helix-editor/helix — Describe your feature request Hey ! It&#39;d be cool to have the ability to set a background-image on supported terminals (like kitty). Like on IntelliJ: Here is an example of what it&#39;d be on helix:" loading="lazy">
    </div>
    <div class="embed-card-content">
      <div class="embed-card-title">Background Image | Wallpaper · Issue #3059 · helix-editor/helix</div>
      <div class="embed-card-description">Describe your feature request Hey ! It&#39;d be cool to have the ability to set a background-image on supported terminals (like kitty). Like on IntelliJ: Here is an example of what it&#39;d be on helix:</div>
      <div class="embed-card-meta">GitHub &middot; github.com</div>
    </div>
  </a>
</div>


How to make helix themes transparent.  You can make any built-in theme transparent in helix with one line, a few extras and you can make all the pop ups, help menus and status line trransparant as well.

``` bash
mkdir -p ~/.config/helix/themes
hx
```

`:o ~/.config/helix/themes/dracula_transparant.toml`

``` toml
# ~/.config/helix/themes/dracula_transparant.toml
inherits = "dracula"
"ui.background" = { fg = "foreground" }
"ui.menu" = { fg = "white" }
"ui.popup" = { fg = "white" }
"ui.window" = { fg = "white" }
"ui.help" = { fg = "light-gray" }

"ui.statusline" = { fg = "gray" }
"ui.statusline.inactive" = { fg = "black" }
```

`:config-edit`

``` toml
# ~/.config/helix/config.toml
theme="dracula_transparant"
```

!!! note

    This post is a <a href="/thoughts/" class="wikilink" data-title="Thoughts" data-description="These are generally my thoughts on a web page or some sort of url, except a rare few don&#39;t have a link. These are dual published off of my..." data-date="2024-04-01">thought</a>. It's a short note that I make
    about someone else's content online <a href="/tags/thoughts/" class="hashtag-tag" data-tag="thoughts" data-count=2 data-reading-time=3 data-reading-time-text="3 minutes">#thoughts</a>
