You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: FAQ.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,7 @@
5
5
-[Does Textual support images?](#does-textual-support-images)
6
6
-[How can I fix ImportError cannot import name ComposeResult from textual.app ?](#how-can-i-fix-importerror-cannot-import-name-composeresult-from-textualapp-)
7
7
-[How can I select and copy text in a Textual app?](#how-can-i-select-and-copy-text-in-a-textual-app)
8
+
-[How can I set a translucent app background?](#how-can-i-set-a-translucent-app-background)
8
9
-[How do I center a widget in a screen?](#how-do-i-center-a-widget-in-a-screen)
9
10
-[How do I pass arguments to an app?](#how-do-i-pass-arguments-to-an-app)
10
11
-[Why do some key combinations never make it to my app?](#why-do-some-key-combinations-never-make-it-to-my-app)
@@ -42,6 +43,16 @@ may expect from the command line. The exact modifier key depends on the terminal
42
43
43
44
Refer to the documentation for your terminal emulator, if it is not listed above.
Some terminal emulators have a translucent background feature which allows the desktop underneath to be partially visible.
50
+
51
+
This feature is unlikely to work with Textual, as the translucency effect requires the use of ANSI background colors, which Textual doesn't use.
52
+
Textual uses 16.7 million colors where available which enables consistent colors across all platforms and additional effects which aren't possible with ANSI colors.
53
+
54
+
For more information on ANSI colors in Textual, see [Why no Ansi Themes?](#why-doesnt-textual-support-ansi-themes).
title: "How can I set a translucent app background?"
3
+
alt_titles:
4
+
- "Transparent background not working"
5
+
- "Translucent background not working"
6
+
- "Can't see desktop underneath terminal"
7
+
---
8
+
9
+
Some terminal emulators have a translucent background feature which allows the desktop underneath to be partially visible.
10
+
11
+
This feature is unlikely to work with Textual, as the translucency effect requires the use of ANSI background colors, which Textual doesn't use.
12
+
Textual uses 16.7 million colors where available which enables consistent colors across all platforms and additional effects which aren't possible with ANSI colors.
13
+
14
+
For more information on ANSI colors in Textual, see [Why no Ansi Themes?](#why-doesnt-textual-support-ansi-themes).
0 commit comments