Pinafore-Web-Client-Frontend/src/routes/_utils/isDarkTheme.js

8 lines
261 B
JavaScript

import { themes } from '../_static/themes.js'
import { DEFAULT_THEME } from './themeEngine.js'
export function isDarkTheme (themeName) {
const theme = themes.find(_ => _.name === themeName) || themes.find(_ => _.name === DEFAULT_THEME)
return theme.dark
}