Git Product home page Git Product logo

Comments (1)

Nerwyn avatar Nerwyn commented on September 24, 2024 1

I don't understand how you would confuse this for a card theme. The README has screenshots of the dashboard, talks about modifying the dashboard toolbar, and has instructions on how to install it which includes enabling it as a global theme.

There's already example code in the README for the big slider card lights:

colorize: true
show_percentage: true
bold_text: true
height: 88

You should read the README in that repository for further information on setting up big slider card, but here's my full light card configurations:

type: custom:big-slider-card
entity: light.kitchen_bar
name: Bar
colorize: true
show_percentage: true
height: 88
bold_text: true
card_mod:
  style: |
    :host {
      --card-mod-icon:
        {% if is_state(config.entity, "on") %}
        mdi:ceiling-light-multiple;
        {% else %}
        mdi:ceiling-light-multiple-outline;
        {% endif %}
    }

And for lights without brightness control:

type: custom:big-slider-card
entity: light.backyard_lights
name: Backyard
color: sandybrown
show_percentage: false
height: 88
bold_text: true
max: 0
card_mod:
  style: |
    :host {
      --card-mod-icon:
        {% if is_state(config.entity, "on") %}
        mdi:string-lights;
        {% else %}
        mdi:string-lights-off;
        {% endif %}
    }

from material-rounded-theme.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.