From 3399032527449ca47875de584ab1997123268c06 Mon Sep 17 00:00:00 2001 From: Alberto Defendi <1369-ahl-berto@users.noreply.gitlab.inf.unibz.it> Date: Thu, 20 May 2021 08:50:40 +0200 Subject: [PATCH] Move theme to this file. --- src/App.style.ts | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/App.style.ts diff --git a/src/App.style.ts b/src/App.style.ts new file mode 100644 index 0000000..94f03fd --- /dev/null +++ b/src/App.style.ts @@ -0,0 +1,29 @@ +import { createMuiTheme } from '@material-ui/core/styles'; + +export const muiTheme = createMuiTheme({ + palette: { + primary: { + main: '#5e5ce4', + }, + secondary: { + main: '#e2e45c', + }, + }, + + typography: { + fontSize: 16, + }, + + overrides: { + MuiTabs: { + indicator: { + backgroundColor: 'white', + }, + }, + MuiTab: { + wrapper: { + flexDirection: 'row', + }, + }, + }, +}); -- GitLab