pstream is dead; long live pstream
taciturnaxolotl.github.io/pstream-ng/
1import { allThemes } from "./all";
2import { customTheme } from "./custom";
3
4export { defaultTheme } from "./default";
5export { allThemes } from "./all";
6
7export const safeThemeList = [customTheme, ...allThemes]
8 .flatMap((v) => v.selectors)
9 .filter((v) => v.startsWith("."))
10 .map((v) => v.slice(1)); // remove dot from selector