headplane/tailwind.config.ts

75 lines
1.3 KiB
TypeScript
Raw Normal View History

/* eslint-disable @typescript-eslint/naming-convention */
2024-12-31 10:30:14 +05:30
import type { Config } from 'tailwindcss';
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: {
container: {
center: true,
padding: {
2024-12-31 10:30:14 +05:30
DEFAULT: '1rem',
sm: '2rem',
lg: '4rem',
xl: '5rem',
2024-05-15 21:54:40 -04:00
'2xl': '6rem',
},
},
2024-04-17 17:42:44 -04:00
extend: {
2025-01-06 08:31:49 +05:30
blur: {
xs: '2px',
},
2024-04-17 17:42:44 -04:00
height: {
2024-05-15 21:54:40 -04:00
editor: 'calc(100vh - 20rem)',
},
2025-01-20 08:15:14 +00:00
fontFamily: {
sans: [
'Inter',
'-apple-system',
'BlinkMacSystemFont',
'Helvetica',
'Arial',
'sans-serif',
],
},
transitionDuration: {
25: '25ms',
50: '50ms',
},
colors: {
main: colors.slate,
2024-05-15 21:54:40 -04:00
ui: colors.neutral,
2025-01-20 08:15:14 +00:00
headplane: {
50: '#F2F2F2',
100: '#E6E6E6',
200: '#CCCCCC',
300: '#B3B3B3',
400: '#999999',
500: '#808080',
600: '#666666',
700: '#4D4D4D',
800: '#343434',
900: '#1A1A1A',
950: '#0D0D0D',
},
2024-05-11 23:07:24 -04:00
},
keyframes: {
loader: {
from: {
2024-05-15 21:54:40 -04:00
transform: 'translateX(-100%)',
2024-05-11 23:07:24 -04:00
},
to: {
2024-05-15 21:54:40 -04:00
transform: 'translateX(100%)',
},
},
2024-05-11 23:07:24 -04:00
},
animation: {
2024-05-15 21:54:40 -04:00
loading: 'loader 0.8s infinite ease-in-out',
},
},
2024-03-25 17:50:58 -04:00
},
2024-05-15 21:54:40 -04:00
plugins: [animate, aria],
2024-12-31 10:30:14 +05:30
} satisfies Config;