flowviz
Version:
A framework which provides seamless integration with other phylogenetic tools and frameworks, while allowing workflow scheduling and execution, through the Apache Airflow workflow system.
31 lines (29 loc) • 661 B
JavaScript
import { createTheme } from '@mui/material/styles';
export const Theme = createTheme({
palette: {
type: "dark",
primary: {
main: '#37c0fb',
light: '#5FCCFB',
dark: '#2686AF',
},
secondary: {
main: '#FB7237',
light: '#FB8E5F',
dark: '#AF4F26'
},
light: {
background: {
main: '#fafafa',
paper: '#fff'
},
},
dark: {
background: {
main: '#303030',
paper: '#424242'
}
}
},
});
export default Theme;