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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
| import { defaultTheme } from 'react-admin';
|
| export const rcsLightTheme = {
| palette: {
| primary: {
| main: 'rgb(47, 104, 172)',
| },
| secondary: {
| light: '#5f5fc4',
| main: 'rgb(47, 104, 172)',
| dark: '#001064',
| contrastText: '#fff',
| },
| background: {
| default: '#fcfcfe',
| },
| mode: 'light',
| },
| shape: {
| borderRadius: 10,
| },
| sidebar: {
| width: 200,
| },
| components: {
| ...defaultTheme.components,
| RaMenuItemLink: {
| styleOverrides: {
| root: {
| borderLeft: '3px solid #fff',
| '&.RaMenuItemLink-active': {
| borderLeft: '3px solid #4f3cc9',
| },
| },
| },
| },
| MuiPaper: {
| styleOverrides: {
| elevation1: {
| boxShadow: 'none',
| },
| root: {
| border: '1px solid #e0e0e3',
| backgroundClip: 'padding-box',
| },
| },
| },
| MuiAppBar: {
| styleOverrides: {
| colorSecondary: {
| color: 'rgb(255, 255, 255)',
| backgroundColor: 'rgb(47, 104, 172)',
| },
| },
| defaultProps: {
| elevation: 1,
| },
| },
| MuiLinearProgress: {
| styleOverrides: {
| colorPrimary: {
| backgroundColor: '#f5f5f5',
| },
| barColorPrimary: {
| backgroundColor: '#d7d7d7',
| },
| },
| },
| MuiTableRow: {
| styleOverrides: {
| root: {
| '&:last-child td': { border: 0 },
| },
| },
| },
| },
| };
|
|