34 lines
689 B
JavaScript
34 lines
689 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
DEFAULT: '#0117bf',
|
|
light: '#3d8c01',
|
|
dark: '#000a8a',
|
|
},
|
|
accent: {
|
|
DEFAULT: '#82ed20',
|
|
dark: '#6bc01a',
|
|
},
|
|
secondary: {
|
|
DEFAULT: '#263336',
|
|
light: '#3d4f53',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
},
|
|
container: {
|
|
center: true,
|
|
padding: '1rem',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |