2024-04-22 14:33:51 -04:00
|
|
|
/* eslint-disable @typescript-eslint/naming-convention */
|
2024-03-25 17:50:58 -04:00
|
|
|
import type { Config } from 'tailwindcss'
|
2024-04-29 20:31:29 -04:00
|
|
|
import colors from 'tailwindcss/colors'
|
|
|
|
|
import animate from 'tailwindcss-animate'
|
|
|
|
|
import aria from 'tailwindcss-react-aria-components'
|
2024-03-25 17:50:58 -04:00
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
content: ['./app/**/*.{js,jsx,ts,tsx}'],
|
|
|
|
|
theme: {
|
2024-04-22 14:33:51 -04:00
|
|
|
container: {
|
|
|
|
|
center: true,
|
|
|
|
|
padding: {
|
|
|
|
|
DEFAULT: '1rem',
|
|
|
|
|
sm: '2rem',
|
|
|
|
|
lg: '4rem',
|
|
|
|
|
xl: '5rem',
|
|
|
|
|
'2xl': '6rem'
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-04-17 17:42:44 -04:00
|
|
|
extend: {
|
|
|
|
|
height: {
|
|
|
|
|
editor: 'calc(100vh - 20rem)'
|
2024-04-29 20:31:29 -04:00
|
|
|
},
|
|
|
|
|
colors: {
|
|
|
|
|
main: colors.slate,
|
|
|
|
|
ui: colors.neutral
|
2024-05-11 23:07:24 -04:00
|
|
|
},
|
|
|
|
|
keyframes: {
|
|
|
|
|
loader: {
|
|
|
|
|
from: {
|
|
|
|
|
transform: 'translateX(-100%)'
|
|
|
|
|
},
|
|
|
|
|
to: {
|
|
|
|
|
transform: 'translateX(100%)'
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
animation: {
|
|
|
|
|
loading: 'loader 0.8s infinite ease-in-out'
|
2024-04-17 17:42:44 -04:00
|
|
|
}
|
|
|
|
|
}
|
2024-03-25 17:50:58 -04:00
|
|
|
},
|
2024-04-29 20:31:29 -04:00
|
|
|
plugins: [animate, aria]
|
2024-03-25 17:50:58 -04:00
|
|
|
} satisfies Config
|
|
|
|
|
|