mirror of
https://github.com/meshtastic/meshtastic.git
synced 2025-03-05 21:00:08 -08:00
16 lines
327 B
JavaScript
16 lines
327 B
JavaScript
|
module.exports = {
|
||
|
content: ["./src/**/*.{js,jsx,ts,tsx}"],
|
||
|
theme: {
|
||
|
extend: {
|
||
|
colors: {
|
||
|
accent: "#67ea94",
|
||
|
primary: "#f2f2f2",
|
||
|
secondary: "#ffffff",
|
||
|
primaryDark: "#242526",
|
||
|
secondaryDark: "#18191a",
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
plugins: [require("@tailwindcss/typography")],
|
||
|
};
|