src/theme.js
c6a95b0d
 export default {
   gantt: {
     maxWidth: 700,
     margin: { top: 40, right: 20, bottom: 60, left: 20 },
     grid: {
       stroke: 'rgba(241, 216, 203, 0.6)'
     },
     brush: {
       height: 30,
       stroke: '#C89C93'
     },
     job: {
       height: 50,
       fill: '#3A4168',
       stroke: '#1B1B3A',
       textColor: '#e8e9f2'
     },
     label: {
       color: '#3A4168'
     }
   },
9d471776
   buttons: {
     primary: {
       backgroundColor: '#1B1B3A',
       color: 'white',
       cursor: 'pointer',
       padding: '10px'
     },
     secondary: {
       backgroundColor: '#3A4168',
       color: 'white',
       cursor: 'pointer',
       padding: '8px 10px'
     },
     tertiary: {
       backgroundColor: '#98798F',
       color: 'white',
       cursor: 'pointer',
       padding: '8px 10px'
     }
   }
c6a95b0d
 }