mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
419 B
19 lines
419 B
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'
|
|
}
|
|
}
|
|
}
|
|
}
|