2024-03-09 13:15:13 +02:00
|
|
|
import { themeStyle } from '../components/global-style';
|
2023-01-10 14:08:13 +02:00
|
|
|
|
|
|
|
export default (themeId: number) => {
|
|
|
|
const theme = themeStyle(themeId);
|
|
|
|
return {
|
|
|
|
root: {
|
|
|
|
flex: 1,
|
|
|
|
backgroundColor: theme.backgroundColor,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
};
|