elm-twitch/src/Colors.elm

39 lines
605 B
Elm
Raw Normal View History

2020-10-04 18:00:16 +02:00
module Colors exposing (blackFont, greyBackground, greyFont, primary, primaryOver, selected, white)
2020-10-04 13:15:57 +02:00
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
2020-10-04 15:24:04 +02:00
greyFont : Element.Color
greyFont =
Element.rgb255 128 128 128
2020-10-04 18:00:16 +02:00
selected : Element.Color
selected =
Element.rgb255 223 233 250