mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 10:46:00 +00:00
12 lines
287 B
JavaScript
12 lines
287 B
JavaScript
import * as light from './ThemeLight.svelte';
|
|
import * as dark from './ThemeDark.svelte';
|
|
|
|
export function buildThemes(plugins) {
|
|
const res = [light, dark];
|
|
for (const { content } of plugins) {
|
|
const { themes } = content;
|
|
if (themes) res.push(...themes);
|
|
}
|
|
return res;
|
|
}
|