-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.hyper.js
More file actions
29 lines (24 loc) · 916 Bytes
/
.hyper.js
File metadata and controls
29 lines (24 loc) · 916 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// My hyper-term plugins' settings.
module.exports = {
config: {
// ============ plugins configurations here ============
/** @hyper-material-theme */
MaterialTheme: {
// Set the theme variant,
// OPTIONS: 'Darker', 'Palenight', 'Ocean', ''
theme: 'Palenight',
// [Optional] Set the rgba() app background opacity, useful when enableVibrance is true
// OPTIONS: From 0.1 to 1
backgroundOpacity: '1',
// [Optional] Set the accent color for the current active tab
accentColor: '#64FFDA',
// [Optional] Mac Only. Need restart. Enable the vibrance and blurred background
// OPTIONS: 'dark', 'ultra-dark', 'bright'
// NOTE: The backgroundOpacity should be between 0.1 and 0.9 to see the effect.
vibrancy: 'dark'
},
/** @hyper-opacity */
opacity: 0.85,
// ============ plugins configurations here ============
}
}