Files
reiverr/tailwind.config.js
2023-06-20 17:39:39 +03:00

18 lines
368 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
display: ['Inter', 'system', 'sans-serif']
},
colors: {
darken: '#07050199',
'highlight-dim': '#fde68a20'
}
}
},
plugins: [require('tailwind-scrollbar-hide')]
};