This skill should be used when the user asks about "hyper opacity", "hyper blur", "hyper colors", "hyper theme", "hyper background", "hyper cursor", "hyper font", "hyper padding", or mentions visual customization of Hyper terminal.
View on GitHubplugins/hyper-dev/skills/hyper-visual/SKILL.md
February 2, 2026
Select agents to install to:
npx add-skill https://github.com/nthplusio/functional-claude/blob/main/plugins/hyper-dev/skills/hyper-visual/SKILL.md -a claude-code --skill hyper-visualInstallation paths:
.claude/skills/hyper-visual/# Hyper Visual Customization
Configure visual appearance: colors, opacity, cursor, and fonts.
## Background Opacity
Use rgba for transparent background:
```javascript
config: {
backgroundColor: 'rgba(0, 0, 0, 0.85)', // 85% opacity
}
```
Values: 0.0 (transparent) to 1.0 (opaque)
## Cursor Styling
```javascript
config: {
cursorColor: 'rgba(248,28,229,0.8)',
cursorShape: 'BLOCK', // BLOCK, BEAM, UNDERLINE
cursorBlink: true,
}
```
## Selection Color
```javascript
config: {
selectionColor: 'rgba(248,28,229,0.3)',
}
```
## Color Palette
```javascript
config: {
foregroundColor: '#fff',
backgroundColor: '#000',
borderColor: '#333',
colors: {
black: '#000000',
red: '#C51E14',
green: '#1DC121',
yellow: '#C7C329',
blue: '#0A2FC4',
magenta: '#C839C5',
cyan: '#20C5C6',
white: '#C7C7C7',
lightBlack: '#686868',
lightRed: '#FD6F6B',
lightGreen: '#67F86F',
lightYellow: '#FFFA72',
lightBlue: '#6A76FB',
lightMagenta: '#FD7CFC',
lightCyan: '#68FDFE',
lightWhite: '#FFFFFF',
},
}
```
## Font Configuration
```javascript
config: {
fontSize: 12,
fontFamily: '"Fira Code", Menlo, monospace',
fontWeight: 'normal',
fontWeightBold: 'bold',
lineHeight: 1.2,
letterSpacing: 0,
}
```
**Note:** Wrap font names with spaces in quotes.
## Window Padding
```javascript
config: {
padding: '12px 14px', // top/bottom, left/right
}
```
Or use CSS-style values:
```javascript
padding: '10px 15px 10px 15px', // top, right, bottom, left
```
## CSS Customization
Add custom CSS via the `css` property:
```javascript
config: {
css: `
.hyper_main {
border: none;
}
.tabs_nav {
background-color: #1a1a1a;
}
.tab_tab {
border: none;
}
`,
}
```
## Terminal CSS
Target terminal content specifically:
```javascript
config: {
termCSS: `
.terminal {
background-color: rgba(0, 0, 0, 0.9) !important;
}
.terminal-cursor {
background-colo