-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
41 lines (41 loc) · 1.16 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
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
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: {
primary: '#6171fe',
secondary: '#9f6afe',
tertiary: '#b79dfe',
highlight: '#ddd0fe',
light: '#fefefe',
dark: '#6658fe',
},
animation: {
background: 'background 2s ease-in-out infinite',
linear: 'backgroundLinear 3s linear infinite',
slide: 'backgroundSlide 120s linear infinite alternate-reverse forwards;',
},
keyframes: {
background: {
'0%, 100%': { backgroundPosition: 'left 0% bottom 0%' },
'50%': { backgroundPosition: 'left 200% bottom 0%' },
},
backgroundLinear: {
'0%': { backgroundPosition: '0% 50%' },
'100%': { backgroundPosition: '200% 50%' },
},
backgroundSlide: {
'0%': { backgroundPosition: '0 0%' },
'100%': { backgroundPosition: '100% 50%' },
},
},
},
},
plugins: [],
};