Skip to content
Snippets Groups Projects
Select Git revision
10 results Searching

Theme.js

Blame
  • 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;