setup of IB
This commit is contained in:
17
src/app/_themes/KccbTheme.ts
Normal file
17
src/app/_themes/KccbTheme.ts
Normal 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'
|
||||
});
|
||||
Reference in New Issue
Block a user