Skip to content

Commit

Permalink
[ type ] : theme type μ„ μ–Έ
Browse files Browse the repository at this point in the history
  • Loading branch information
Chanwoo-Jeong committed Jun 6, 2023
1 parent 2283aed commit 66be060
Showing 1 changed file with 16 additions and 13 deletions.
29 changes: 16 additions & 13 deletions Week7-0527/CardsGameTS/src/assets/theme.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
export const lightTheme = {
bgColor: "rgb(252, 233, 233)",
headerColor: "#f8f8f8",
textColor: "black",
};

interface ThemeProps {
bgColor: string;
headerColor: string;
textColor: string;
}

export const darkTheme = {
bgColor: "#7b9095",
headerColor: "#722f37",
textColor: "white",
};


export const lightTheme: ThemeProps = {
bgColor: "rgb(252, 233, 233)",
headerColor: "#f8f8f8",
textColor: "black",
};

export const darkTheme: ThemeProps = {
bgColor: "#7b9095",
headerColor: "#722f37",
textColor: "white",
};

0 comments on commit 66be060

Please sign in to comment.