UNPKG

@jupyter/web-components

Version:

A component library for building extensions in Jupyter frontends.

18 lines (17 loc) 578 B
import { SwatchRGB } from '../swatch.js'; export declare function baseLayerLuminanceSwatch(luminance: number): SwatchRGB; /** * Recommended values for light and dark mode for {@link @microsoft/fast-components#baseLayerLuminance}. * * @public */ export declare const StandardLuminance: { readonly LightMode: 1; readonly DarkMode: 0.23; }; /** * Types of recommended values for light and dark mode for {@link @microsoft/fast-components#baseLayerLuminance}. * * @public */ export type StandardLuminance = (typeof StandardLuminance)[keyof typeof StandardLuminance];