fixed datadog logs formatting
This commit is contained in:
parent
eb7efada69
commit
9cc0f78636
5 changed files with 18 additions and 18 deletions
|
|
@ -4,8 +4,6 @@ import { createTheme, ThemeOptions } from '@mui/material/styles';
|
|||
import {
|
||||
getPrimaryColour,
|
||||
getSecondaryColour,
|
||||
getSignatureAccentColour,
|
||||
getSignatureColour
|
||||
} from "../services/whiteLabel";
|
||||
|
||||
const baseTheme: ThemeOptions = {
|
||||
|
|
@ -27,9 +25,6 @@ function makePaletteColor(name: keyof typeof Colours) {
|
|||
return { main: name };
|
||||
}
|
||||
const ramp = Colours[name] as Record<number, string>; // e.g., blue[500], blue[300], etc.
|
||||
// if (!ramp) {
|
||||
|
||||
// }
|
||||
return {
|
||||
main: ramp[500],
|
||||
light: ramp[300],
|
||||
|
|
@ -54,8 +49,8 @@ export const getTheme = (mode: 'light' | 'dark') =>
|
|||
}
|
||||
: {
|
||||
background: {
|
||||
default: "#e9e9e9",
|
||||
paper: "#fafafa",
|
||||
default: "#e5e5e5",
|
||||
paper: "#f0f0f0",
|
||||
},
|
||||
}),
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue