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

@ -30,7 +30,7 @@ cardMaker =
column
[ E.width <| px 650
, D.width 5
, D.color colourTheme.cardBackground
, D.color colourTheme.backgroundDarkGrey
, D.roundEach
{ topLeft = 32
, topRight = 32
@ -45,7 +45,7 @@ cardFormatter =
column
[ E.height fill
, E.width fill
, B.color colourTheme.cardBackground
, B.color colourTheme.backgroundDarkGrey
, paddingEach
{ top = 10
, bottom = 10
@ -87,8 +87,8 @@ cardImageMaker image =
[ column
[ D.rounded 100
, D.width 5
, D.color colourTheme.cardBackground
, B.color colourTheme.cardBackground
, D.color colourTheme.backgroundDarkGrey
, B.color colourTheme.backgroundDarkGrey
]
[ E.image
[ alignRight
@ -108,7 +108,7 @@ cardTitleMaker title =
row
(nonHighlightedTitleFormat
++ [ F.size 20
, B.color colourTheme.highlightTextHover
, B.color colourTheme.textDarkOrange
, paddingEach
{ top = 6
, bottom = 3