Show last visited list on home page
This commit is contained in:
parent
c7c9b5ee47
commit
d09eff1655
12 changed files with 337 additions and 175 deletions
|
|
@ -1,4 +1,8 @@
|
|||
export const colorIsDark = color => {
|
||||
if (typeof color === 'undefined') {
|
||||
return true // Defaults to dark
|
||||
}
|
||||
|
||||
if (color === '#' || color === '') {
|
||||
return true // Defaults to dark
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue