source: sources/client/src/theme/index.js@ e8b1076

Last change on this file since e8b1076 was 3a58bd6, checked in by Viktor <39170279+Tasevski2@…>, 3 years ago

Added Frontend

  • Property mode set to 100644
File size: 634 bytes
Line 
1import { createTheme } from "@mui/material";
2
3const theme = createTheme({
4 palette: {
5 primary: {
6 light: '#4cc5a3',
7 main: '#00AD7C',
8 dark: '#007956'
9 },
10 secondary: {
11 light: '#DFDFDF',
12 main: '#B0B0B0',
13 dark: '#8C8C8C'
14 },
15 background: {
16 white: '#FFFFFF',
17 whiteSmoke: '#f4f4f4',
18 shadow: '#aaaaaa'
19 }
20 },
21 // overrides: { TODO
22 // MuiTypography: {
23 // h1: {
24 // fontSize: "5rem"
25 // }
26 // }
27 // }
28});
29
30export default theme;
Note: See TracBrowser for help on using the repository browser.