aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/styles/theme/index.js
blob: 2c69eb2af8112d3c8415e67d5747396cb645fd99 (plain) (blame)
1
2
3
4
5
6
7
import { common } from 'app/styles/theme/common';
import { components } from 'app/styles/theme/components';
import { commonColors } from 'app/styles/theme/common-colors';

export const getTheme = () => {
  return { ...common, components, colors: commonColors };
};