Skip to content

Commit

Permalink
💄 カラーの設定を変更
Browse files Browse the repository at this point in the history
  • Loading branch information
miyasan31 committed Oct 26, 2021
1 parent b21fdd3 commit aeb83cb
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/constants/Colors.ts
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
const tintColorLight = "#2f95dc";
const tintColorDark = "#fff";
const tintColorDark = "#2f95dc";

const iconColorLight = "#c1c8cd";
const iconColorDark = "#c1c8cd";

export const themes = {
light: {
text: "#000",
background: "#fff",
icon: iconColorLight,
tint: tintColorLight,
tabIconDefault: "#ccc",
tabIconDefault: "#eee",
tabIconSelected: tintColorLight,
},
dark: {
text: "#fff",
background: "#000",
background: "#1a232d",
icon: iconColorDark,
tint: tintColorDark,
tabIconDefault: "#ccc",
tabIconDefault: "#eee",
tabIconSelected: tintColorDark,
},
};

0 comments on commit aeb83cb

Please sign in to comment.