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 {
33 const red900 = red["900"];
34 const purple800 = purple["800"];
35 const grey200 = grey["200"];
36 const grey300 = grey["300"];
37 const grey500 = grey["500"];
38 const grey600 = grey["600"];
39 const grey700 = grey["700"];
40 const grey900 = grey["900"];
41 const rocheBlue = '#06C';
43 export const themeOptions: ArvadosThemeOptions = {
46 green700: green["700"],
47 yellow700: yellow["700"],
62 backgroundColor: purple800
70 backgroundColor: purple800
115 borderBottomColor: purple800
117 '&:hover:not($disabled):not($focused):not($error):before': {
118 borderBottom: '1px solid inherit'
127 "&$focused:not($error)": {
146 export const CustomTheme = createMuiTheme(themeOptions);