-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
54 lines (54 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
51
52
53
54
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./src/**/*.{js,ts,jsx,tsx}',
'./src/components/**/*.{js,ts,jsx,tsx}',
'./src/app/**/*.{js,ts,jsx,tsx}',
],
theme: {
container: {
center: true,
padding:{
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem',
}
},
screens: {
'xxs': '300px',
'xs': '375px',
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
'2xl': '1536px',
},
extend: {
colors: {
'main': {
'50': '#f3fee7',
'100': '#e5fbcc',
'200': '#cbf89e',
'300': '#a8f066',
'400': '#87e437',
'500': '#67ca18',
'600': '#4ea10f',
'700': '#428612',
'800': '#336113',
'900': '#2d5215',
'950': '#142d06',
},
'secondary-500': '#E7EDD8',
'light-400': '#FAF4F4',
'light-500': '#F5F5F5',
'dark-500': '#0F0C0C'
},
boxShadow: {
'custom-1': '0px 8px 10px 0px #00000033',
}
},
},
plugins: [],
}