11 lines
163 B
TypeScript
11 lines
163 B
TypeScript
import dark from './dark';
|
|
import light from './light';
|
|
|
|
export const colorPrimary = '#007BFF';
|
|
|
|
export default {
|
|
light,
|
|
dark,
|
|
colorPrimary: colorPrimary
|
|
};
|