-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
51 lines (51 loc) · 1.13 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
51
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
screens: {
sm: '400px',
extraSm: '500px',
md: '750px',
// => @media (min-width: 640px) { ... }
xl: '1024px',
// => @media (min-width: 1024px) { ... }
lg: '1280px',
// => @media (min-width: 1280px) { ... }
"2xl": '1300px',
"3xl": '1900px',
},
extend: {
colors: {
"lightGrey": "#6c6c6c",
"veryLightGrey": "#e2e4e3",
"deepBlue": "#031F3C",
"veryDeepBlue": "#031E39",
"fav": "#2C474B",
},
backgroundSize: {
"100%": "100% 100%",
"35%": "30% 35%"
},
keyframes: {
scale: {
from: { transform: 'scale(1.2)' },
to: { transform: 'scale(1.2)' },
}
},
animation: {
scale: 'scale 1s ease-in-out infinite',
},
fontFamily: {
'logo': ["'Teko', sans-serif"]
},
},
},
plugins: [
require("@tailwindcss/forms")({
strategy: 'class',
})
],
}