-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtailwind.config.ts
73 lines (70 loc) · 1.98 KB
/
tailwind.config.ts
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
import { nextui } from '@nextui-org/theme'
import type { Config } from 'tailwindcss'
/**
* Import the `flattenColorPalette` function from the `tailwindcss/lib/util/flattenColorPalette` module.
* This function is used to flatten the color palette object into a single-level object.
*/
const {
default: flattenColorPalette,
} = require('tailwindcss/lib/util/flattenColorPalette')
/**
* Tailwind CSS configuration object.
*/
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
'./node_modules/@nextui-org/theme/dist/components/[object Object].js',
'./node_modules/@nextui-org/theme/dist/**/*.{js,ts,jsx,tsx}',
],
theme: {
extend: {
animation: {
scroll:
'scroll var(--animation-duration, 40s) var(--animation-direction, forwards) linear infinite',
},
textColor: {
muted: 'var(--color-text-muted)',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
scale: {
99: '.99',
98: '.98',
97: '.97',
101: '1.01',
102: '1.02',
},
keyframes: {
scroll: {
to: {
transform: 'translate(calc(-50% - 0.5rem))',
},
},
},
},
},
darkMode: 'class',
plugins: [nextui(), addVariablesForColors, require('@tailwindcss/typography')],
}
/**
* Adds CSS variables for colors to the global CSS.
*
* @param {Object} options - The options object.
* @param {Function} options.addBase - The function to add base styles to the global CSS.
* @param {Function} options.theme - The function to access the theme configuration.
*/
function addVariablesForColors({ addBase, theme }: any) {
let allColors = flattenColorPalette(theme('colors'))
let newVars = Object.fromEntries(
Object.entries(allColors).map(([key, val]) => [`--${key}`, val])
)
addBase({
':root': newVars,
})
}
export default config