From ba3802968bf30e86a69345f47a20dc698945e60f Mon Sep 17 00:00:00 2001 From: Rodrigo Antinarelli Date: Wed, 26 Feb 2020 12:58:34 -0300 Subject: [PATCH] remove unused file --- platform/ui/src/styles/theme.js | 46 --------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 platform/ui/src/styles/theme.js diff --git a/platform/ui/src/styles/theme.js b/platform/ui/src/styles/theme.js deleted file mode 100644 index e77cd8543..000000000 --- a/platform/ui/src/styles/theme.js +++ /dev/null @@ -1,46 +0,0 @@ -const theme = { - palette: { - action: { - hoverOpacity: 0.4, - disabledBackground: '', - disabled: '', - }, - default: { - light: '#eee', - main: '#ccc', - dark: '#aaa', - }, - primary: { - light: '#0000ff', - main: '#0000aa', - dark: '#000099', - }, - secondary: { - light: '#ff0000', - main: '#aa0000', - dark: '#990000', - }, - error: { - light: '', - main: '', - dark: '', - }, - info: { - light: '', - main: '', - dark: '', - }, - warning: { - light: '', - main: '', - dark: '', - }, - success: { - light: '', - main: '', - dark: '', - }, - }, -}; - -export default theme;