기본 컴포넌트 추가

This commit is contained in:
static
2024-12-26 00:32:33 +09:00
parent e6f345bd3b
commit 8771b324a1
9 changed files with 141 additions and 1 deletions

View File

@@ -4,7 +4,53 @@ export default {
content: ["./src/**/*.{html,js,svelte,ts}"],
theme: {
extend: {},
extend: {
colors: {
primary: {
"000": "#FFF5F5",
100: "#FFE3E3",
200: "#FFC9C9",
300: "#FFA8A8",
400: "#FF8787",
500: "#FF6B6B",
600: "#FA5252",
700: "#F03E3E",
800: "#E03131",
900: "#C92A2A",
},
gray: {
"000": "#F8F9FA",
100: "#F1F3F5",
200: "#E9ECEF",
300: "#DEE2E6",
400: "#CED4DA",
500: "#ADB5BD",
600: "#868E96",
700: "#495057",
800: "#343A40",
900: "#212529",
},
},
fontFamily: {
sans: [
'"Pretendard Variable"',
"Pretendard",
"-apple-system",
"BlinkMacSystemFont",
"system-ui",
"Roboto",
'"Helvetica Neue"',
'"Segoe UI"',
'"Apple SD Gothic Neo"',
'"Noto Sans KR"',
'"Malgun Gothic"',
'"Apple Color Emoji"',
'"Segoe UI Emoji"',
'"Segoe UI Symbol"',
"sans-serif",
],
},
},
},
plugins: [],