-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtailwind.config.js
More file actions
78 lines (78 loc) · 1.69 KB
/
tailwind.config.js
File metadata and controls
78 lines (78 loc) · 1.69 KB
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
69
70
71
72
73
74
75
76
77
78
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
darkMode: ['class', "class"],
theme: {
extend: {
colors: {
accent: '#F84178',
blue: '#0067FF',
dark: 'rgb(17, 24, 39)',
'dark-border': 'rgb(55,65,81)',
'dark-card': '#1f2937',
'card-1': '#FFDAA7',
'card-2': '#DDD4FB',
'card-3': '#BEF0C7',
sidebar: {
DEFAULT: 'hsl(var(--sidebar-background))',
foreground: 'hsl(var(--sidebar-foreground))',
primary: 'hsl(var(--sidebar-primary))',
'primary-foreground': 'hsl(var(--sidebar-primary-foreground))',
accent: 'hsl(var(--sidebar-accent))',
'accent-foreground': 'hsl(var(--sidebar-accent-foreground))',
border: 'hsl(var(--sidebar-border))',
ring: 'hsl(var(--sidebar-ring))'
}
},
maxWidth: {
'8xl': '1560px'
},
spacing: {
'128': '32rem',
'144': '36rem'
},
borderRadius: {
'4xl': '2rem',
lg: 'var(--radius)',
md: 'calc(var(--radius) - 2px)',
sm: 'calc(var(--radius) - 4px)'
},
fontFamily: {
poppins: [
'Poppins',
'sans-serif'
],
manrope: [
'Manrope',
'sans-serif'
]
},
screens: {
xs: '475px',
'3xl': '1920px'
},
container: {
center: true,
padding: {
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
'2xl': '6rem'
}
},
fontSize: {
small: '8px'
}
}
},
// plugins: [
// require('@tailwindcss/forms'),
// require('@tailwindcss/typography'),
// require('@tailwindcss/aspect-ratio'),
// require("tailwindcss-animate")
// ],
}