UNPKG

media_player_wrapper

Version:
15 lines (11 loc) 262 B
const Colors = { white: "#ffffff", blue: rgb(66, 88, 200) }; function rgb(r, g, b) { return ["rgb(", r, ",", g, ",", b, ")"].join(""); } function rgba(r, g, b, a) { return ["rgba(", r, ",", g, ",", b, ",", a, ")"].join(""); } module.exports = Colors;