mirror of
https://github.com/p-stream/p-stream.git
synced 2026-04-19 20:12:05 +00:00
10 lines
333 B
TypeScript
10 lines
333 B
TypeScript
import { allThemes } from "./all";
|
|
import { customTheme } from "./custom";
|
|
|
|
export { defaultTheme } from "./default";
|
|
export { allThemes } from "./all";
|
|
|
|
export const safeThemeList = [customTheme, ...allThemes]
|
|
.flatMap((v) => v.selectors)
|
|
.filter((v) => v.startsWith("."))
|
|
.map((v) => v.slice(1)); // remove dot from selector
|