mirror of
https://github.com/HangarMC/Hangar.git
synced 2024-12-09 06:32:43 +08:00
51 lines
1.5 KiB
TypeScript
51 lines
1.5 KiB
TypeScript
import colors from 'vuetify/es5/util/colors';
|
|
import { VuetifyPreset } from 'vuetify';
|
|
import { Paper, Velocity, Waterfall } from '~/components/logos';
|
|
|
|
export default {
|
|
icons: {
|
|
iconfont: 'mdi',
|
|
values: {
|
|
paper: {
|
|
component: Paper,
|
|
},
|
|
waterfall: {
|
|
component: Waterfall,
|
|
},
|
|
velocity: {
|
|
component: Velocity,
|
|
},
|
|
},
|
|
},
|
|
theme: {
|
|
default: 'dark',
|
|
dark: true,
|
|
disable: false,
|
|
options: {
|
|
customProperties: true,
|
|
},
|
|
themes: {
|
|
dark: {
|
|
anchor: colors.blue.lighten3,
|
|
primary: colors.blue.darken2,
|
|
accent: colors.grey.darken3,
|
|
secondary: colors.amber.darken3,
|
|
info: colors.lightBlue.base,
|
|
warning: colors.orange.darken3,
|
|
error: colors.deepOrange.accent4,
|
|
success: colors.lightGreen.darken2,
|
|
},
|
|
light: {
|
|
anchor: colors.blue.lighten3,
|
|
primary: colors.blue.darken2,
|
|
accent: colors.grey.darken3,
|
|
secondary: colors.amber.darken3,
|
|
info: colors.teal.lighten1,
|
|
warning: colors.amber.base,
|
|
error: colors.deepOrange.accent4,
|
|
success: colors.green.accent3,
|
|
},
|
|
},
|
|
},
|
|
} as Partial<VuetifyPreset>;
|