-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtailwind.config.cjs
More file actions
47 lines (46 loc) · 850 Bytes
/
tailwind.config.cjs
File metadata and controls
47 lines (46 loc) · 850 Bytes
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
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ['./src/**/*.{html,js,svelte,ts}'],
darkMode: 'class',
theme: {
extend: {
fontFamily: {
poppins: ['Poppins', 'sans-serif']
},
colors: {
primary: colors.emerald
},
screens: {
xs: '412px',
'pre-md': '540px',
'pre-lg': '912px',
'pre-2xl': '1360px'
},
borderRadius: {
pill: '35rem'
},
boxShadow: {
soft: 'rgba(0, 0, 0, 0.1) 0px 4px 12px'
}
}
},
daisyui: {
themes: [
{
mytheme: {
primary: '#047857',
secondary: '#ffffff',
accent: '#fde68a',
neutral: '#2a323c',
'base-100': '#f3f4f6',
info: '#3b82f6',
success: '#16a34a',
warning: '#fbbd23',
error: '#b91c1c'
}
}
]
},
plugins: [require('daisyui')]
};