Created
November 5, 2021 17:05
-
-
Save Martin-Pitt/6b4e67464c0ee4e682ac754298e07d77 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
config: { | |
fontSize: 16, | |
fontFamily: '"Fira Code", Menlo, "DejaVu Sans Mono", Consolas, "Lucida Console", monospace', | |
cursorColor: 'hsla(215, 100%, 90%, 1)', | |
cursorShape: 'BEAM', | |
foregroundColor: 'white', | |
backgroundColor: 'hsla(0, 0%, 0%, 0)', | |
borderColor: 'hsl(215, 20%, 20%)', | |
css: ` | |
.hyper_main { | |
display: grid; | |
grid-template-areas: | |
"header terms" | |
"footer footer"; | |
grid-template-columns: 1fr 2fr; | |
grid-template-rows: 1fr; | |
} | |
.header_header, | |
.terms_terms, | |
.footer_footer { | |
position: relative; | |
} | |
.header_header { | |
grid-area: header; | |
background: hsla(0, 0%, 0%, 0.3); | |
} | |
.terms_terms { | |
grid-area: terms; | |
margin: 0 !important; | |
} | |
.footer_footer { | |
grid-area: footer; | |
position: static !important; | |
} | |
.tabs_nav { | |
height: auto; | |
} | |
.tabs_list { | |
flex-flow: column; | |
} | |
.tab_tab { | |
background: transparent; | |
color: hsla(0, 0%, 100%, 0.6) !important; | |
cursor: pointer; | |
} | |
.tab_tab.tab_active { | |
color: white !important; | |
cursor: default; | |
} | |
.tab_textInner { | |
text-align: left; | |
} | |
`, | |
termCSS: ``, | |
showHamburgerMenu: '', | |
showWindowControls: '', | |
padding: '5px 100px', | |
colors: { | |
black: '#000000', | |
red: '#ff0000', | |
green: '#33ff00', | |
yellow: '#ffff00', | |
blue: '#0066ff', | |
magenta: '#cc00ff', | |
cyan: '#00ffff', | |
white: '#d0d0d0', | |
lightBlack: '#808080', | |
lightRed: '#ff0000', | |
lightGreen: '#33ff00', | |
lightYellow: '#ffff00', | |
lightBlue: '#0066ff', | |
lightMagenta: '#cc00ff', | |
lightCyan: '#00ffff', | |
lightWhite: '#ffffff' | |
}, | |
shell: '', | |
shellArgs: ['--login'], | |
env: {}, | |
bell: 'SOUND', | |
copyOnSelect: false, | |
summon: { | |
hotkey: 'Option+/' | |
}, | |
hyperTransparentVibrancy: { | |
alpha: 0.3, // default 50% | |
vibrancy: 'ultra-dark' | |
}, | |
hyperTabs: { | |
activityColor: 'hsl(20, 100%, 50%)', | |
closeAlign: 'right', | |
}, | |
}, | |
plugins: [ | |
'hyperterm-summon', | |
'hyper-transparent-vibrancy', | |
'hyper-statusline', | |
'hyper-tabs-enhanced', | |
], | |
localPlugins: [] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment