UNPKG

@blockscout/ui-toolkit

Version:

A comprehensive collection of reusable Chakra UI components and theme system for Blockscout's projects

17 lines (16 loc) 813 B
/** * Sankey node color tokens from Figma (Universal Bridge Indexer). * Light theme: Chakra 300 palette. Resolved via useToken in the chart. * @see https://www.figma.com/design/3mGpZEE65cSuLnhtJBfKkO?node-id=6867-20752 */ export declare const SANKEY_NODE_COLOR_TOKENS_LIGHT: Array<string>; /** * Sankey node color tokens from Figma (Universal Bridge Indexer). * Dark theme: Chakra 700 palette. Resolved via useToken in the chart. * @see https://www.figma.com/design/3mGpZEE65cSuLnhtJBfKkO?node-id=6867-21363 */ export declare const SANKEY_NODE_COLOR_TOKENS_DARK: Array<string>; export declare const SANKEY_NODE_DEFAULT_WIDTH = 16; export declare const SANKEY_NODE_DEFAULT_PADDING = 40; export declare const SANKEY_LINK_DEFAULT_OPACITY = 0.35; export declare const SANKEY_LINK_DEFAULT_HOVER_OPACITY = 0.6;