25 lines
721 B
JavaScript
25 lines
721 B
JavaScript
// tailwind.config.js
|
|
const { brandColors } = require('./src/styles/colors');
|
|
export default {
|
|
darkMode: 'class',
|
|
content: [
|
|
'./src/**/*.{js,ts,jsx,tsx}',
|
|
'./components/**/*.{js,ts,jsx,tsx}',
|
|
'./src/**/**/*.{js,ts,jsx,tsx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: brandColors.primary,
|
|
secondary: brandColors.secondary,
|
|
'background-light': brandColors.backgroundLight,
|
|
'background-dark': brandColors.backgroundDark,
|
|
'paper-light': brandColors.paperLight,
|
|
'paper-dark': brandColors.paperDark,
|
|
'text-light': brandColors.textLight,
|
|
'text-dark': brandColors.textDark,
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}; |