module Villefort.Config where
import System.Process
import Villefort.Definitions
import Villefort.Database
def = VConfig {
daily = [return []],
monthly =[[]],
yearly =[[]],
weekly = defWeekly,
port = 3002,
noCustom = False,
showDatabase = False,
colors = defColors,
database = []
}
defWeekly = Weekly {
monday = [return []],
tuesday =[return[]],
wednesday = [return[]],
thursday = [return[]],
friday = [return[]],
saturday = [return[]],
sunday = [return []]
}
defColors = ["#0d47a1","#1565c0","#1976d2","#1e88e5","#2196f3","#42a5f5","#64b5f6","#90caf9"]