mirror of
https://github.com/penxio/penx.git
synced 2026-04-19 03:03:06 -04:00
104 lines
2.9 KiB
TypeScript
104 lines
2.9 KiB
TypeScript
import { dynamicIconsPlugin, iconsPlugin } from '@egoist/tailwindcss-icons'
|
|
import type { Config } from 'tailwindcss'
|
|
import { fontFamily } from 'tailwindcss/defaultTheme'
|
|
|
|
const config = {
|
|
darkMode: ['class'],
|
|
content: [
|
|
'./pages/**/*.{ts,tsx}',
|
|
'./components/**/*.{ts,tsx}',
|
|
'./app/**/*.{ts,tsx}',
|
|
'./lib/**/*.{js,ts,jsx,tsx}',
|
|
'./src/**/*.{ts,tsx}',
|
|
],
|
|
prefix: '',
|
|
theme: {
|
|
container: {
|
|
center: true,
|
|
padding: '2rem',
|
|
screens: {
|
|
sm: '640px',
|
|
md: '768px',
|
|
lg: '1024px',
|
|
xl: '1120px',
|
|
'2xl': '1120px',
|
|
},
|
|
},
|
|
extend: {
|
|
fontFamily: {
|
|
default: ['var(--font-inter)', ...fontFamily.sans],
|
|
cal: ['var(--font-cal)', ...fontFamily.sans],
|
|
title: ['var(--font-title)', ...fontFamily.sans],
|
|
mono: ['Consolas', ...fontFamily.mono],
|
|
sans: ['var(--font-sans)', ...fontFamily.sans],
|
|
},
|
|
colors: {
|
|
border: 'hsl(var(--border))',
|
|
input: 'hsl(var(--input))',
|
|
ring: 'hsl(var(--ring))',
|
|
background: 'hsl(var(--background))',
|
|
foreground: 'hsl(var(--foreground))',
|
|
primary: {
|
|
DEFAULT: 'hsl(var(--primary))',
|
|
foreground: 'hsl(var(--primary-foreground))',
|
|
},
|
|
secondary: {
|
|
DEFAULT: 'hsl(var(--secondary))',
|
|
foreground: 'hsl(var(--secondary-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))',
|
|
},
|
|
sidebar: {
|
|
DEFAULT: 'hsl(var(--sidebar))',
|
|
foreground: 'hsl(var(--sidebar-foreground))',
|
|
},
|
|
popover: {
|
|
DEFAULT: 'hsl(var(--popover))',
|
|
foreground: 'hsl(var(--popover-foreground))',
|
|
},
|
|
card: {
|
|
DEFAULT: 'hsl(var(--card))',
|
|
foreground: 'hsl(var(--card-foreground))',
|
|
},
|
|
},
|
|
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' },
|
|
},
|
|
},
|
|
animation: {
|
|
'accordion-down': 'accordion-down 0.2s ease-out',
|
|
'accordion-up': 'accordion-up 0.2s ease-out',
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('tailwindcss-animate'),
|
|
require('@tailwindcss/typography'),
|
|
iconsPlugin(),
|
|
dynamicIconsPlugin(),
|
|
],
|
|
} satisfies Config
|
|
|
|
export default config
|