29 lines
558 B
JavaScript
29 lines
558 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#1A7A4C',
|
|
hover: '#15634D',
|
|
},
|
|
navy: '#2D3142',
|
|
gray: {
|
|
custom: '#C8C9CB',
|
|
text: '#5A5D6B',
|
|
muted: '#8E9196',
|
|
bg: '#F5F6F8',
|
|
}
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', '-apple-system', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|