Created
April 18, 2018 03:26
-
-
Save alxtz/a103d33851cb97c501a65b567feb6cb9 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: 'OperatorMono Nerd Font', | |
fontWeight: 'bold', | |
cursorShape: 'BLOCK', | |
cursorBlink: false, | |
// color of the text | |
foregroundColor: '#c4c8c6', | |
// terminal background color | |
backgroundColor: '#1d1f21', | |
// border color (window, tabs) | |
borderColor: '#333', | |
// custom css to embed in the main window | |
css: ` | |
.tab_active { | |
text-shadow: 0 0 5px orange; | |
box-shadow: 0 0 10px white inset; | |
font-weight: 600; | |
} | |
`, | |
// custom css to embed in the terminal window | |
termCSS: ` | |
x-row { | |
line-height: normal; | |
font-weight: 900; | |
-webkit-font-smoothing: antialiased; | |
} | |
.tab_active { | |
text-shadow: 0 0 5px cyan; | |
box-shadow: 0 0 5px cyan; | |
font-weight: 900; | |
} | |
`, | |
showHamburgerMenu: '', | |
showWindowControls: '', | |
padding: '0px 14px', | |
colors: { | |
black: '#383d43', | |
red: '#c66363', | |
green: '#c0c86d', | |
yellow: '#eac171', | |
blue: '#80a2be', | |
magenta: '#b193ba', | |
cyan: '#90c9c1', | |
white: '#c2c5c3', | |
lightBlack: '#808080', | |
lightRed: '#ff0000', | |
lightGreen: '#33ff00', | |
lightYellow: '#ffff00', | |
lightBlue: '#0066ff', | |
lightMagenta: '#cc00ff', | |
lightCyan: '#ffae1e', | |
lightWhite: '#ffffff' | |
}, | |
shell: '', | |
shellArgs: ['--login'], | |
env: {}, | |
bell: false, | |
copyOnSelect: false | |
}, | |
plugins: [ | |
'hyper-hybrid-theme', | |
'hyper-hide-title', | |
'gitrocket', | |
], | |
localPlugins: [] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment