Initial commit
This commit is contained in:
25
tailwind.config.js
Normal file
25
tailwind.config.js
Normal file
@@ -0,0 +1,25 @@
|
||||
// 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: [],
|
||||
};
|
||||
Reference in New Issue
Block a user