Skip to content

Commit 2e64d88

Browse files
author
Matt Parrish
committed
fix(Opacity): Remove opacity support in favor of other plugins providing that
Fixes #1
1 parent 99264b0 commit 2e64d88

File tree

2 files changed

+2
-17
lines changed

2 files changed

+2
-17
lines changed

README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,7 @@ Installing the hyper-night-owl theme for your Hyper terminal couldn't be easier.
4141

4242
## ⚙️ Configure
4343

44-
By default, hyper-night-owl aims to deliver a beautiful experience out of the box. However, you can override the transparency of the background.
45-
46-
1. Open `~/.hyper.js` in your favorite editor.
47-
2. Add a `nightOwl` object to the `config` object and specify `transparentBackground`.
48-
49-
###### Example
50-
51-
```javascript
52-
nightOwl: {
53-
transparentBackground: true, // default value is false
54-
}
55-
```
44+
By default, hyper-night-owl aims to deliver a beautiful experience out of the box. By default, it does not supply a transparent background, however, if you'd like to have this, I recommend installing and configuring the [hyper-opacity](https://hyper.is/plugins/hyper-opacity) plugin.
5645

5746
## ⚡️ Contribute
5847

index.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,7 @@ const overlap = "rgba(0, 0, 0, .15)";
22

33
exports.decorateConfig = config =>
44
Object.assign({}, config, {
5-
backgroundColor: `#011627${
6-
config.hasOwnProperty("nightOwl") && config.nightOwl.transparentBackground
7-
? "F5"
8-
: ""
9-
}`,
5+
backgroundColor: "#011627",
106
foregroundColor: "#d6deeb",
117
borderColor: overlap,
128
cursorColor: "#7e57c2",

0 commit comments

Comments
 (0)