Initial commit
This commit is contained in:
33
tailwind.config.ts
Normal file
33
tailwind.config.ts
Normal file
@@ -0,0 +1,33 @@
|
||||
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: {
|
||||
brand: {
|
||||
blue: "#1E3A5F",
|
||||
"blue-mid": "#2D5282",
|
||||
"blue-light": "#EBF4FF",
|
||||
orange: "#F97316",
|
||||
gold: "#F59E0B",
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ["var(--font-inter)", "sans-serif"],
|
||||
display: ["var(--font-montserrat)", "sans-serif"],
|
||||
},
|
||||
backgroundImage: {
|
||||
"hero-gradient":
|
||||
"linear-gradient(to bottom right, rgba(30,58,95,0.88), rgba(30,58,95,0.45))",
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user