mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
28 lines
969 B
Stylus
28 lines
969 B
Stylus
// Specify overrides (theme and/or base variables etc.)
|
|
// See https://vuetifyjs.com/quick-start
|
|
// And for themes customizing: https://vuetifyjs.com/style/theme
|
|
|
|
// Color Palette: https://vuetifyjs.com/style/colors
|
|
|
|
// Although, since version https://github.com/vuetifyjs/vuetify/releases/tag/v0.17.0, colors are no
|
|
// longer defined **explicitly** in the stylus files.
|
|
// you can use `import colors from 'vuetify/es5/util/colors'` in the vuetify instance, under `plugins`
|
|
// if you only want to define your color palette.
|
|
|
|
// you have to define the same palette colors just if you want to use them inside your own stylus files.
|
|
|
|
@require '~vuetify/src/stylus/settings/_colors'
|
|
|
|
$theme := {
|
|
primary: $red.darken-2
|
|
accent: $red.accent-2
|
|
secondary: $grey.lighten-1
|
|
info: $blue.lighten-1
|
|
warning: $amber.darken-2
|
|
error: $red.accent-4
|
|
success: $green.lighten-2
|
|
}
|
|
|
|
// Import Vuetify styling
|
|
@require '~vuetify/src/stylus/main'
|