mirror of
https://github.com/dpup/meshstream.git
synced 2026-03-28 17:42:37 +01:00
27 lines
572 B
JavaScript
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: [],
|
|
}; |