mirror of
https://github.com/sussy-code/smov.git
synced 2024-12-20 14:37:43 +01:00
9 lines
263 B
TypeScript
9 lines
263 B
TypeScript
import { allThemes } from "./all";
|
|
|
|
export { defaultTheme } from "./default";
|
|
export { allThemes } from "./all";
|
|
|
|
export const safeThemeList = allThemes
|
|
.flatMap(v=>v.selectors)
|
|
.filter(v=>v.startsWith("."))
|
|
.map(v=>v.slice(1)); // remove dot from selector
|