mirror of
https://github.com/docusealco/docuseal.git
synced 2026-06-22 20:00:30 +00:00
19 lines
419 B
JavaScript
19 lines
419 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
content: [
|
|
path.resolve(__dirname, 'app/javascript/template_builder/dynamic_area.vue'),
|
|
path.resolve(__dirname, 'app/javascript/template_builder/dynamic_section.vue')
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'base-100': '#faf7f5',
|
|
'base-200': '#efeae6',
|
|
'base-300': '#e7e2df',
|
|
'base-content': '#291334'
|
|
}
|
|
}
|
|
}
|
|
}
|