31 lines
831 B
JavaScript
31 lines
831 B
JavaScript
const { createGlobPatternsForDependencies } = require('@nx/react/tailwind');
|
|
const { join } = require('path');
|
|
|
|
module.exports = {
|
|
content: [
|
|
...createGlobPatternsForDependencies(__dirname + '../../../libraries/react-shared-libraries'),
|
|
join(
|
|
__dirname + '../../../libraries/react-shared-libraries',
|
|
'{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}'
|
|
),
|
|
join(
|
|
__dirname,
|
|
'{src,pages,components,app}/**/*!(*.stories|*.spec).{ts,tsx,html}'
|
|
),
|
|
...createGlobPatternsForDependencies(__dirname),
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#000',
|
|
secondary: '#090B13',
|
|
third: '#080B13',
|
|
forth: '#262373',
|
|
fifth: '#172034',
|
|
sixth: '#0B101B',
|
|
gray: '#8C8C8C',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}; |