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

Sponsoring

@oerdnj

Organizations

@SynthetixLtd

Block or report darx

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
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 Public

    Devtools panel for changing IndexedDB key values

    Svelte 15 4

  2. svelte-set-css-vars Public

    Reactive deep object css variables in svelte

    JavaScript

  3. knowledge-component Public

    Dynamic embeddable Synthetix knowledge component

    JavaScript

  4. List all font urls on site loaded us...
    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 Public

    An Unofficial API for MagnetDL

    JavaScript

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