mirror of
https://github.com/HangarMC/Hangar.git
synced 2025-02-05 14:40:33 +08:00
16 lines
494 B
TypeScript
16 lines
494 B
TypeScript
import colors from 'vuetify/es5/util/colors';
|
|
import { VuetifyThemeVariant } from 'vuetify/types/services/theme';
|
|
|
|
export default {
|
|
anchor: colors.blue.lighten3,
|
|
primary: colors.lightBlue.darken1,
|
|
background: '#111827',
|
|
box: '#212121',
|
|
accent: '#272727',
|
|
secondary: colors.amber.darken3,
|
|
info: colors.lightBlue.base,
|
|
warning: colors.orange.darken3,
|
|
error: colors.deepOrange.accent4,
|
|
success: colors.lightGreen.darken2,
|
|
} as Partial<VuetifyThemeVariant>;
|