2023-01-02 14:02:07 +01:00
|
|
|
import { MantineThemeOverride } from '@mantine/core';
|
2022-03-13 22:30:57 +01:00
|
|
|
|
2023-01-02 14:02:07 +01:00
|
|
|
export const theme: MantineThemeOverride = {
|
|
|
|
|
colorScheme: 'dark',
|
|
|
|
|
fontFamily: 'Roboto',
|
|
|
|
|
shadows: { sm: '1px 1px 3px rgba(0, 0, 0, 0.5)' },
|
2023-01-08 10:56:49 +01:00
|
|
|
components: {
|
|
|
|
|
Button: {
|
|
|
|
|
styles: {
|
|
|
|
|
root: {
|
|
|
|
|
border: 'none',
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2022-08-27 15:58:36 +02:00
|
|
|
};
|