# 通过npm安装
npm install -S xterm-style
# 或者通过yarn安装
yarn add xterm-style
xterm-style 目前包含了下面这几套配置
common
: 常规风格
import { Terminal } from 'xterm'
import { common as xtermTheme } from 'xterm-style'
const term = new Terminal({
theme: xtermTheme
// ...
})