setup of IB

This commit is contained in:
2025-06-25 15:21:16 +05:30
commit 0420c72aa7
38 changed files with 9493 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
"use client";
import { MantineColorsTuple, createTheme } from "@mantine/core";
const KccbColors: MantineColorsTuple = [
"#e3f2fd", "#bbdefb", "#90caf9", "#64b5f6", "#42a5f5",
"#2196f3", "#1e88e5", "#1976d2", "#1565c0", "#0d47a1"
];
export const KccbTheme = createTheme({
/* Put your mantine theme override here */
primaryColor: 'kccb-colors',
colors: {
'kccb-colors': KccbColors
}
// primaryColor: 'kccb-colors'
});