summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Davenport <qball@blame.services>2021-08-23 22:36:24 +0200
committerDave Davenport <qball@blame.services>2021-08-23 22:36:24 +0200
commit45561359de6618ec907b6750f042bc8bcb4ebfe2 (patch)
tree4dcbce42802a51afab9d0ba18b2ef5bbe9d7fb2d
parent9015e5cac6b5297cd66b65345f8de1d1afc2dd7e (diff)
[Doc] Small updates to make transparency doc more inline current rofi.
-rw-r--r--doc/Notes/Theme/Transparency/theme3-transparency.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/Notes/Theme/Transparency/theme3-transparency.markdown b/doc/Notes/Theme/Transparency/theme3-transparency.markdown
index 9a7db9af..9c12abf1 100644
--- a/doc/Notes/Theme/Transparency/theme3-transparency.markdown
+++ b/doc/Notes/Theme/Transparency/theme3-transparency.markdown
@@ -9,7 +9,7 @@ Remember the general widget structure:
![structure](structure.svg)
-This means if you set every widget to be 30% transparent on a black background: it will look like:
+This means if you set every widget to be 30% transparent on a white background: it will look like:
![images](rofi-transp.png)
@@ -31,7 +31,7 @@ Specify fully transparent background on the highest level.
```css
* {
- background: rgba(0,0,0,0);
+ background: transparent;
}
```
@@ -70,7 +70,7 @@ background is white.)
This tries to emulate a transparent window by taking a screenshot of the window
before showing and then drawing everything on top of this. While this is not an
-idea solution (it won't update if something changes in the background) it is
+ideal solution (it won't update if something changes in the background) it is
often a very usable facsimile.
![rofi fake](rofi-fake.png)