A small web app for watching movies and shows easily
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
|