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