Last active
May 30, 2018 21:15
-
-
Save kitten/f987b3ef35792d3eb0b08c05abc23334 to your computer and use it in GitHub Desktop.
hyper-nightowl colours/theme
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: { | |
/* ... */ | |
// 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