-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.js
91 lines (90 loc) · 2.41 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
const plugin = require('tailwindcss/plugin');
const colors = require('tailwindcss/colors');
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/flowbite/**/*.js',
],
safelist: [
'[&_th]:whitespace-nowrap',
'[&_td]:whitespace-nowrap',
'[&_th]:table-cell',
'[&_td]:table-cell',
'!font-bold',
'!align-top',
'!align-middle',
'!align-bottom',
],
theme: {
extend: {
colors: {
primary: {
DEFAULT: colors.yellow[300],
lightest: colors.yellow[50],
lighter: colors.yellow[100],
darker: colors.yellow[400],
darkest: colors.yellow[600],
},
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
typography: {
DEFAULT: {
css: {
'table th': {
color: 'var(--tw-format-headings)',
fontWeight: 600,
verticalAlign: 'bottom',
padding: '0.5555556em 0.5714286em 0.5714286em',
backgroundColor: 'var(--tw-format-th-bg)',
},
table: {
marginTop: 0,
marginBottom: 0,
},
},
},
},
},
},
plugins: [
require('flowbite/plugin'),
require('flowbite-typography'),
plugin(function ({ addBase, addComponents, addUtilities, theme }) {
addBase({
html: {
scrollPaddingTop: theme('spacing.20'),
scrollBehavior: 'smooth',
},
body: {
backgroundColor: theme('colors.white'),
color: theme('colors.gray.900'),
},
'.dark body': {
backgroundColor: theme('colors.gray.900'),
color: theme('colors.white'),
},
});
// addComponents({
// '.card': {
// backgroundColor: theme('colors.white'),
// borderRadius: theme('borderRadius.lg'),
// padding: theme('spacing.6'),
// boxShadow: theme('boxShadow.xl'),
// }
// })
// addUtilities({
// '.content-auto': {
// contentVisibility: 'auto',
// }
// })
}),
],
};