mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 12:49:02 -05:00
basic app sceleton
This commit is contained in:
25
vue3/src/vuetify.ts
Normal file
25
vue3/src/vuetify.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import '@mdi/font/css/materialdesignicons.css'
|
||||
import 'vuetify/styles'
|
||||
|
||||
// Composables
|
||||
import { createVuetify } from 'vuetify'
|
||||
|
||||
// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
|
||||
export default createVuetify({
|
||||
theme: {
|
||||
defaultTheme: 'light',
|
||||
themes: {
|
||||
light: {
|
||||
colors: {
|
||||
primary: '#b98766',
|
||||
secondary: '#b55e4f',
|
||||
success: '#82aa8b',
|
||||
info: '#385f84',
|
||||
warning: '#eaaa21',
|
||||
error: '#a7240e',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user