Files
ox_lib/web/src/theme/index.ts

17 lines
323 B
TypeScript
Raw Normal View History

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)' },
components: {
Button: {
styles: {
root: {
border: 'none',
},
},
},
},
2022-08-27 15:58:36 +02:00
};