Sample text, #7fa998
useCssVar
Manipulate CSS variables
Usage
import { useCssVar } from '@vueuse/core'
const el = ref(null)
const color = useCssVar('--color', el)
Type Declarations
/**
 * Manipulate CSS variables.
 *
 * @see /useCssVar
 * @param prop
 * @param el
 * @param options
 */
export declare function useCssVar(
  prop: string,
  target?: MaybeElementRef,
  { window }?: ConfigurableWindow
): Ref<string>