Mantine colors generator
0#eef3ff
1#dce4f5
2#b9c7e2
3#94a8d0
4#748dc1
5#5f7cb8
6#5474b4
7#44639f
8#39588f
9#2d4b81
Variants preview
Filled | Light | Outline | Subtle |
---|---|---|---|
Colors array
[
"#eef3ff",
"#dce4f5",
"#b9c7e2",
"#94a8d0",
"#748dc1",
"#5f7cb8",
"#5474b4",
"#44639f",
"#39588f",
"#2d4b81"
]
Usage with MantineProvider
import { MantineProvider, createTheme, MantineColorsTuple } from '@mantine/core';
const myColor: MantineColorsTuple = [
'#eef3ff',
'#dce4f5',
'#b9c7e2',
'#94a8d0',
'#748dc1',
'#5f7cb8',
'#5474b4',
'#44639f',
'#39588f',
'#2d4b81'
];
const theme = createTheme({
colors: {
myColor,
}
});
function Demo() {
return (
<MantineProvider theme={theme}>
<App />
</MantineProvider>
);
}
Welcome to Mantine, React components library that you always wished for
Build fully functional accessible web applications faster than ever