import { createTheme, type MantineColorsTuple } from "@mantine/core"; // Acento de marca de unibus — un violeta-índigo moderno. const brand: MantineColorsTuple = [ "#f1edff", "#dcd3ff", "#b5a3f5", "#8d70ed", "#6c47e6", "#5a2fe2", "#5023e0", "#4119c7", "#3915b3", "#2f0f9e", ]; export const theme = createTheme({ primaryColor: "brand", colors: { brand }, fontFamily: "Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif", defaultRadius: "md", headings: { fontWeight: "650" }, });