31 lines
566 B
TypeScript
31 lines
566 B
TypeScript
/**
|
|
* plugins/vuetify.ts
|
|
*
|
|
* Framework documentation: https://vuetifyjs.com`
|
|
*/
|
|
|
|
// Styles
|
|
import '@mdi/font/css/materialdesignicons.css'
|
|
import 'vuetify/styles'
|
|
|
|
// Composables
|
|
import {createVuetify, type ThemeDefinition} from 'vuetify'
|
|
|
|
const customDarkTheme: ThemeDefinition = {
|
|
dark: true,
|
|
colors: {
|
|
background: '#111217',
|
|
primary: '#0D6EFD'
|
|
}
|
|
}
|
|
|
|
// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
|
|
export default createVuetify({
|
|
theme: {
|
|
defaultTheme: 'customDarkTheme',
|
|
themes: {
|
|
customDarkTheme
|
|
}
|
|
}
|
|
})
|