You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.7 KiB
53 lines
1.7 KiB
/** @type {import('tailwindcss').Config} */ |
|
module.exports = { |
|
content: ['./src/renderer/**/*.{ts,tsx}'], |
|
prefix: '', |
|
theme: { |
|
container: { |
|
center: true, |
|
padding: '2rem', |
|
screens: { |
|
'2xl': '1400px' |
|
} |
|
}, |
|
extend: { |
|
keyframes: { |
|
'accordion-down': { |
|
from: { height: '0' }, |
|
to: { height: 'var(--radix-accordion-content-height)' } |
|
}, |
|
'accordion-up': { |
|
from: { height: 'var(--radix-accordion-content-height)' }, |
|
to: { height: '0' } |
|
} |
|
}, |
|
animation: { |
|
'accordion-down': 'accordion-down 0.2s ease-out', |
|
'accordion-up': 'accordion-up 0.2s ease-out' |
|
}, |
|
colors: { |
|
background: 'hsl(var(--background))', |
|
foreground: 'hsl(var(--foreground))', |
|
muted: 'hsl(var(--muted))', |
|
'muted-foreground': 'hsl(var(--muted-foreground))', |
|
card: 'hsl(var(--card))', |
|
'card-foreground': 'hsl(var(--card-foreground))', |
|
popover: 'hsl(var(--popover))', |
|
'popover-foreground': 'hsl(var(--popover-foreground))', |
|
border: 'hsl(var(--border))', |
|
input: 'hsl(var(--input))', |
|
primary: 'hsl(var(--primary))', |
|
'primary-foreground': 'hsl(var(--primary-foreground))', |
|
secondary: 'hsl(var(--secondary))', |
|
'secondary-foreground': 'hsl(var(--secondary-foreground))', |
|
accent: 'hsl(var(--accent))', |
|
'accent-foreground': 'hsl(var(--accent-foreground))', |
|
destructive: 'hsl(var(--destructive))', |
|
'destructive-foreground': 'hsl(var(--destructive-foreground))', |
|
ring: 'hsl(var(--ring))', |
|
highlight: 'hsl(var(--highlight))' |
|
} |
|
} |
|
}, |
|
plugins: [require('tailwindcss-animate')] |
|
}
|
|
|