mirror of
https://github.com/dpup/meshstream.git
synced 2026-04-30 10:34:06 +02: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: [],
|
|
}; |