first commit
This commit is contained in:
39
frontend/tailwind.config.js
Normal file
39
frontend/tailwind.config.js
Normal file
@@ -0,0 +1,39 @@
|
||||
/** @type {import('tailwindcss').Config} */
|
||||
module.exports = {
|
||||
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 colors from brand.md
|
||||
primary: {
|
||||
yellow: '#FFD84D',
|
||||
dark: '#111111',
|
||||
white: '#FFFFFF',
|
||||
},
|
||||
secondary: {
|
||||
gray: '#F5F5F5',
|
||||
'light-gray': '#E5E5E5',
|
||||
blue: '#2F80ED',
|
||||
brown: '#6B4A2B',
|
||||
},
|
||||
},
|
||||
fontFamily: {
|
||||
sans: ['Inter', 'system-ui', 'sans-serif'],
|
||||
heading: ['Poppins', 'Inter', 'system-ui', 'sans-serif'],
|
||||
},
|
||||
borderRadius: {
|
||||
'btn': '12px',
|
||||
'card': '16px',
|
||||
},
|
||||
boxShadow: {
|
||||
'card': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
|
||||
'card-hover': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
Reference in New Issue
Block a user