-
Notifications
You must be signed in to change notification settings - Fork 0
/
tailwind.config.js
57 lines (55 loc) · 1.25 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
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./pages/**/*.{js,ts,jsx,tsx,mdx}",
"./components/**/*.{js,ts,jsx,tsx,mdx}",
"./Layout/**/*.{js,ts,jsx,tsx,mdx}",
"./UI/**/*.{js,ts,jsx,tsx,mdx}",
"./utils/**/*.{js,ts,jsx,tsx,mdx}",
// Or if using `src` directory:
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
container: {
center: true,
screens: {
// if the screen is smaller than 768 --> container is 100%
'sm': '640px',
'md': '768px',
'lg': '1024px',
'xl': '1280px',
},
padding: {
DEFAULT: '1rem',
sm: '0',
},
},
extend: {
colors: {
green: '#1ce783',
grey: {
300: '#797d84',
400: '#323843',
500: '#272c34',
600: '#0b0c0f',
900: '#040405'
},
white: '#f6f7f8',
hsla: {
'0-0-100-0': 'hsla(0, 0%, 100%, 0)',
},
rgba: {
'neutral-muted': 'rgba(110,118,129,0.4)'
}
},
maxWidth: {
'4/5': '80%',
},
boxShadow: {
'modal': '0 0 0 1px #30363d, 0 16px 32px rgba(1,4,9,0.85)',
}
},
},
plugins: [],
}