aboutsummaryrefslogtreecommitdiffstats
path: root/client/js/app/src/app/styles/theme/index.js
blob: 57712dfdd1f7630afbb3c970276acf62f10fcd62 (plain) (blame)
1
2
3
4
5
6
7
8
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
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 };
};