117 lines
3.1 KiB
JavaScript
117 lines
3.1 KiB
JavaScript
module.exports = {
|
|
// Don't purge any tailwind classes, usefull for debugging
|
|
// ...(process.env.NODE_ENV === 'development' && {
|
|
// safelist: [{ pattern: /.*/ }],
|
|
// }),
|
|
content: [
|
|
'./pages/**/*.{ts,tsx}',
|
|
'./components/**/*.{ts,tsx}',
|
|
'./app/**/*.{ts,tsx}',
|
|
'./src/**/*.{ts,tsx}',
|
|
'../ui-next/**/*.{ts,tsx,js, jsx}',
|
|
],
|
|
prefix: '',
|
|
theme: {
|
|
fontFamily: {
|
|
inter: ['Inter', 'sans-serif'],
|
|
},
|
|
fontSize: {
|
|
xxs: '0.625rem', // 10px
|
|
xs: '0.6875rem', // 11px
|
|
sm: '0.75rem', // 12px
|
|
base: '0.8125rem', // 13px
|
|
lg: '0.875rem', // 14px
|
|
xl: '1rem', // 16px
|
|
// 2xl and above will be updated in an upcoming version
|
|
'2xl': '1.5rem',
|
|
'3xl': '1.875rem',
|
|
'4xl': '2.25rem',
|
|
'5xl': '3rem',
|
|
'6xl': '4rem',
|
|
},
|
|
fontWeight: {
|
|
hairline: '100',
|
|
thin: '200',
|
|
light: '300',
|
|
normal: '400',
|
|
medium: '500',
|
|
semibold: '600',
|
|
bold: '700',
|
|
extrabold: '800',
|
|
black: '900',
|
|
},
|
|
extend: {
|
|
colors: {
|
|
highlight: 'hsl(var(--highlight))',
|
|
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))',
|
|
},
|
|
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',
|
|
},
|
|
bkg: {
|
|
low: '#050615',
|
|
med: '#090C29',
|
|
full: '#041C4A',
|
|
},
|
|
info: {
|
|
primary: '#FFFFFF',
|
|
secondary: '#7BB2CE',
|
|
},
|
|
actions: {
|
|
primary: '#348CFD',
|
|
highlight: '#5ACCE6',
|
|
hover: 'rgba(52, 140, 253, 0.2)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('tailwindcss-animate')],
|
|
};
|