14 lines
323 B
JavaScript
14 lines
323 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{html,js,svelte,ts}"],
|
|
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ['Figtree', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif'],
|
|
},
|
|
extend: {}
|
|
},
|
|
|
|
plugins: []
|
|
};
|