@page-ui/wizard
Version:
Landing page components & templates that you can copy & paste
106 lines (97 loc) • 3.08 kB
text/typescript
import type { Config } from 'tailwindcss';
import { fontFamily } from 'tailwindcss/defaultTheme';
import { colors } from './data/config/colors';
import tailwindcssAnimate from 'tailwindcss-animate';
import tailwindcssForms from '@tailwindcss/forms';
import tailwindcssTypography from '@tailwindcss/typography';
const config: Config = {
darkMode: 'class',
content: [
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
'./components/**/*.{js,ts,jsx,tsx,mdx}',
'./app/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
fontFamily: {
sans: ['var(--font-space-default)', ...fontFamily.sans],
display: ['var(--font-space-display)', ...fontFamily.sans],
cursive: ['cursive'],
},
colors: {
primary: {
100: colors.primary.lighter,
200: colors.primary.lighter,
300: colors.primary.light,
400: colors.primary.light,
500: colors.primary.main,
600: colors.primary.main,
700: colors.primary.dark,
800: colors.primary.dark,
900: colors.primary.darker,
},
secondary: {
100: colors.secondary.lighter,
200: colors.secondary.lighter,
300: colors.secondary.light,
400: colors.secondary.light,
500: colors.secondary.main,
600: colors.secondary.main,
700: colors.secondary.dark,
800: colors.secondary.dark,
900: colors.secondary.darker,
},
border: 'hsl(var(--border))',
input: 'hsl(var(--input))',
ring: colors.primary.dark,
background: 'hsl(var(--background))',
foreground: 'hsl(var(--foreground))',
destructive: {
DEFAULT: 'hsl(var(--destructive))',
foreground: 'hsl(var(--destructive-foreground))',
},
muted: {
DEFAULT: 'hsl(var(--muted))',
foreground: 'hsl(var(--muted-foreground))',
},
accent: {
DEFAULT: 'hsl(var(--accent))',
foreground: 'hsl(var(--accent-foreground))',
},
popover: {
DEFAULT: 'hsl(var(--popover))',
foreground: 'hsl(var(--popover-foreground))',
},
card: {
DEFAULT: 'hsl(var(--card))',
foreground: 'hsl(var(--card-foreground))',
},
},
screens: {
'2xl': '1400px',
},
keyframes: {
marquee: {
'0%': {
transform: 'translateX(0)',
},
'100%': {
transform: 'translateX(-50%)',
},
},
},
animation: {
marquee: '30s marquee linear infinite',
},
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [tailwindcssAnimate, tailwindcssForms, tailwindcssTypography],
};
export default config;