mirror of
https://github.com/pheralb/svgl.git
synced 2024-11-10 06:36:56 +08:00
31 lines
601 B
JavaScript
31 lines
601 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
darkMode: 'class',
|
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
dark: '#161616',
|
|
light: '#f5f5f5'
|
|
},
|
|
fontFamily: {
|
|
sans: ['InterVariable', 'sans-serif'],
|
|
mono: ['GeistMono', 'monospace']
|
|
},
|
|
fontSize: {
|
|
mini: '14px'
|
|
}
|
|
}
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/typography'),
|
|
({ addUtilities }) => {
|
|
addUtilities({
|
|
'.text-balance': {
|
|
'text-wrap': 'balance'
|
|
}
|
|
});
|
|
}
|
|
]
|
|
};
|