elm-twitch/src/Colors.elm

29 lines
447 B
Elm
Raw Normal View History

2020-10-04 13:15:57 +02:00
module Colors exposing (blackFont, greyBackground, 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