Skip to content

Instantly share code, notes, and snippets.

@kitten
Last active May 30, 2018 21:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitten/f987b3ef35792d3eb0b08c05abc23334 to your computer and use it in GitHub Desktop.
Save kitten/f987b3ef35792d3eb0b08c05abc23334 to your computer and use it in GitHub Desktop.
hyper-nightowl colours/theme
module.exports = {
config: {
/* ... */
// font family with optional fallbacks
fontFamily: '"Dank Mono", "Fira Code", monospace',
fontWeight: 'normal',
fontWeightBold: 'normal',
fontSize: 14,
selectionColor: 'rgba(248, 28, 229, 0.3)',
// from VSCode Nightowl's editor bg/fg colours:
foregroundColor: '#d6deeb',
backgroundColor: '#011627',
cursorColor: '#7e57c2',
cursorAccentColor: '#ffffff',
// from VSCode Nightowl's terminal colours:
colors: {
black: '#011627',
red: '#ef5350',
green: '#22da6e',
yellow: '#addb67',
blue: '#82aaff',
magenta: '#c792ea',
cyan: '#21c7a8',
white: '#ffffff',
lightBlack: '#575656',
lightRed: '#ef5350',
lightGreen: '#22da6e',
lightYellow:'#ffeb95',
lightBlue:'#82aaff',
lightMagenta: '#c792ea',
lightCyan:'#7fdbca',
lightWhite: '#ffffff'
},
/* ... */
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment