vsCode property

TermareStyle vsCode
getter/setter pair

从 vs code 中抓取的颜色

Implementation

static TermareStyle vsCode = TermareStyle(
  fontSize: 11,
  defaultFontColor: const Color(0xffcccccc),
  backgroundColor: const Color(0xff1e1e1e),
  black: const Color(0xff000000),
  lightBlack: const Color(0xff666666),
  red: const Color(0xffcd3131),
  lightRed: const Color(0xfff14c4c),
  green: const Color(0xff0dbc79),
  lightGreen: const Color(0xff23d18b),
  yellow: const Color(0xffe5e510),
  lightYellow: const Color(0xfff5f543),
  blue: const Color(0xff2472c8),
  lightBlue: const Color(0xff3b8eea),
  purplishRed: const Color(0xffbc3fbc),
  lightPurplishRed: const Color(0xffd670d6),
  cyan: const Color(0xff11a8cd),
  lightCyan: const Color(0xff29b8db),
  white: const Color(0xffe5e5e5),
  lightWhite: const Color(0xffe5e5e5),
  cursorColor: const Color(0xffcccccc),
);