mirror of
https://gitlab.com/upRootNutrition/website.git
synced 2025-06-16 12:25:12 -05:00
feat: changed colour names to be more intuitive
This commit is contained in:
parent
ed73a38cbe
commit
6019079212
10 changed files with 65 additions and 65 deletions
|
@ -7,13 +7,13 @@ import Html.Attributes as H exposing (style)
|
|||
|
||||
|
||||
type alias Theme =
|
||||
{ nonHighlightedText : Color
|
||||
, nonHighlightedDarkText : Color
|
||||
, highlightText : Color
|
||||
, highlightTextHover : Color
|
||||
, backgroundColour : Color
|
||||
{ textLightGrey : Color
|
||||
, textDarkGrey : Color
|
||||
, textLightOrange : Color
|
||||
, textDarkOrange : Color
|
||||
, backgroundLightGrey : Color
|
||||
, debugColour : Color
|
||||
, cardBackground : Color
|
||||
, backgroundDarkGrey : Color
|
||||
, barGreen : Color
|
||||
, barRed : Color
|
||||
, transparent : Color
|
||||
|
@ -22,13 +22,13 @@ type alias Theme =
|
|||
|
||||
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
|
||||
{ textLightGrey = rgb255 212 212 212
|
||||
, textDarkGrey = rgb255 126 126 126
|
||||
, textLightOrange = rgb255 204 102 0
|
||||
, textDarkOrange = rgb255 120 60 0
|
||||
, backgroundLightGrey = rgb255 40 40 40
|
||||
, debugColour = rgb255 227 28 121
|
||||
, cardBackground = rgb255 30 30 30
|
||||
, backgroundDarkGrey = rgb255 30 30 30
|
||||
, barGreen = rgb255 0 102 0
|
||||
, barRed = rgb255 102 0 0
|
||||
, transparent = rgba 1 1 1 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue