Commit 274a8416 authored by Lorenzo Trujillo Rojas's avatar Lorenzo Trujillo Rojas
Browse files

Se modificó el tema de la aplicación

parent 990fde98
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -16,10 +16,10 @@ interface Theme {

export const LIGTHT_THEME: Theme = {
    color: {
        primary: "tomato",
        primary: "rgb(235, 73, 161)",
        secondary: "gray",
        terciary: "#f0f0f0",
        background: "#f0f0f0",
        background: "rgb(245, 225, 236)",
        white: "white",
        black: "black",
    },
+1 −1
Original line number Diff line number Diff line
@@ -48,7 +48,7 @@ export const AuthContextProvider = ({children}: AuthContextProviderProps) => {
        await SecureStore.deleteItemAsync("user");
        await SecureStore.deleteItemAsync("token");
        setUser(null);
        delete axios.defaults.headers.common["Authorization"];
        axios.defaults.headers.common["Authorization"] = null;
    }

    useEffect(() => {