(gray: string, stop: string, opacity: string)
| 113 | } |
| 114 | |
| 115 | export function stop(gray: string, stop: string, opacity: string) { |
| 116 | return `light-dark(${mix('white', stop + '.light', opacity + '.light')}, ${mix(color('gray-75'), stop + '.dark', opacity + '.dark')})`; |
| 117 | } |
| 118 | |
| 119 | export function defineProperties(this: any, css: string) { |
| 120 | if (this && typeof this.addAsset === 'function') { |
no test coverage detected