Skip to content

Commit

Permalink
fix colours
Browse files Browse the repository at this point in the history
  • Loading branch information
dk14 committed Oct 21, 2020
1 parent 0e7329d commit ccf90c3
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions marlowe-playground-client/src/Marlowe/ActusBlockly.purs
Expand Up @@ -184,9 +184,6 @@ contractColour = "#a380bc"
actusColour :: String
actusColour = "#1a7b84"

observationColour :: String
observationColour = "#1fc1c3"

valueColour :: String
valueColour = "#eb2256"

Expand Down Expand Up @@ -387,8 +384,8 @@ toDefinition (ActusPeriodType PeriodYearType) =
toolbox :: forall a b. HTML a b
toolbox =
xml [ id_ "actusBlocklyToolbox", style "display:none" ]
[ category [ name "Contracts", colour contractColour ] (map mkBlock actusContractTypes)
, category [ name "Values", colour observationColour ] (map mkBlock actusValueTypes)
[ category [ name "Contracts", colour actusColour ] (map mkBlock actusContractTypes)
, category [ name "Values", colour valueColour ] (map mkBlock actusValueTypes)
, category [ name "Periods", colour valueColour ] (map mkBlock actusPeriodTypes)
]
where
Expand Down

0 comments on commit ccf90c3

Please sign in to comment.