mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-09-07 21:15:41 +00:00
37 lines
860 B
TypeScript
37 lines
860 B
TypeScript
import type { DesignConfig } from "@tria-plc/iamui";
|
|
|
|
export const iamConfig: DesignConfig = {
|
|
brand: {
|
|
appName: "EDR Freight Backoffice",
|
|
logoUrl: "/assets/logo.svg",
|
|
},
|
|
colors: {
|
|
primary: "#1d7754",
|
|
primaryForeground: "#ffffff",
|
|
secondary: "#ebb53d",
|
|
background: "#f6f8f4",
|
|
foreground: "#12261c",
|
|
border: "#d7e1da",
|
|
muted: "#eaf1ec",
|
|
mutedForeground: "#557164",
|
|
card: "#ffffff",
|
|
danger: "#c93d2b",
|
|
},
|
|
typography: {
|
|
fontFamily: "Inter, ui-sans-serif, system-ui, sans-serif",
|
|
headingFontFamily: "Inter, ui-sans-serif, system-ui, sans-serif",
|
|
},
|
|
shape: {
|
|
radius: "0.875rem",
|
|
},
|
|
layout: {
|
|
userManagementView: "classic",
|
|
showTopBar: true,
|
|
sidebarBrandLabel: "User Management",
|
|
sidebarBrandSublabel: "EDR Freight",
|
|
},
|
|
appearance: {
|
|
colorScheme: "light",
|
|
},
|
|
};
|