hyperterm-github-dark
Version:
[Github Dark](https://github.com/primer/github-vscode-theme) for your terminal
38 lines (36 loc) • 836 B
JavaScript
"use strict";
const foregroundColor = "#e1e4e8";
const backgroundColor = "#1f2428";
const red = "#ea4a5a";
const green = "#85e89d";
const yellow = "#ffea7f";
const blue = "#79b8ff";
const magenta = "#ec6cb9";
const cyan = "#9aedfe";
exports.decorateConfig = (config) =>
Object.assign({}, config, {
backgroundColor,
foregroundColor,
borderColor: "#2f363d",
cursorColor: "#97979b",
cursorAccentColor: backgroundColor,
selectionColor: "#3392FF44",
colors: {
black: "#2f363d",
red,
green,
yellow,
blue,
magenta,
cyan,
white: "#fafbfc",
lightBlack: "#586069",
lightRed: red,
lightGreen: green,
lightYellow: yellow,
lightBlue: blue,
lightMagenta: magenta,
lightCyan: cyan,
lightWhite: foregroundColor,
},
});