Update project 4 frontend start
This commit is contained in:
25
frontend-client/tailwind.config.ts
Normal file
25
frontend-client/tailwind.config.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import type { Config } from "tailwindcss";
|
||||
|
||||
const config: Config = {
|
||||
content: [
|
||||
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
surface: "#1C1C1E",
|
||||
accent: "#E32636",
|
||||
"accent-hover": "#C41E2A",
|
||||
muted: "#8E8E93",
|
||||
border: "#2C2C2E",
|
||||
},
|
||||
borderRadius: {
|
||||
card: "16px",
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
export default config;
|
||||
Reference in New Issue
Block a user