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