25 lines
537 B
TypeScript
25 lines
537 B
TypeScript
import 'vuetify/styles';
|
|
import { createVuetify } from 'vuetify';
|
|
import { md3 } from 'vuetify/blueprints';
|
|
|
|
export default createVuetify({
|
|
theme: {
|
|
defaultTheme: 'light',
|
|
themes: {
|
|
light: {
|
|
dark: false,
|
|
colors: {
|
|
primary: '#C0392B',
|
|
background: '#F7F7F5',
|
|
surface: '#FFFFFF',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
defaults: {
|
|
global: {
|
|
rounded: false,
|
|
},
|
|
},
|
|
});
|