aws-northstar
Version:
NorthStar Design System
90 lines (86 loc) • 2.79 kB
TypeScript
/** *******************************************************************************************************************
Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License").
You may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License. *
******************************************************************************************************************** */
export declare const TYPOGRAPHY: {
h1: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
h2: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
h3: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
h4: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
h5: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
p: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
a: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
kdd: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
pre: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
small: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
code: {
fontSize: string;
fontWeight: number;
lineHeight: string;
description: string;
};
};
export declare const DEFAULT_FONT_SIZE = "14px";
export declare const DEFAULT_FONT_SIZE_NUMBER = 14;
export declare const DEFAULT_FONT_WEIGHT_REGULAR = 400;
export declare const DEFAULT_FONT_WEIGHT_LIGHT = 300;
export declare const DEFAULT_FONT_WEIGHT_HEAVE = 700;
export declare const DEFAULT_FONT_FAMILY = "\"Roboto\", \"Helvetica Neue\", \"HelveticaNeue\", \"Helvetica\", \"Arial\", sans-serif";