-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
52 lines (49 loc) · 1.17 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
/**
* @type {import('@types/tailwindcss/tailwind-config').TailwindConfig}
*/
module.exports = {
content: [
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/flowbite-react/**/*.js',
'./src/pages/**/*.{js,jsx}',
'./src/components/**/*.{js,jsx}',
'./public/**/*.html',
],
theme: {
container: {
// you can configure the container to be centered
center: true,
// or have default horizontal padding
padding: '1rem',
// default breakpoints but with 40px removed
screens: {
sm: '480px',
md: '768px',
lg: '976px',
xl: '1280px',
},
},
extend: {
fontFamily: {
sans: ['Inter', 'Arial', 'sans-serif'],
},
colors: {
violet: {
DEFAULT: '#4338CA',
//50: '#EAE9F9',
50: '#EEF2FF',
100: '#DBD9F5',
200: '#BDB9EC',
300: '#9E99E4',
400: '#8078DB',
500: '#6158D3',
600: '#4338CA',
700: '#332A9F',
800: '#251F73',
900: '#171347',
},
},
},
},
plugins: [require('flowbite/plugin'), require("@tailwindcss/line-clamp")],
};