fixed another problem with p's broken theme causing theme editor to

become unusable
このコミットが含まれているのは:
Henry Jameson 2021-03-08 19:19:16 +02:00
コミット 4baa397ed0
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -380,7 +380,7 @@ export const colors2to3 = (colors) => {
*/
export const shadows2to3 = (shadows, opacity) => {
return Object.entries(shadows).reduce((shadowsAcc, [slotName, shadowDefs]) => {
const isDynamic = ({ color }) => color.startsWith('--')
const isDynamic = ({ color = '#000000' }) => color.startsWith('--')
const getOpacity = ({ color }) => opacity[getOpacitySlot(color.substring(2).split(',')[0])]
const newShadow = shadowDefs.reduce((shadowAcc, def) => [
...shadowAcc,