-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
28 lines (28 loc) · 909 Bytes
/
Copy pathtailwind.config.js
File metadata and controls
28 lines (28 loc) · 909 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {
fontFamily: {
navlinks: ['"Cairo Play"', 'sans-serif'],
main: ['Roboto', 'sans-serif'],
kanit: ['Kanit', 'sans-serif'],
},
colors: {
midnight: '#22092C', // Deep purple
mulberry: '#872341', // Burgundy red
crimson: '#BE3144', // Bright red
flame: '#F05941', // Vibrant orange
},
},
},
plugins: [],
layer: {
components: {
'.nav-link': 'cursor-pointer relative group',
'.nav-link::after': `content-[''] absolute left-0 -bottom-1 w-full h-0.5 to-flame transform scale-x-0 transition-transform duration-300 origin-left group-hover:scale-x-100`,
'.section-heading':
'text-center text-3xl my-6 font-kanit font-medium tracking-wider',
},
},
};