Summary: This diff introduces the. main sections and restyled resizable panes according to the Figma design Reviewed By: cekkaewnumchai Differential Revision: D23758349 fbshipit-source-id: 7f09574f6b5fb54551141c13667c664e1769f09a
32 lines
1021 B
TypeScript
32 lines
1021 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
// Exposes all the variables defined in themes/base.less:
|
|
|
|
export const theme = {
|
|
primaryColor: 'var(--flipper-primary-color)',
|
|
successColor: 'var(--flipper-success-color)',
|
|
errorColor: 'var(--flipper-error-color)',
|
|
warningColor: 'var(--flipper-warning-color)',
|
|
textColorPrimary: 'var(--flipper-text-color-primary)',
|
|
textColorSecondary: 'var(--flipper-text-color-secondary)',
|
|
textColorPlaceholder: 'var(--flipper-text-color-placeholder)',
|
|
disabledColor: 'var(--flipper-disabled-color)',
|
|
backgroundDefault: 'var(--flipper-background-default)',
|
|
backgroundWash: 'var(--flipper-background-wash)',
|
|
dividerColor: 'var(--flipper-divider-color)',
|
|
borderRadius: 'var(--flipper-border-radius)',
|
|
space: {
|
|
// from Space component in Ant
|
|
small: 8,
|
|
middle: 16,
|
|
large: 24,
|
|
} as const,
|
|
};
|