-
Notifications
You must be signed in to change notification settings - Fork 1
/
tailwind.config.js
99 lines (96 loc) · 2.93 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/** @type {import('tailwindcss').Config} */
const disabledCss = {
'code::before': false,
'code::after': false,
'blockquote p:first-of-type::before': false,
'blockquote p:last-of-type::after': false,
pre: false,
code: false,
'pre code': false,
'code::before': false,
'code::after': false,
};
module.exports = {
darkMode: ['class'],
content: [
'./pages/**/*.{js,jsx}',
'./components/**/*.{js,jsx}',
'./src/app/**/*.{js,jsx}',
'./src/**/*.{js,jsx}',
],
prefix: '',
theme: {
screens: {
sm: '540px',
md: '720px',
lg: '960px',
'lg-max': { max: '960px' },
xl: '1140px',
'2xl': '1320px',
},
container: {
center: true,
padding: '2rem',
screens: {
sm: '540px',
md: '720px',
lg: '960px',
'lg-max': { max: '960px' },
xl: '1140px',
'2xl': '1320px',
},
},
extend: {
fontFamily: {
mazzardl: 'var(--font-mazzardl)',
mazzardh: 'var(--font-mazzardh)',
mazzardm: 'var(--font-mazzardm)',
},
animation: {
'accordion-down': 'accordion-down 0.2s ease-out',
'accordion-up': 'accordion-up 0.2s ease-out',
},
typography: {
DEFAULT: { css: disabledCss },
sm: { css: disabledCss },
lg: { css: disabledCss },
xl: { css: disabledCss },
'2xl': { css: disabledCss },
base: { css: disabledCss },
},
colors: {},
},
},
plugins: [
require('daisyui'),
require('tailwind-scrollbar')({ nocompatible: true }),
require('tailwindcss-animate'),
require('@tailwindcss/typography'),
],
daisyui: {
themes: [
'light',
'dark',
'corporate',
'synthwave',
'halloween',
'fantasy',
'luxury',
'cmyk',
'autumn',
'business',
'acid',
'lemonade',
'coffee',
'dim',
'nord',
], // false: only light + dark | true: all themes | array: specific themes like this ["light", "dark", "cupcake"]
darkTheme: 'dark', // name of one of the included themes for dark mode
base: true, // applies background color and foreground color for root element by default
styled: true, // include daisyUI colors and design decisions for all components
utils: true, // adds responsive and modifier utility classes
prefix: '', // prefix for daisyUI classnames (components, modifiers and responsive class names. Not colors)
logs: true, // Shows info about daisyUI version and used config in the console when building your CSS
themeRoot: ':root', // The element that receives theme color CSS variables
},
};