22 lines
454 B
JavaScript
22 lines
454 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
primary: {
|
||
|
|
DEFAULT: "#548360",
|
||
|
|
dark: "#456E50",
|
||
|
|
light: "#6A9A75",
|
||
|
|
},
|
||
|
|
secondary: "#F5F5F5",
|
||
|
|
accent: "#FFD700",
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
sans: ["Pretendard", "Inter", "sans-serif"],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|