All Projects β†’ KTibow β†’ lovelace-light-soft-ui-theme

KTibow / lovelace-light-soft-ui-theme

Licence: MIT license
🎨 Home Assistant soft UI light theme, with help from @JuanMTech, @thomasloven, and @N-l1.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to lovelace-light-soft-ui-theme

home-assistant-theme-outline
🎨 Home Assistant Theme: Outline
Stars: ✭ 20 (-66.1%)
Mutual labels:  themes, homeassistant, hacs
fullscreen-card
Make your Home Assistant browser fullscreen with one tap.
Stars: ✭ 23 (-61.02%)
Mutual labels:  homeassistant, hacs, hacktoberfest2020
charger-card
A lovelace card for electrical vehicle (EV) home chargers and charging robots.
Stars: ✭ 57 (-3.39%)
Mutual labels:  homeassistant, hacs
home-assistant-omnik-inverter
Read the current, daily and total Wh from your Omnik Inverter via local network (no cloud!)
Stars: ✭ 45 (-23.73%)
Mutual labels:  homeassistant, hacs
homeassistant-coronavirus-hessen
[Unmaintained] Home Assistant component to scrape the current SARS-CoV-2 data for the German state of Hessen from the website of the Hessisches Ministerium fΓΌr Soziales und Integration.
Stars: ✭ 15 (-74.58%)
Mutual labels:  homeassistant, hacs
HomeAssistant-Cupertino-Icons
Apple SF Symbols icons for Home Assistant! (3000+ icons)
Stars: ✭ 100 (+69.49%)
Mutual labels:  homeassistant, hacs
homeassistant-jlrincontrol
An integration for JLR InControl to Home Assistant
Stars: ✭ 34 (-42.37%)
Mutual labels:  homeassistant, hacs
ha-sengledapi
Home Assistant Integration for Sengled Bulbs. This is a custom component to allow control of Sengled Bulbs in Homeassistant using the unofficial Sengled API. Please note this mimics the Sengled app and therefore Sengled may cut off access at anytime.
Stars: ✭ 85 (+44.07%)
Mutual labels:  homeassistant, hacs
homeassistant-afvalwijzer
Provides sensors for some Dutch waste collectors
Stars: ✭ 119 (+101.69%)
Mutual labels:  homeassistant, hacs
hass-miwifi
MiWiFi for Home Assistant
Stars: ✭ 116 (+96.61%)
Mutual labels:  homeassistant, hacs
google light theme
🎨 By JuanMTech -- A Home Assistant theme inspired on the Google app light mode.
Stars: ✭ 56 (-5.08%)
Mutual labels:  themes, hacs
custom-brand-icons
Custom brand icons for Home Assistant
Stars: ✭ 242 (+310.17%)
Mutual labels:  homeassistant, hacs
home-assistant-miele
Miele integration for Home assistant
Stars: ✭ 101 (+71.19%)
Mutual labels:  homeassistant, hacs
midea-ac-py
This is a library to allow communicating to a Midea appliance via the Midea cloud.
Stars: ✭ 72 (+22.03%)
Mutual labels:  homeassistant, hacs
theme-collection
A collection of themes for Node-RED
Stars: ✭ 43 (-27.12%)
Mutual labels:  light-theme, themes
home-assistant-p2000
πŸš’ This component tracks P2000 emergency events in The Netherlands.
Stars: ✭ 45 (-23.73%)
Mutual labels:  homeassistant, hacs
NumericUpDownLib
Implements numeric up down WPF controls to edit/display values (byte, integer, short, ushort etc.) with a textbox and optional up/down arrow (repeat) buttons. Value editing is possible by dragging the mouse vertically/horizontally, clicking up/down buttons, using up/down or left right cursor keys, spinning mousewheel on mouseover, or editing th…
Stars: ✭ 68 (+15.25%)
Mutual labels:  light-theme, themes
thermal
Thermal Vision Sensor and Camera for Home Assistant
Stars: ✭ 43 (-27.12%)
Mutual labels:  homeassistant, hacs
ha-eskom-loadshedding
Fetches loadshedding data from Eskom
Stars: ✭ 48 (-18.64%)
Mutual labels:  homeassistant, hacs
ledfxrm
Custom Integration for Home Assistant to control a any (local/remote) LedFX-server - State: beta
Stars: ✭ 31 (-47.46%)
Mutual labels:  homeassistant, hacs

Soft UI light theme

This is an old theme. Some stuff might be broken.

Use the lovelace-soft-theme instead.
hacs_badge
Home Assistant light theme, built on from @JuanMTech, using style boilerplates from @thomasloven and @N-L1.
This theme depends on card-mod for the soft-ui styling.
Looking for the dark theme instead?
This theme is pretty powerful. It can:

  • Apply soft-ui to an auto-generated dashboard, and keep it auto-generated.
  • Help you to only use the necessary style in your handmade dashboard, and keep it simple.
  • Work in most places over HA, not just Lovelace.
  • Apply a compact header to Lovelace, without installing an addon.

Screenshot

Screenshot of it Custom dashboard made with soft ui

Notes

Fonts

Some fonts that you should probably download and install that I think match Soft UI, or just load as a CSS resource:

Tutorial on how to load any font into your browser

Upload the woff2 into /config/www, and then make a file called /config/www/fonts.js which contains this:

function loadcss() {
    let css = '/local/fonts.css?v=0.001';
    
    let link = document.createElement('link');
    let head = document.getElementsByTagName('head')[0];
    let tmp;
    link.rel = 'stylesheet';
    link.type = 'text/css';

    tmp = link.cloneNode(true);
    tmp.href = css;
    head.appendChild(tmp);
    console.info('%c Loaded font CSS at ' + css, 'color: white; background: #000; font-weight: 700;');
}
loadcss();

Then make a file called /config/www/fonts.css which contains this:

@font-face {
  font-family: 'Cascadia Code PL';
  font-style: normal;
  font-weight: 400;
  src: url(/local/CascadiaCodePL.woff2) format('woff2');
}

(For each font, create the same thing in the file, but changing the source and name of font.)
Then finally add /local/fonts.js to your list of lovelace resources. (Maybe?) Restart Home Assistant. Press Ctrl+Shift+R. Done!
Credit to https://community.home-assistant.io/t/use-ttf-in-lovelace/143495.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].