npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

next-super-themes

v0.0.6

Published

This is an extension of Next [/pacocoursey/next-themes repository](https://github.com/pacocoursey/next-themes)

Downloads

11

Readme

Apply multi themes on your Next.JS project.

This is an extension of Next /pacocoursey/next-themes repository

Why?

The /pacocoursey/next-themes repository give us the possibility to change set the theme to light, dark, and system by default.

The library also provide a way to apply custom themes but when using it, it is not possible to set the correct invert options for Tailwind.

So, this library is compatible with:

  • Next
  • Tailwind
  • Radix
  • Shadcn ui

Which gives us a flexibility to set custom themes.

How does it work?

Tailwind sometimes use the dark: flag to invert image colors.

dark:invert

So, when your theme has another name then not dark the invertion will not work. The solution is to use a theme-mode with a theme-name.

setTheme('dark', 'gym')

An abstraction for themes in your Next.js app.

Check out the Example to try it for yourself.

Install

$ npm install next-many-themes
# or
$ yarn add next-many-themes

Use

// src/context/theme-context.tsx
'use client'
import { ThemeProvider } from 'next-super-themes'
import { ThemeProviderProps } from 'next-super-themes/dist/types'

export default function CustomThemeProvider({ children, ...props }: ThemeProviderProps) {
  return <ThemeProvider {...props}>{children}</ThemeProvider>
}
// app/layout.tsx

import { Exo_2 } from 'next/font/google'
import './globals.css'
import ThemeProvider from 'src/context/theme-context'

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en">
      <body className={exo2.className}>
        <ThemeProvider defaultMode="system" enableSystem>
          {children}
        </ThemeProvider>
      </body>
    </html>
  )
}
//src/app/theme-changer.tsx
// import this component in your page to see the button to change the theme
'use client'

import { Wand } from 'lucide-react'
import { useTheme } from 'next-super-themes'
import { useEffect, useState } from 'react'
import { Button } from 'src/components/ui/button'

const themes: { mode: 'light' | 'dark'; theme: string | undefined }[] = [
  {
    mode: 'light',
    theme: undefined
  },
  {
    mode: 'dark',
    theme: undefined
  },
  {
    mode: 'dark',
    theme: 'gym'
  },
  {
    mode: 'dark',
    theme: 'carservice'
  },
  {
    mode: 'light',
    theme: 'clinic'
  },
  {
    mode: 'light',
    theme: 'aesthetics'
  },
  {
    mode: 'light',
    theme: 'food'
  }
]

export default function ThemeChager() {
  const { setTheme, themeMode } = useTheme()
  const [position, setPosition] = useState(-1)

  function setNextTheme() {
    if (position === themes.length - 1) {
      setPosition(0)
    } else {
      setPosition(position + 1)
    }
  }

  useEffect(() => {
    if (position > -1) {
      const theme = themes[position]
      setTheme(theme.mode, theme.theme)
    }
  }, [position, setTheme])

  return (
    <div className="w-full flex justify-end">
      <Button
        className="bg-background hover:bg-background"
        variant="ghost"
        onClick={() => {
          setNextTheme()
        }}
      >
        <Wand />
      </Button>
    </div>
  )
}
import ThemeChager from './theme-changer'

export default function Page() {
  return (
    <>
      <AuthThemeChager />
    </>
  )
}
/* globals.css */

@tailwind base;
@tailwind components;
@tailwind utilities;

@layer base {
  :root {
    /* Colors */

    /*End Colors*/

    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;

    --card: 0 0% 100%;
    --card-foreground: 222.2 84% 4.9%;

    --popover: 0 0% 100%;
    --popover-foreground: 222.2 84% 4.9%;

    --primary: 173 79% 52%;
    --primary-foreground: 210 40% 2%;

    --secondary: 221 92% 52%;
    --secondary-foreground: 222.2 47.4% 11.2%;

    --muted: 210 40% 96.1%;
    --muted-foreground: 215.4 16.3% 46.9%;

    --accent: 210 40% 96.1%;
    --accent-foreground: 222.2 47.4% 11.2%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --success: 138 87% 40%;
    --success-foreground: 210 40% 98%;

    --border: 214.3 31.8% 91.4%;
    --input: 214.3 31.8% 71.4%;
    --ring: 222.2 84% 4.9%;

    --radius: 1.5rem;
  }

  .dark {
    --background: 255 3% 10%;
    --foreground: 210 60% 100%;

    --card: 222.2 84% 4.9%;
    --card-foreground: 210 40% 98%;

    --popover: 222.2 84% 4.9%;
    --popover-foreground: 210 40% 98%;

    --primary: 244 100% 60%;
    --primary-foreground: 0 100% 100%;

    --secondary: 173 100% 56%;
    --secondary-foreground: 210 40% 98%;

    --muted: 217.2 32.6% 17.5%;
    --muted-foreground: 215 20.2% 65.1%;

    --accent: 217.2 32.6% 17.5%;
    --accent-foreground: 210 40% 98%;

    --destructive: 0 55% 60.6%;
    --destructive-foreground: 210 40% 98%;

    --success: 138 87% 50%;
    --success-foreground: 210 40% 98%;

    --border: 217.2 0% 50%;
    --input: 217.2 0% 50%;
    --ring: 212.7 26.8% 83.9%;
  }

  .dark.gym {
    --background: 0 0% 8%;
    --foreground: 210 20% 80%;

    --primary: 118 100% 50%;
    --primary-foreground: 100 20% 10%;

    --secondary: 38 100% 50%;
    --secondary-foreground: 210 40% 98%;

    --input: var(--secondary);
    --radius: 0.3rem;
  }

  .dark.carservice {
    --background: 255 3% 10%;
    --foreground: 210 60% 100%;

    --primary: 0 100% 50%;
    --primary-foreground: 255 100% 100%;

    --secondary: 25 100% 65%;
    --secondary-foreground: 210 40% 98%;
  }

  .light.clinic {
    --background: 0 0% 100%;
    --foreground: 222.2 84% 4.9%;

    --primary: 210 100% 52%;
    --primary-foreground: 210 40% 100%;

    --secondary: 182 100% 25%;
    --secondary-foreground: 222.2 47.4% 11.2%;

    --radius: 0.5rem;
  }

  .light.aesthetics {
    --background: 310 100% 99%;
    --foreground: 222.2 84% 4.9%;

    --primary: 310 100% 70%;
    --primary-foreground: 210 40% 100%;

    --secondary: 216 100% 70%;
    --secondary-foreground: 222.2 47.4% 11.2%;

    --radius: 0.8rem;
  }

  .light.food {
    --background: 50 100% 50%;
    --foreground: 222.2 84% 4.9%;

    --primary: 15 100% 50%;
    --primary-foreground: 210 40% 100%;

    --secondary: 0 100% 50%;
    --secondary-foreground: 222.2 47.4% 11.2%;

    --radius: 0.8rem;
    --input: var(--foreground);
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
  }
}

html,
body {
  width: 100%;
  height: 100%;
}