gadgets
Version:
Reusable React UI widgets - This is my widget library. There are many like it, but this one is mine...
25 lines (24 loc) • 548 B
TypeScript
export declare type ColorType = string;
export declare enum ColorScheme {
c1 = "#004358",
c2 = "#1f8a70",
c3 = "#bedb39",
c4 = "#ffe11a",
c5 = "#fd7400"
}
export declare enum Color {
black = "#000000",
error = "#d9534f",
glow = "#51cbee",
gray = "#666666",
info = "#5bc0de",
lightgray = "#cccccc",
lightsaber = "#2ff923",
red = "#ff0000",
silver = "#c0c0c0",
slategray = "#708090",
success = "#5cb85c",
ultralightgray = "#e6e6e6",
warning = "#f0ad4e",
white = "#ffffff"
}