8 lines
255 B
JavaScript
8 lines
255 B
JavaScript
![]() |
import { themes } from '../_static/themes'
|
||
|
import { DEFAULT_THEME } from './themeEngine'
|
||
|
|
||
|
export function isDarkTheme (themeName) {
|
||
|
const theme = themes.find(_ => _.name === themeName) || themes.find(_ => _.name === DEFAULT_THEME)
|
||
|
return theme.dark
|
||
|
}
|