aboutsummaryrefslogtreecommitdiff
path: root/src/server/Design/Color.hs
blob: adbe50fbcffc94bba313239efc7c8d1b38861b2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module Design.Color where

import qualified Clay.Color as C

white :: C.Color
white = C.white

greenSuccess :: C.Color
greenSuccess = C.green

redError :: C.Color
redError = C.red

red :: C.Color
red = C.rgb 207 92 86

green :: C.Color
green = C.rgb 169 220 175

blue :: C.Color
blue = C.rgb 108 162 164

paymentFocus :: C.Color
paymentFocus = C.rgb 255 223 196

darkGrey :: C.Color
darkGrey = C.rgb 150 150 150

grey :: C.Color
grey = C.rgb 200 200 200

lightGrey :: C.Color
lightGrey = C.rgb 245 245 245