mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-25 21:34:00 +01:00
42 lines
931 B
JavaScript
42 lines
931 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
|
|
theme: {
|
|
fontFamily: {
|
|
sans: [
|
|
'Söhne',
|
|
'ui-sans-serif',
|
|
'system-ui',
|
|
'-apple-system',
|
|
'Segoe UI',
|
|
'Roboto',
|
|
'Ubuntu',
|
|
'Cantarell',
|
|
'Noto Sans',
|
|
'sans-serif',
|
|
'Helvetica Neue',
|
|
'Arial',
|
|
'Apple Color Emoji',
|
|
'Segoe UI Emoji',
|
|
'Segoe UI Symbol',
|
|
'Noto Color Emoji',
|
|
],
|
|
mono: ['Söhne Mono', 'Monaco', 'Andale Mono', 'Ubuntu Mono', 'monospace'],
|
|
},
|
|
extend: {
|
|
typography: {
|
|
DEFAULT: {
|
|
css: {
|
|
pre: { padding: 0, margin: 0 },
|
|
ul: {
|
|
'list-style-type': 'none',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [require('@tailwindcss/typography')],
|
|
darkMode: 'class',
|
|
};
|