Skip to content
View darx's full-sized avatar
🏠
Working from home
🏠
Working from home

Sponsoring

@oerdnj

Organizations

@SynthetixLtd

Block or report darx

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
darx/README.md

Hi there 👋

Pinned Loading

  1. IndexedDBEdit IndexedDBEdit Public

    Devtools panel for changing IndexedDB key values

    Svelte 14 4

  2. svelte-set-css-vars svelte-set-css-vars Public

    Reactive deep object css variables in svelte

    JavaScript

  3. knowledge-component knowledge-component Public

    Dynamic embeddable Synthetix knowledge component

    JavaScript

  4. List all font urls on site loaded us... List all font urls on site loaded using @font-face
    1
    Promise.all(
    2
     [...document.styleSheets].map((x) => {
    3
     if (!x.href) return;
    4
     return new Promise((resolve) => {
    5
     fetch(x.href)
  5. magnet-api-proxy magnet-api-proxy Public

    An Unofficial API for MagnetDL

    JavaScript

  6. Get dominant colours from a website ... Get dominant colours from a website using the DOM
    1
    const getDominantColours = (context) =>
    2
     [...(context || document).querySelectorAll("*")]
    3
     .map(
    4
     (x) =>
    5
     x.style.backgroundColor || x.style.color