-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
40 lines (39 loc) · 1.05 KB
/
tailwind.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// tailwind.config.js
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
// Adjust according to your project structure
'./src/**/*.{js,ts,jsx,tsx}',
'./app/**/*.{js,ts,jsx,tsx}', // Added to ensure Tailwind scans the app directory
],
theme: {
extend: {
colors: {
brown: {
400: '#A0522D', // Sienna
500: '#8B4513', // SaddleBrown
},
background: '#F5F5F5', // Define a background color if needed
black: '#1E1A20',
white: '#f0f4f8',
},
borderRadius: {
'lg': '12px', // Customize if needed
},
boxShadow: {
'lg': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)', // Tailwind's default large shadow
},
fontFamily: {
sans: ['var(--font-pixelify-sans)', 'Arial', 'Helvetica', 'sans-serif'],
},
fontSize: {
'fluid-sm': 'calc(0.75rem + 0.5vw)',
'fluid-xs': 'calc(0.65rem + 0.3vw)',
},
screens: {
'md':'900px'
},
},
},
plugins: [],
};