LSFE-Frontend/tailwind.config.js
rowell_m_soriano 6ae0709878
All checks were successful
Build and Deploy LSFE Frontend / build-and-deploy (push) Successful in 2m43s
update the config
2026-07-30 15:57:52 +08:00

36 lines
726 B
JavaScript

/** @type {import('tailwindcss').Config} */
import forms from '@tailwindcss/forms'
import typography from '@tailwindcss/typography'
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#f0fdfa',
100: '#ccfbf1',
200: '#99f6e4',
300: '#5eead4',
400: '#2dd4bf',
500: '#14b8a6',
600: '#0d9488',
700: '#0f766e',
800: '#115e59',
900: '#134e4a',
950: '#042f2e',
},
},
fontFamily: {
sans: ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [
forms,
typography,
],
}