-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
34 lines (32 loc) · 828 Bytes
/
constants.ts
File metadata and controls
34 lines (32 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
export const NAV_THEME = {
light: {
background: "#FFFFFF", // background
border: "#E5E7EB", // border
card: "#FFFFFF", // card
notification: "#EF4444", // destructive
primary: "#7C3AED", // primary
text: "#030712", // foreground
secondary: "#f3f4f6",
success: "#5fd65d",
},
dark: {
background: "#030712", // background
border: "#1F2937", // border
card: "#030712", // card
notification: "#7F1D1D", // destructive
primary: "#6D28D9", // primary
text: "#F9FAFB", // foreground
secondary: "#1f2937",
success: "#207b1f",
},
};
export const NavTheme = {
["light"]: { dark: false, colors: NAV_THEME.light },
["dark"]: { dark: true, colors: NAV_THEME.dark },
};
export enum Action {
Send = "SEND",
Receive = "RECEIVE",
Buy = "BUY",
Sell = "SELL",
}