mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 12:18:45 -05:00
36 lines
869 B
TypeScript
36 lines
869 B
TypeScript
import '@fortawesome/fontawesome-free/css/all.css'
|
|
import 'vuetify/styles'
|
|
import {aliases, fa} from 'vuetify/iconsets/fa'
|
|
|
|
// Composables
|
|
import {createVuetify} from 'vuetify'
|
|
|
|
// https://vuetifyjs.com/en/introduction/why-vuetify/#feature-guides
|
|
export default createVuetify({
|
|
theme: {
|
|
defaultTheme: 'light',
|
|
themes: {
|
|
light: {
|
|
colors: {
|
|
background: '#f5efea',
|
|
tandoor: '#ddbf86',
|
|
primary: '#b98766',
|
|
secondary: '#b55e4f',
|
|
success: '#82aa8b',
|
|
info: '#385f84',
|
|
warning: '#eaaa21',
|
|
error: '#a7240e',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
icons: {
|
|
defaultSet: 'fa',
|
|
aliases,
|
|
sets: {
|
|
fa,
|
|
},
|
|
},
|
|
})
|
|
|