New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

svelte-theme-switcher

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

svelte-theme-switcher

![Test](https://github.com/dev-warner/svelte-theme-switcher/workflows/Test/badge.svg)

latest
npmnpm
Version
0.0.11
Version published
Maintainers
1
Created
Source

Svelte Theme Switcher

Test

A happy little svelte theme switcher to brighten or maybe darken your day 🌞.

  • demo

Basic example

App.svelte

<script>
  import ThemeSwitcher from "svelte-theme-switcher";
</script>

<style>
  :global(body) {
    background: var(--background);
    color: var(--text);
    transition: 0.6s;
  }

  :global(.theme-light) {
    --background: rgb(250, 252, 240);
    --text: #222;
  }
  :global(.theme-dark) {
    --background: #222;
    --text: #fff;
  }
</style>

<ThemeSwitcher />

Installation

npm i svelte-theme-switcher
yarn add svelte-theme-switcher

Component props

Propertydefaulttypenotes
height:30pxstringmust be a px value
width:60pxstring
transition0.6sstring
background{ light: #ecf0f1, dark: #333 }object

Example

<ThemeSwitcher
  options={{
    height: "30px",
    width: "60px",
    transition: "0.6s",
    background: {
      light: "#ecf0f1",
      dark: "#333",
    },
  }}
/>

Accessing state

<script>
import { theme } from "svelte-theme-switcher";
</script>

<h1>{$theme}</h1>

Web Components

In the head of your document add:

<script src="https://unpkg.com/svelte-theme-switcher@0.0.11/dist/wc/index.js" />
<style>
  body {
    background: var(--background);
    color: var(--text);
    transition: 0.6s;
  }

  .theme-light {
    --background: rgb(250, 252, 240);
    --text: #222;
  }
  .theme-dark {
    --background: #222;
    --text: #fff;
  }
</style>

this ensure's there is no inital flicker

You can now add the web component to switch between themes.

<theme-switcher></theme-switcher>

Keywords

svelte

FAQs

Package last updated on 20 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts