-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcraco.config.js
33 lines (32 loc) · 974 Bytes
/
craco.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
const CracoLessPlugin = require('craco-less');
module.exports = {
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: {
'@primary-color': '#7879F1',
'@component-background': '#212121', // bg2
'@table-header-bg': '#212121',
'@dropdown-menu-bg': '#212121',
// 'link-color': '...',
// 'success-color': '...',
// 'warning-color': '...',
// 'error-color': '...',
// 'heading-color': '...',
// 'text-color': '...',
// 'text-color-secondary': '...',
// 'border-color-base': '...',
// 'border-radius-base': '...',
// 'box-shadow-base': '...',
// 'font-size-base: '...', // 14px
},
javascriptEnabled: true,
},
},
},
},
],
};