elm-twitch/src/Colors.elm

39 lines
605 B
Elm

module Colors exposing (blackFont, greyBackground, greyFont, primary, primaryOver, selected, white)
import Element
primary : Element.Color
primary =
Element.rgb255 50 115 220
primaryOver : Element.Color
primaryOver =
Element.rgb255 35 102 209
white : Element.Color
white =
Element.rgb255 255 255 255
greyBackground : Element.Color
greyBackground =
Element.rgba255 0 0 0 0.7
blackFont : Element.Color
blackFont =
Element.rgb255 54 54 54
greyFont : Element.Color
greyFont =
Element.rgb255 128 128 128
selected : Element.Color
selected =
Element.rgb255 223 233 250