Skip to content
Snippets Groups Projects
Select Git revision
  • 280fcadf6e5171ca34f5db8f5ebe059635b408b4
  • master default protected
  • 69-resize-image-before-upload
  • 60-add-match-salamander-modal-to-edit-salamander
  • 50-fix-server-error-message
  • 48-fix-gradle
  • 31-camera-communicate-with-api-and-delete-from-cache-2
  • 20-changing-verification-step-in-profile-to-modal
  • 4-add-all-basic-views
  • 1-setup
10 results

Theme.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Theme.js 406 B
    import React from "react";
    import { DefaultTheme } from "react-native-paper";
    
    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;