You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
567 B
22 lines
567 B
import "@mdi/font/css/materialdesignicons.css";
|
|
import "vuetify/styles";
|
|
import { createVuetify } from "vuetify";
|
|
|
|
export default createVuetify({
|
|
theme: {
|
|
defaultTheme: "light",
|
|
themes: {
|
|
light: {
|
|
colors: {
|
|
background: "#ffffff", // ⬅️ 페이지 배경을 흰색으로
|
|
surface: "#ffffff", // 기본 표면도 흰색
|
|
card: "#f7f8fa", // 카드만 아주 연한 회색(원하면 #ffffff로)
|
|
border: "#e7e9ee",
|
|
text: "#2b2f33",
|
|
muted: "#6b7280",
|
|
},
|
|
},
|
|
},
|
|
},
|
|
});
|