16 lines
314 B
JavaScript
16 lines
314 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'pb-anthracite': '#2A2A2A',
|
|
'pb-turquoise': '#00bfa5',
|
|
},
|
|
},
|
|
},
|
|
plugins: []
|
|
} |