-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
50 lines (42 loc) · 1.14 KB
/
tailwind.config.js
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
41
42
43
44
45
46
47
48
49
50
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./public/**/*.html",
'./node_modules/tw-elements/dist/js/**/*.js',
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
"./node_modules/flowbite/**/*.js"
],
theme: {
extend: {
colors: {
primary: '#3498db', // Blue
secondary: '#2ecc71', // Green
accent: '#e74c3c', // Red
background: '#ecf0f1', // Light Grey
text: '#2c3e50', // Dark Grey
},
animation: {
marquee: 'marquee 15s linear infinite',
marquee2: 'marquee2 25s linear infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateY(0%)' },
'100%': { transform: 'translateY(-100%)' },
},
marquee2: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0%)' },
},
},
},
},
plugins: [
require('tw-elements/dist/plugin'),
require('flowbite/plugin')
],
}