1 // Copyright (C) The Arvados Authors. All rights reserved.
3 // SPDX-License-Identifier: AGPL-3.0
5 import { createMuiTheme } from '@material-ui/core/styles';
6 import { ThemeOptions, Theme } from '@material-ui/core/styles/createMuiTheme';
7 import purple from '@material-ui/core/colors/purple';
8 import blue from '@material-ui/core/colors/blue';
9 import grey from '@material-ui/core/colors/grey';
10 import green from '@material-ui/core/colors/green';
11 import yellow from '@material-ui/core/colors/yellow';
12 import red from '@material-ui/core/colors/red';
14 export interface ArvadosThemeOptions extends ThemeOptions {
18 export interface ArvadosTheme extends Theme {
32 const red900 = red["900"];
33 const purple800 = purple["800"];
34 const grey200 = grey["200"];
35 const grey300 = grey["300"];
36 const grey500 = grey["500"];
37 const grey600 = grey["600"];
38 const grey700 = grey["700"];
39 const grey900 = grey["900"];
40 const rocheBlue = '#06C';
42 export const themeOptions: ArvadosThemeOptions = {
45 green700: green["700"],
46 yellow700: yellow["700"],
60 backgroundColor: purple800
68 backgroundColor: purple800
113 borderBottomColor: purple800
115 '&:hover:not($disabled):not($focused):not($error):before': {
116 borderBottom: '1px solid inherit'
125 "&$focused:not($error)": {
144 export const CustomTheme = createMuiTheme(themeOptions);