115 lines
3.9 KiB
TypeScript
115 lines
3.9 KiB
TypeScript
import type { Config } from "tailwindcss"
|
|
|
|
const config: Config = {
|
|
darkMode: ["class"],
|
|
content: [
|
|
"./pages/**/*.{ts,tsx}",
|
|
"./components/**/*.{ts,tsx}",
|
|
"./app/**/*.{ts,tsx}",
|
|
"./src/**/*.{ts,tsx}",
|
|
],
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: '2rem',
|
|
screens: {
|
|
'2xl': '1400px'
|
|
}
|
|
},
|
|
extend: {
|
|
colors: {
|
|
border: 'var(--border)',
|
|
input: 'var(--input)',
|
|
ring: 'var(--ring)',
|
|
background: 'var(--background)',
|
|
foreground: 'var(--foreground)',
|
|
primary: {
|
|
DEFAULT: 'var(--primary)',
|
|
foreground: 'var(--primary-foreground)'
|
|
},
|
|
secondary: {
|
|
DEFAULT: 'var(--secondary)',
|
|
foreground: 'var(--secondary-foreground)'
|
|
},
|
|
destructive: {
|
|
DEFAULT: 'var(--destructive)',
|
|
foreground: 'var(--destructive-foreground)'
|
|
},
|
|
muted: {
|
|
DEFAULT: 'var(--muted)',
|
|
foreground: 'var(--muted-foreground)'
|
|
},
|
|
accent: {
|
|
DEFAULT: 'var(--accent)',
|
|
foreground: 'var(--accent-foreground)'
|
|
},
|
|
popover: {
|
|
DEFAULT: 'var(--popover)',
|
|
foreground: 'var(--popover-foreground)'
|
|
},
|
|
card: {
|
|
DEFAULT: 'var(--card)',
|
|
foreground: 'var(--card-foreground)'
|
|
},
|
|
sidebar: {
|
|
DEFAULT: 'var(--sidebar-background)',
|
|
foreground: 'var(--sidebar-foreground)',
|
|
primary: 'var(--sidebar-primary)',
|
|
'primary-foreground': 'var(--sidebar-primary-foreground)',
|
|
accent: 'var(--sidebar-accent)',
|
|
'accent-foreground': 'var(--sidebar-accent-foreground)',
|
|
border: 'var(--sidebar-border)',
|
|
ring: 'var(--sidebar-ring)'
|
|
}
|
|
},
|
|
borderRadius: {
|
|
lg: 'var(--radius)',
|
|
md: 'calc(var(--radius) - 2px)',
|
|
sm: 'calc(var(--radius) - 4px)'
|
|
},
|
|
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'
|
|
}
|
|
},
|
|
rainbow: {
|
|
"0%": { "background-position": "0%" },
|
|
"100%": { "background-position": "200%" },
|
|
},
|
|
shine: {
|
|
"0%": {
|
|
"background-position": "0% 0%",
|
|
},
|
|
"50%": {
|
|
"background-position": "100% 100%",
|
|
},
|
|
to: {
|
|
"background-position": "0% 0%",
|
|
},
|
|
},
|
|
},
|
|
animation: {
|
|
'accordion-down': 'accordion-down 0.2s ease-out',
|
|
'accordion-up': 'accordion-up 0.2s ease-out',
|
|
rainbow: "rainbow var(--speed, 2s) infinite linear",
|
|
shine: "shine var(--duration) infinite linear",
|
|
}
|
|
}
|
|
},
|
|
plugins: [require("tailwindcss-animate")],
|
|
}
|
|
|
|
export default config
|