const styles = theme => ({ root: { backgroundColor: 'blue', [theme.breakpoints.up('md')]: { backgroundColor: 'red', }, }, }); Run code snippet