mirror of
https://github.com/ckaczor/HomeMonitor.git
synced 2026-03-11 03:51:38 -04:00
21 lines
365 B
TypeScript
21 lines
365 B
TypeScript
import '@mdi/font/css/materialdesignicons.css';
|
|
import 'vuetify/styles';
|
|
|
|
import { ThemeDefinition, createVuetify } from 'vuetify';
|
|
|
|
const theme: ThemeDefinition = {
|
|
dark: false,
|
|
colors: {
|
|
primary: '#602f6b'
|
|
}
|
|
};
|
|
|
|
export default createVuetify({
|
|
theme: {
|
|
defaultTheme: 'theme',
|
|
themes: {
|
|
theme
|
|
}
|
|
}
|
|
});
|