Files
3764caec-f0be-49ad-ba4e-4a5…/tailwind.config.js
2025-12-29 15:12:38 +02:00

27 lines
690 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'linkedin-blue': '#0a66c2',
'linkedin-dark-blue': '#004182',
'linkedin-light-blue': '#378fe9',
'linkedin-gray': '#666666',
'linkedin-light-gray': '#f3f2ef',
'linkedin-border': '#e6e6e6',
'linkedin-text': '#000000e6'
},
fontFamily: {
'sans': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'sans-serif']
},
spacing: {
'18': '4.5rem',
'88': '22rem'
}
},
},
plugins: [],
}