vuetify.js 617 Bytes
import Vue from "vue";
import Vuetify from "vuetify/lib";
import ko from "vuetify/es5/locale/ko";

Vue.use(Vuetify);

export default new Vuetify({
  theme: {
    options: {
      customProperties: true
    },
    themes: {
      light: {
        primary: "#7DC1E8",
        secondary: "#EBC478",
        accent: "#82B1FF",
        error: "#FF5252",
        info: "#2196F3",
        success: "#4CAF50",
        warning: "#FFC107",
        grey300: "#eceeef",
        grey500: "#aaaaaa",
        grey700: "#5a5a5a",
        grey900: "#212529"
      }
    }
  },
  lang: {
    locales: { ko },
    current: "ko"
  }
});