mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 15:06:02 +01:00
17 lines
323 B
TypeScript
17 lines
323 B
TypeScript
import { MantineThemeOverride } from '@mantine/core';
|
|
|
|
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',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|