-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
68 lines (68 loc) · 1.78 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontSize: {
xs: ['0.75rem', '1rem'], // 12px
sm: ['0.875rem', '1.25rem'], // 14px
base: ['1rem', '1.5rem'], // 16px
lg: ['1.125rem', '1.75rem'], // 18px
xl: ['1.25rem', '1.75rem'], // 20px
'2xl': ['1.5rem', '2rem'], // 24px
'3xl': ['1.875rem', '2.25rem'], // 30px
'4xl': ['2.25rem', '2.5rem'], // 36px
'5xl': ['3rem', '1'], // 48px
'6xl': ['3.75rem', '1'], // 60px
'7xl': ['4.5rem', '1'], // 72px
'8xl': ['6rem', '1'], // 96px
'9xl': ['8rem', '1'], // 128px
},
extend: {
fontFamily: {
roboto: ['Roboto', 'sans-serif'],
merriweather: ['Merriweather', 'serif'],
lora: ['Lora', 'serif'],
},
colors: {
customGray: {
100: '#E7E9F2',
200: '#CED1D4',
300: '#AAADB7',
400: '#7F8192',
500: '#333333',
},
primary: {
DEFAULT: '#1E3A8A',
light: '#22279C',
},
"white-400": "rgba(255, 255, 255, 0.80)"
},
boxShadow: {
'3xl': '0 10px 40px rgba(0, 0, 0, 0.1)'
},
keyframes: {
'slideLeft': {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0)' },
},
'slideRight': {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(0)' },
},
},
animation: {
'slide-left': 'slideLeft 0.5s ease-in-out forwards',
'slide-right': 'slideRight 0.5s ease-in-out forwards',
},
backgroundImage: {
},
screens: {
"wide": "1440px"
}
},
},
plugins: [],
}