๐Ÿ“ฆ cescoferraro / rambo

๐Ÿ“„ theme.tsx ยท 17 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17import { COLOR } from "react-native-material-ui"

export const uiTheme = {
    palette: {
        primaryColor: COLOR.green500
    },
    container: {
        backgroundColor: "red",
        height: "100%"
    },
    toolbar: {
        container: {
            backgroundColor: COLOR.green500
        }
    }
}