Skip to content

Commit

Permalink
refactor: remove const collor
Browse files Browse the repository at this point in the history
  • Loading branch information
emiliosheinz committed May 20, 2024
1 parent 0270042 commit a254d59
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/server/auth/EmailProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,12 @@ export function CustomEmailProvider() {
}

function html({ url }: { url: string }) {
const brandColor = "#333333";
const color = {
background: "#FFFFFF",
text: "#333333",
mainBackground: "#FFFFFF",
buttonBackground: brandColor,
buttonBorder: brandColor,
buttonBackground: "#333333",
buttonBorder: "#333333",
buttonText: "#FFFFFF",
};

Expand Down

0 comments on commit a254d59

Please sign in to comment.