@aws/pdk
Version:
All documentation is located at: https://aws.github.io/aws-pdk
13 lines (12 loc) • 385 B
TypeScript
import { Theme } from "./types";
/** Dark theme color palette */
export declare enum DarkPalette {
PUBLIC = "#E9F3E6",// Green
PRIVATE = "#E6F2F8",// Blue
GENERIC = "#FAFAFA33",// 20% almost white
PRIMARY = "#FAFAFA",// Almost White
SECONDARY = "#5B9BD5",// Bright Blue
TERTIARY = "#8FA7C4"
}
/** Dark theme definition */
export declare const DarkTheme: Theme;