19 lines
384 B
JavaScript
19 lines
384 B
JavaScript
|
|
/** @type {import('tailwindcss').Config} */
|
||
|
|
export default {
|
||
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
||
|
|
theme: {
|
||
|
|
extend: {
|
||
|
|
colors: {
|
||
|
|
bgBody: "#0f172a",
|
||
|
|
bgSidebar: "#1e293b",
|
||
|
|
bgCard: "#1e293b",
|
||
|
|
accent: "#3b82f6",
|
||
|
|
},
|
||
|
|
fontFamily: {
|
||
|
|
sans: ["Pretendard", "sans-serif"],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
},
|
||
|
|
plugins: [],
|
||
|
|
};
|