forked from IAmJaysWay/Gamification-StarterCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcraco.config.js
42 lines (41 loc) · 1.46 KB
/
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
34
35
36
37
38
39
40
41
42
const CracoLessPlugin = require('craco-less');
module.exports = {
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: {
"@component-background": "#001529",
"@text-color": "white",
"@primary-5": "white",
"@primary-color": "darkslategrey",
"@heading-color": "#21bf96",
"@layout-header-background": "#001529", //header background
"@menu-item-active-bg": "darkslategrey", //menu top color
"@menu-dark-item-active-bg": "darkslategrey", //menu top color
"@link-color": "#21bf96", //green color for text
"@timeline-dot-bg": "transparent",
//table
"@table-bg": "#001529",
"@table-header-bg": "#001529",
"@table-header-color": "#21bf96",
"@table-row-hover-bg": "darkslategrey",
//table pagination
"@pagination-item-bg": "#001529",
"@pagination-item-bg-active": "darkslategrey",
"@pagination-item-input-bg": "#001529",
//button
"@btn-link-hover-bg": "#001529",
//icons
"@icon-color-hover": "#001529",
"@icon-color": "white",
},
javascriptEnabled: true,
},
},
},
},
],
};