mirror of
https://github.com/meshtastic/web.git
synced 2026-03-18 13:57:13 -04:00
21 lines
452 B
JavaScript
21 lines
452 B
JavaScript
const defaultTheme = require('tailwindcss/defaultTheme');
|
|
|
|
module.exports = {
|
|
content: ['./public/**/*.html', './src/**/*.tsx'],
|
|
darkMode: 'class', // or 'media' or 'class'
|
|
theme: {
|
|
fontFamily: {
|
|
sans: ['Inter var', ...defaultTheme.fontFamily.sans],
|
|
},
|
|
extend: {
|
|
colors: {
|
|
primary: '#67ea94',
|
|
primaryDark: '#1E293B',
|
|
secondaryDark: '#0F172A',
|
|
},
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
};
|