Select Git revision
AndroidManifest.xml
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Theme.js 526 B
import { DefaultTheme } from "react-native-paper";
/**
* Defines the overall theme of the application. See https://callstack.github.io/react-native-paper/theming.html for more documentation.
*/
const theme = {
...DefaultTheme,
roundness: 2,
colors: {
...DefaultTheme.colors,
primary: "orange",
accent: "blue",
background: "white",
text: "black",
disabled: "#e2910f",
/*
surface: "white",
placeholder: "lightgrey",
backdrop: "yellow"
*/
},
};
export default theme;