Put theme into config

This commit is contained in:
Håvar Aambø Fosstveit
2019-04-01 10:21:14 +02:00
parent 63b13e4e33
commit 4d21e7b4e9
4 changed files with 42 additions and 19 deletions
+36 -1
View File
@@ -16,5 +16,40 @@ var config =
{
tcp : true
},
lastN : 4
lastN : 4,
theme :
{
palette :
{
primary :
{
main : '#313131'
}
},
overrides :
{
MuiAppBar :
{
colorPrimary :
{
backgroundColor : '#313131'
}
},
MuiFab :
{
primary :
{
backgroundColor : '#5F9B2D',
'&:hover' :
{
backgroundColor : '#518029'
}
}
}
},
typography :
{
useNextVariants : true
}
}
};