Sikomo-Daily-Scraper-Portal / frontend /tailwind.config.js
anoderb
style: redesign Daily Scrapper UI/UX to match Sikomo layout and color palette
c995585
Raw
History Blame Contribute Delete
318 Bytes
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,ts,jsx,tsx,mdx}',
],
theme: {
extend: {
colors: {
primary: '#1e3a8a',
dark: '#0f172a',
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
},
},
plugins: [],
}