mirror of
https://github.com/docmost/docmost.git
synced 2025-11-16 03:51:12 +10:00
21 lines
304 B
TypeScript
21 lines
304 B
TypeScript
import { createTheme, MantineColorsTuple } from "@mantine/core";
|
|
|
|
const blue: MantineColorsTuple = [
|
|
"#e7f3ff",
|
|
"#d0e4ff",
|
|
"#a1c6fa",
|
|
"#6ea6f6",
|
|
"#458bf2",
|
|
"#2b7af1",
|
|
"#0b60d8", //
|
|
"#1b72f2",
|
|
"#0056c1",
|
|
"#004aac",
|
|
];
|
|
|
|
export const theme = createTheme({
|
|
colors: {
|
|
blue,
|
|
},
|
|
});
|