import {theme} from 'flipper-plugin';

const styles = {
  error: {
    color: theme.errorColor,
  },
  errorBold: {
    color: theme.errorColor,
    fontWeight: 'bold',
  },
  errorBG: {
    backgroundColor: theme.errorColor,
  },
  whiteText: {
    color: 'white',
  },
  yellowText: {
    color: 'yellow',
  },
};

export default styles;
