Colors.
module Colors exposing (..)
{-| Colors.
@docs pinkStroke, pinkFill, blueStroke, blueFill
@docs grey, darkGrey, transparent
@docs rouge, petroleum
-}
{-| -}
pinkFill : String
pinkFill =
"rgba(253, 185, 231, 0.5)"
{-| -}
pinkStroke : String
pinkStroke =
"#ff9edf"
{-| -}
blueFill : String
blueFill =
"#e4eeff"
{-| -}
blueStroke : String
blueStroke =
"#cfd8ea"
{-| -}
grey : String
grey =
"#e3e3e3"
{-| -}
darkGrey : String
darkGrey =
"#a3a3a3"
{-| -}
transparent : String
transparent =
"transparent"
-- ROUGE
{-| -}
rouge : String
rouge =
"#b33b4c"
{-| -}
petroleum : String
petroleum =
"#164986"