feat: add tailwind.config.ts
This commit is contained in:
parent
074bb47cd5
commit
c9b4d939fd
|
|
@ -0,0 +1,31 @@
|
|||
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: {
|
||||
"french-blue": "#002395",
|
||||
"french-red": "#ED2939",
|
||||
"military-green": "#4A5C3F",
|
||||
"military-dark": "#1C2B1A",
|
||||
"gold": "#C9A84C",
|
||||
"cream": "#F5F0E8",
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ["var(--font-inter)", "system-ui", "sans-serif"],
|
||||
serif: ["var(--font-playfair)", "Georgia", "serif"],
|
||||
},
|
||||
backgroundImage: {
|
||||
"gradient-radial": "radial-gradient(var(--tw-gradient-stops))",
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
|
||||
export default config;
|
||||
Loading…
Reference in New Issue