|
|
|
|
|
|
|
module.exports = { |
|
content: ['./src/**/*.{js,jsx,ts,tsx}'], |
|
|
|
darkMode: ['class'], |
|
theme: { |
|
|
|
|
|
|
|
fontFamily: { |
|
sans: ['Söhne', 'sans-serif'], |
|
mono: ['Söhne Mono', 'monospace'], |
|
}, |
|
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: { |
|
gray: { |
|
'20': '#ececf1', |
|
'50': '#f7f7f8', |
|
'70': '#d1d5db', |
|
'100': '#d9d9e3', |
|
'200': '#d9d9e3', |
|
'300': '#c5c5d2', |
|
'400': '#acacb1', |
|
'500': '#8e8ea0', |
|
'600': '#565869', |
|
'700': '#40414f', |
|
'800': '#343541', |
|
'900': '#202123', |
|
'1000': '#444654', |
|
}, |
|
green: { |
|
50: '#f1f9f7', |
|
100: '#def2ed', |
|
200: '#a6e5d6', |
|
300: '#6dc8b9', |
|
400: '#41a79d', |
|
500: '#10a37f', |
|
600: '#126e6b', |
|
700: '#0a4f53', |
|
800: '#06373e', |
|
900: '#031f29', |
|
}, |
|
}, |
|
}, |
|
}, |
|
plugins: [ |
|
require('tailwindcss-animate'), |
|
require('tailwindcss-radix')(), |
|
|
|
], |
|
}; |
|
|