25 lines
463 B
TypeScript
25 lines
463 B
TypeScript
import { AppTheme } from "./types";
|
|
|
|
export const DarkTheme: AppTheme = {
|
|
dark: true,
|
|
colors: {
|
|
primary: "#008761",
|
|
background: "#252A34",
|
|
card: "#1C1E21",
|
|
text: "#F3F5F8",
|
|
border: "#4A4F57",
|
|
notification: "#F4C5C3",
|
|
|
|
secondaryBackground: "#1C1E21",
|
|
accent: "#F3F5F8",
|
|
success: "#B8F1E3",
|
|
warning: "#FDE9E7",
|
|
info: "#D7E6FD",
|
|
muted: "#B9BDC5",
|
|
},
|
|
fonts: {
|
|
regular: "System",
|
|
bold: "System",
|
|
},
|
|
};
|