From 00a54a9ab6bcd4f9890daead006882ad8b6fbf5d Mon Sep 17 00:00:00 2001 From: Simon Plourde Date: Wed, 23 May 2018 12:08:55 -0400 Subject: [PATCH] Remove Sensu.js cached file (#1575) Signed-off-by: Simon Plourde --- dashboard/src/themes/Sensu.js | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 dashboard/src/themes/Sensu.js diff --git a/dashboard/src/themes/Sensu.js b/dashboard/src/themes/Sensu.js deleted file mode 100644 index a2d24672cf..0000000000 --- a/dashboard/src/themes/Sensu.js +++ /dev/null @@ -1,24 +0,0 @@ -import createTheme from "/themes/createTheme"; -import colors from "/colors"; - -const theme = (type = "dark") => - createTheme({ - palette: { - type, - - primary: { - light: colors.paynesGrey[300], - main: colors.paynesGrey[500], - dark: colors.paynesGrey[600], - contrastText: "#F3F5F7", - }, - secondary: { - light: colors.pistachio[300], - main: colors.pistachio[500], - dark: colors.pistachio[700], - contrastText: "#1D2237", - }, - }, - }); - -export default theme;