mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 13:19:29 +08:00
7 lines
182 B
Text
7 lines
182 B
Text
const isPlainObject = require('lodash.isplainobject')
|
|
|
|
module.exports = {
|
|
isUsableColor(color, values) {
|
|
return isPlainObject(values) && color !== 'gray' && values[600]
|
|
},
|
|
}
|