mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-08 17:46:35 +08:00
Reviewed By: weicool Differential Revision: D2978557 fb-gh-sync-id: ef6b6b24e7db7faf3aecee0a9755565e1b41be58 shipit-source-id: ef6b6b24e7db7faf3aecee0a9755565e1b41be58
29 lines
728 B
JavaScript
29 lines
728 B
JavaScript
/**
|
|
* Copyright 2004-present Facebook. All Rights Reserved.
|
|
*
|
|
* @providesModule CSSVarConfig
|
|
*/
|
|
'use strict';
|
|
|
|
module.exports = {
|
|
'fbui-accent-blue': '#5890ff',
|
|
'fbui-bluegray-80': '#141823',
|
|
'fbui-bluegray-60': '#373e4d',
|
|
'fbui-bluegray-50': '#4e5665',
|
|
'fbui-bluegray-40': '#6a7180',
|
|
'fbui-bluegray-30': '#9197a3',
|
|
'fbui-bluegray-20': '#bdc1c9',
|
|
'fbui-bluegray-10': '#dcdee3',
|
|
'fbui-bluegray-5': '#e9eaed',
|
|
'fbui-bluegray-2': '#f6f7f8',
|
|
'fbui-gray-80': '#333333',
|
|
'fbui-gray-60': '#666666',
|
|
'fbui-gray-40': '#999999',
|
|
'fbui-gray-20': '#cccccc',
|
|
'fbui-gray-10': '#e5e5e5',
|
|
'fbui-gray-5': '#f2f2f2',
|
|
'fbui-gray-2': '#fafafa',
|
|
'fbui-red': '#dc3847',
|
|
'x-mobile-medium-text': '#6a7180',
|
|
};
|