init gitbiome

This commit is contained in:
2024-07-12 10:27:28 +02:00
commit f070ffe97d
41 changed files with 4328 additions and 0 deletions
+43
View File
@@ -0,0 +1,43 @@
import type { Config } from 'tailwindcss'
const config: Config = {
content: [
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
container: {
center: true,
padding: '2rem',
screens: {
'2xl': '1400px'
}
},
extend: {
colors: {
border: 'hsl(var(--border))',
background: 'hsl(var(--background))',
foreground: 'hsl(var(--foreground))',
card: {
DEFAULT: 'hsl(var(--card))',
foreground: 'hsl(var(--card-foreground))'
},
muted: {
DEFAULT: 'hsl(var(--muted))',
foreground: 'hsl(var(--muted-foreground))'
},
badge: {
DEFAULT: 'hsl(var(--badge))',
foreground: 'hsl(var(--badge-foreground))'
},
destructive: {
DEFAULT: 'hsl(var(--destructive))',
foreground: 'hsl(var(--destructive-foreground))'
}
}
},
},
plugins: [require('tailwindcss-animate')]
}
export default config