import React from "react"; import styled from "styled-components"; import coreUtils from "@opentripplanner/core-utils"; const { getMostReadableTextColor } = coreUtils.route; export interface Hue { [key: number]: string; } interface Props { color: Hue; } const ColorBlock = styled.div<{ hex: string }>` align-items: center; background-color: ${props => props.hex}; color: ${props => getMostReadableTextColor(props.hex, "#ffffff")}; text-shadow: ${props => getMostReadableTextColor(props.hex, "#ffffff") === "#ffffff" ? "1px 1px 2px black" : ""}; display: flex; font-family: Arial, Helvetica, sans-serif; height: 40px; justify-content: space-between; margin: 0; padding: 10px; width: 300px; &:first-of-type { border-radius: 8px 8px 0 0; } &:last-of-type { border-radius: 0 0 8px 8px; } `; const ColorPalette = ({ color }: Props): JSX.Element => { const colorArray: Array = Object.entries(color); return ( <> {colorArray.map( (hue: Hue): JSX.Element => { return (

{hue[0]}

{hue[1]}

); } )} ); }; export default ColorPalette;