website/frontend/src/Config/Colour.elm

34 lines
854 B
Elm
Raw Normal View History

2024-11-11 21:57:27 -06:00
module Config.Colour exposing (..)
import Element exposing (..)
import Element.Background as B
import Element.Font as F
import Html.Attributes as H exposing (style)
type alias Theme =
{ nonHighlightedText : Color
, nonHighlightedDarkText : Color
, highlightText : Color
, highlightTextHover : Color
, backgroundColour : Color
, debugColour : Color
2024-11-25 18:50:12 -06:00
, cardBackground : Color
, barGreen : Color
, barRed : Color
2024-11-11 21:57:27 -06:00
}
colourTheme : Theme
colourTheme =
{ nonHighlightedText = rgb255 212 212 212
, nonHighlightedDarkText = rgb255 126 126 126
, highlightText = rgb255 204 102 0
, highlightTextHover = rgb255 120 60 0
, backgroundColour = rgb255 40 40 40
, debugColour = rgb255 227 28 121
2024-11-25 18:50:12 -06:00
, cardBackground = rgb255 30 30 30
, barGreen = rgb255 0 102 0
, barRed = rgb255 102 0 0
2024-11-11 21:57:27 -06:00
}