UNPKG

@aws/pdk

Version:

All documentation is located at: https://aws.github.io/aws-pdk

13 lines (12 loc) 386 B
import { Theme } from "./types"; /** Light theme color palette */ export declare enum LightPalette { PUBLIC = "#E9F3E6",// Green PRIVATE = "#E6F2F8",// Blue GENERIC = "#5A6B861A",// 10% almost white PRIMARY = "#232F3E",// Dark Blue SECONDARY = "#5B9BD5",// Bright Blue TERTIARY = "#5A6B86" } /** Light theme definition */ export declare const LightTheme: Theme;