@types/material-colors
TypeScript icon, indicating that this package has built-in type declarations

1.2.3 • Public • Published

Installation

npm install --save @types/material-colors

Summary

This package contains type definitions for material-colors (https://github.com/shuhei/material-colors).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/material-colors.

index.d.ts

export as namespace materialColors;

declare const colors:
    & {
        [
            colorName in
                | "red"
                | "pink"
                | "purple"
                | "deepPurple"
                | "indigo"
                | "blue"
                | "lightBlue"
                | "cyan"
                | "teal"
                | "green"
                | "lightGreen"
                | "lime"
                | "yellow"
                | "amber"
                | "orange"
                | "deepOrange"
        ]: {
            [
                intensity in
                    | "50"
                    | "100"
                    | "200"
                    | "300"
                    | "400"
                    | "500"
                    | "600"
                    | "700"
                    | "800"
                    | "900"
                    | "a100"
                    | "a200"
                    | "a400"
                    | "a700"
            ]: string;
        };
    }
    & {
        [colorName in "brown" | "grey" | "blueGrey"]: {
            [intensity in "50" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900"]: string;
        };
    }
    & {
        [textColorName in "darkText" | "lightText"]: {
            [intensity in "primary" | "secondary" | "disabled" | "dividers"]: string;
        };
    }
    & {
        [iconTypeName in "darkIcons" | "lightIcons"]: {
            [mode in "active" | "inactive"]: string;
        };
    }
    & {
        black: string;
        white: string;
    };

export = colors;

Additional Details

  • Last updated: Tue, 07 Nov 2023 09:09:39 GMT
  • Dependencies: none

Credits

These definitions were written by Noah Overcash.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/material-colors

Weekly Downloads

2,630

Version

1.2.3

License

MIT

Unpacked Size

5.79 kB

Total Files

5

Last publish

Collaborators

  • types