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

Last change on this file since bc20307 was bc20307, checked in by Tasevski2 <39170279+Tasevski2@…>, 2 years ago

Push before video

  • Property mode set to 100644
File size: 586 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 third: {
16 main: '#f65026',
17 },
18 background: {
19 white: '#FFFFFF',
20 whiteSmoke: '#f4f4f4',
21 shadow: '#aaaaaa',
22 },
23 },
24 // overrides: { TODO
25 // MuiTypography: {
26 // h1: {
27 // fontSize: "5rem"
28 // }
29 // }
30 // }
31});
32
33export default theme;
Note: See TracBrowser for help on using the repository browser.