mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 16:53:25 +00:00
10 lines
275 B
TypeScript
10 lines
275 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
|