hyperterm-material-palenight
Version:
Hyper theme based on Material Palenight theme
34 lines (31 loc) • 851 B
JavaScript
const backgroundColor = '#292D3E';
const foregroundColor = '#959DCB';
const cursorColor = foregroundColor;
const borderColor = backgroundColor;
const colors = {
black: '#676E95',
red: '#ff5572', // red
green: '#a9c77d', // green
yellow: '#FFCB6B', // yellow
blue: '#82AAFF', // blue
magenta: '#C792EA', // pink
cyan: '#89DDFF', // cyan
white: '#ffffff', // light gray
lightBlack: '#676E95', // medium gray
lightRed: '#ff5572', // red
lightGreen: '#a9c77d', // green
lightYellow: '#FFCB6B', // yellow
lightBlue: '#82AAFF', // blue
lightMagenta: '#C792EA', // pink
lightCyan: '#89DDFF', // cyan
colorCubes: '#ffffff', // white
grayscale: foregroundColor,
};
exports.decorateConfig = config =>
Object.assign({}, config, {
foregroundColor,
backgroundColor,
borderColor,
cursorColor,
colors,
});