forked from zhangyonghao/minimap
29 lines
577 B
TypeScript
29 lines
577 B
TypeScript
import type { Config } from "tailwindcss";
|
|
|
|
const config: Config = {
|
|
content: [
|
|
"./app/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./components/**/*.{js,ts,jsx,tsx,mdx}",
|
|
"./lib/**/*.{js,ts,jsx,tsx,mdx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
ink: "#111827",
|
|
mist: "#eff6ff",
|
|
brand: "#2563eb",
|
|
accent: "#0f766e",
|
|
},
|
|
boxShadow: {
|
|
panel: "0 20px 45px rgba(15, 23, 42, 0.08)",
|
|
},
|
|
fontFamily: {
|
|
sans: ["Manrope", "Segoe UI", "sans-serif"],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|