edtech / apps /web /tailwind.config.js
CognxSafeTrack
feat(ui): complete landing page and admin dashboard exports
d8249dc
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: '#1C7C54',
secondary: '#1B3A57',
accent: '#F4A261',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
heading: ['Montserrat', 'sans-serif'],
}
},
},
plugins: [],
}