Add initial setup files for Tailwind CSS and PostCSS, including global styles and TypeScript configuration

This commit is contained in:
Poyraz Avsever
2026-04-27 23:37:00 +03:00
parent 2d217985a2
commit cd382f60ba
5 changed files with 151 additions and 105 deletions
+23
View File
@@ -0,0 +1,23 @@
import type { Config } from "tailwindcss";
const config: Config = {
content: ["./app/**/*.{js,ts,jsx,tsx,mdx}"],
theme: {
extend: {
colors: {
ink: "#17211f",
mist: "#f5f7f4",
leaf: "#2f7d63",
coral: "#d8644a",
sun: "#e3aa38",
sky: "#4f7fbf",
},
boxShadow: {
soft: "0 18px 50px rgba(23, 33, 31, 0.08)",
},
},
},
plugins: [],
};
export default config;