first commit
This commit is contained in:
28
frontend/tailwind.config.ts
Normal file
28
frontend/tailwind.config.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user