-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtailwind.config.ts
More file actions
39 lines (37 loc) · 820 Bytes
/
Copy pathtailwind.config.ts
File metadata and controls
39 lines (37 loc) · 820 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
import type {Config} from 'tailwindcss'
import daisyui from 'daisyui'
import typography from '@tailwindcss/typography'
const config: Config = {
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./assets/**/*.{css,scss}',
],
theme: {
extend: {
screens: {
'3xl': '1792px',
'4xl': '2048px',
'5xl': '2304px',
},
fontSize: {
'2xs': '0.625rem',
},
boxShadow: {
'panel-card': 'rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px',
},
},
},
plugins: [
daisyui,
typography
],
corePlugins: {
preflight: false,
},
daisyui: {
themes: ['light', 'dark', 'cyberpunk'],
},
};
export default config;