UNPKG

generator-upendodnn

Version:

Scaffolds DNN extensions, including Modules (Webforms, SPA, and MVC), Persona Bar, Skin Object, Library, Scheduler, and Hotcakes Commerce projects (based on the generator built by Matt Rutledge).

29 lines (27 loc) 757 B
import 'vuetify/styles'; import { createVuetify } from 'vuetify'; import * as components from 'vuetify/components'; import * as directives from 'vuetify/directives'; import colors from 'vuetify/lib/util/colors'; const vuetify = createVuetify({ components, directives, theme: { themes: { light: { dark: false, colors: { primary: colors.blue.darken3, secondary: colors.red.lighten4, // #FFCDD2 }, variables: { fontFamily: "'Open Sans', sans-serif", }, }, }, }, icons: { iconfont: 'mdi', }, }); export default vuetify;