Files
jellyfin-web/src/themes/wmc/index.ts
T
2025-12-08 11:40:03 -05:00

16 lines
321 B
TypeScript

import { buildCustomColorScheme } from 'themes/utils';
/** The Windows Media Center inspired color scheme. */
const theme = buildCustomColorScheme({
palette: {
background: {
paper: '#0c2450'
},
AppBar: {
defaultBg: '#0c2450'
}
}
});
export default theme;