2

在我的反应文件的顶部,我包括以下内容:

import { Colors } from '@blueprintjs/core';

我如何从这一点开始使用@blue3 等颜色?

const homeStyle = {
 background: '@blue2';
};

这似乎不起作用。

4

1 回答 1

3

颜色导出为单个对象,因此要访问它,您应该执行以下操作:

const homeStyle = {
   background: Colors.BLUE3;
};
于 2017-09-16T07:30:05.777 回答