Files
meshstream/web/tailwind.config.js
2025-04-22 17:17:25 -07:00

27 lines
572 B
JavaScript

const colors = require("tailwindcss/colors");
/** @type {import('tailwindcss').Config} */
export default {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {
colors: { ...colors },
fontFamily: {
sans: [
'"Helvetica Neue"',
'Inter',
'ui-sans-serif',
'system-ui',
'-apple-system',
'BlinkMacSystemFont',
'"Segoe UI"',
'Roboto',
'Arial',
'sans-serif',
],
}
},
},
darkMode: "class",
plugins: [],
};