elm-twitch/src/Colors.elm

34 lines
526 B
Elm

module Colors exposing (blackFont, greyBackground, greyFont, primary, primaryOver, 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