hyperterm-horizon
Version:
Unofficial Port of the VSCode theme to Hyper
51 lines (48 loc) • 1.04 kB
JavaScript
const normal = {
tabColor: '#E9436D',
backgroundColor: '#1C1E26',
foregroundColor: '#D5D8DA',
borderColor: '#232530',
cursorColor: 'rgba(46, 48, 62, 0.9)',
selectionColor: 'rgba(46, 48, 62, 0.9)',
lightBlue: '#26BBD9',
lightCyan: '#59E1E3',
lightGreen: '#29D398',
lightMagenta: '#EE64AC',
lightRed: '#E95678',
lightYellow: '#FAB795',
black: '#06060C',
blue: '#3FC4DE',
cyan: '#6BE4E6',
green: '#3FDAA4',
magenta: '#F075B5',
red: '#EC6A88',
yellow: '#FBC3A7',
white: '#D5D8DA',
}
const bright = {
tabColor: '#E73665',
backgroundColor: '#FDF0ED',
foregroundColor: '#06060C',
borderColor: '#FADAD1',
cursorColor: 'rgba(249, 203, 190, 0.8)',
selectionColor: 'rgba(249, 203, 190, 0.5)',
lightBlue: '#26BBD9',
lightCyan: '#59E1E3',
lightGreen: '#29D398',
lightMagenta: '#EE64AC',
lightRed: '#E95678',
lightYellow: '#FAB795',
black: '#06060C',
blue: '#3FC4DE',
cyan: '#6BE4E6',
green: '#3FDAA4',
magenta: '#F075B5',
red: '#EC6A88',
yellow: '#FBC3A7',
white: '#D5D8DA'
}
module.exports = {
normal,
bright
}