-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
44 lines (44 loc) · 1006 Bytes
/
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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./pages/**/*.{js,ts,jsx,tsx}',
'./components/**/*.{js,ts,jsx,tsx}',
],
theme: {
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '1.563rem',
md: '3.125rem',
lg: '6.25rem',
xl: '9.375rem',
},
},
fontFamily: {
sans: ['Rubik', 'sans-serif'],
handwriting: ['Dancing Script', 'cursive'],
},
colors: {
navygreen: '#0F2027',
brightgreen: '#142c36',
black: '#000000',
yellow: '#F6E8AA',
white: '#FFFFFF',
transparent: 'transparent',
},
animation: {
backgroundPan: 'backgroundPan 1s linear infinite',
},
keyframes: {
backgroundPan: {
'0%': { backgroundPosition: '0% center' },
'100%': { backgroundPosition: '-200% center' },
},
},
backgroundImage: {
'main-pattern': "url('/images/texture.png')",
},
},
plugins: [],
};