27 lines
690 B
JavaScript
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: [],
|
|
} |