feat: changed colour names to be more intuitive

This commit is contained in:
Nick 2024-11-28 00:58:24 -06:00
parent ed73a38cbe
commit 6019079212
10 changed files with 65 additions and 65 deletions

View file

@ -81,7 +81,7 @@ view { toContentMsg, model, content } =
row
[ E.width fill
, height fill
, B.color colourTheme.cardBackground
, B.color colourTheme.backgroundDarkGrey
]
[ column
[ htmlAttribute (H.style "position" "fixed")
@ -91,12 +91,12 @@ view { toContentMsg, model, content } =
, htmlAttribute (H.style "z-index" "10") -- Ensure navbar stays on top
, htmlAttribute (H.style "transform-style" "preserve-3d")
, D.widthEach { top = 0, bottom = 0, left = 0, right = 3 }
, D.color colourTheme.highlightTextHover
, D.color colourTheme.textDarkOrange
]
[ column
[ alignLeft
, height fill
, F.color colourTheme.nonHighlightedText
, F.color colourTheme.textLightGrey
]
[ column
[ centerX
@ -138,7 +138,7 @@ view { toContentMsg, model, content } =
, left = 0
, right = 0
}
, D.color colourTheme.nonHighlightedDarkText
, D.color colourTheme.textDarkGrey
]
none
]
@ -146,7 +146,7 @@ view { toContentMsg, model, content } =
[ padding 20, alignTop, alignLeft ]
[ column
[ F.bold
, F.color colourTheme.nonHighlightedText
, F.color colourTheme.textLightGrey
, F.size 17
, spacing 8
]
@ -249,7 +249,7 @@ buttonMaker name =
{ url = localhostUrl ++ String.toLower name
, label =
el
[ mouseOver [ F.color colourTheme.highlightText ]
[ mouseOver [ F.color colourTheme.textLightOrange ]
, htmlAttribute <| style "transition" "all 0.1s ease-in-out"
]
<|